:root {
  --bg-primary: #07090a;
  --bg-secondary: #0d0f10;
  --gold: #d6a441;
  --gold-light: #f0c979;
  --text-primary: #ffffff;
  --text-secondary: #b9b9b9;
  --border-color: rgba(214, 164, 65, 0.34);
  --container-width: 1260px;
  --border-radius: 16px;
  --ease: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-primary);
  background:
    radial-gradient(1400px 560px at 50% -20%, rgba(214, 164, 65, 0.12), transparent 60%),
    var(--bg-primary);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  opacity: 0.06;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 2.6rem), var(--container-width));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3.5rem;
  z-index: 200;
  background: #111;
  border: 1px solid var(--gold);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: 0.55rem;
  transition: top var(--ease);
}

.skip-link:focus-visible {
  top: 0.75rem;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(214, 164, 65, 0.38);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.22);
  background: url("../img/navbar.webp") center / cover no-repeat;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.site-header .shell {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  transition: min-height var(--ease);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.34rem, 1.9vw, 1.95rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gold-light);
  text-wrap: nowrap;
  transition: font-size var(--ease), color var(--ease);
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(32px, 3vw, 46px);
  transition: height var(--ease);
}

.primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  padding: 0.3rem 0.16rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d5d6d6;
  transition: color var(--ease), padding var(--ease), font-size var(--ease);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.05rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--text-primary);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(214, 164, 65, 0.5);
  border-radius: 0.5rem;
  background: rgba(13, 15, 16, 0.92);
  padding: 0;
  cursor: pointer;
  transition: width var(--ease), height var(--ease);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.8px;
  margin: 3px auto;
  border-radius: 2px;
  background-color: var(--gold-light);
  transition: transform var(--ease), opacity var(--ease);
}

.site-header.is-scrolled {
  background: url("../img/navbar.webp") center / cover no-repeat;
  border-bottom-color: rgba(214, 164, 65, 0.5);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled .shell {
  min-height: 52px;
}

.site-header.is-scrolled .brand {
  font-size: clamp(1.16rem, 1.62vw, 1.72rem);
}

.site-header.is-scrolled .brand-logo {
  height: clamp(28px, 2.6vw, 38px);
}

.site-header.is-scrolled .primary-nav a {
  padding: 0.18rem 0.14rem;
  font-size: 0.7rem;
}

.site-header.is-scrolled .menu-toggle {
  width: 1.92rem;
  height: 1.92rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(280px, 30vw, 390px);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: clamp(280px, 30vw, 390px);
  display: grid;
  place-content: start center;
  text-align: center;
  padding-top: clamp(1.35rem, 3vw, 2.4rem);
}

.hero-title-logo {
  width: 100%;
  height: auto;
  margin: 0;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.48));
}

.hero-content p {
  margin: clamp(0.7rem, 1.8vw, 1.6rem) 0 0;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: clamp(0.74rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
}

.exclusive-wrap {
  margin-top: -2.3rem;
  position: relative;
  z-index: 2;
}

.exclusive-card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  padding: clamp(1rem, 2.1vw, 1.65rem) clamp(1rem, 2.8vw, 2rem);
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: url("../img/boxlinks.webp") center / 100% auto no-repeat;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(240, 201, 121, 0.06),
    0 0 18px rgba(240, 201, 121, 0.09),
    0 0 36px rgba(240, 201, 121, 0.04);
  overflow: hidden;
  transform: scale(1);
  transition: border-color var(--ease), box-shadow var(--ease), filter var(--ease);
  animation: exclusive-card-beat 4.8s ease-in-out infinite;
}

.exclusive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/boxlinksrojo.webp") center / 100% auto no-repeat;
  opacity: 0;
  transform: scale(1.03);
  filter: saturate(1.05) brightness(1.02);
  transition: opacity 320ms ease, transform 320ms ease, filter 320ms ease;
  pointer-events: none;
  z-index: 0;
}

.exclusive-card > * {
  position: relative;
  z-index: 1;
}

.exclusive-card:hover {
  border-color: rgba(240, 201, 121, 0.55);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(240, 201, 121, 0.12),
    0 0 22px rgba(240, 201, 121, 0.14),
    0 0 44px rgba(240, 201, 121, 0.08);
  filter: brightness(1.03);
}

.exclusive-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

@keyframes exclusive-card-beat {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 6px 24px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(240, 201, 121, 0.06),
      0 0 18px rgba(240, 201, 121, 0.09),
      0 0 36px rgba(240, 201, 121, 0.04);
  }

  25% {
    transform: scale(1.012);
    box-shadow:
      0 8px 26px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(240, 201, 121, 0.08),
      0 0 20px rgba(240, 201, 121, 0.12),
      0 0 42px rgba(240, 201, 121, 0.06);
  }

  50% {
    transform: scale(1.02);
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(240, 201, 121, 0.12),
      0 0 24px rgba(240, 201, 121, 0.16),
      0 0 52px rgba(240, 201, 121, 0.08);
  }

  75% {
    transform: scale(1.012);
    box-shadow:
      0 8px 26px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(240, 201, 121, 0.08),
      0 0 20px rgba(240, 201, 121, 0.12),
      0 0 42px rgba(240, 201, 121, 0.06);
  }
}

.exclusive-links-row {
  margin-top: 0.9rem;
  width: 100%;
  min-height: clamp(98px, 9vw, 132px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.exclusive-link-item {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  padding: 0.92rem 1.15rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background:
    linear-gradient(130deg, rgba(112, 80, 26, 0.65), rgba(240, 201, 121, 0.88), rgba(112, 80, 26, 0.65)) border-box;
  color: #eac57b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 2.52rem;
  font-weight: 700;
  box-shadow:
    inset 0 0 0 1px rgba(255, 235, 190, 0.06),
    0 0 0 1px rgba(214, 164, 65, 0.16),
    0 0 12px rgba(214, 164, 65, 0.18);
  transition: color var(--ease), box-shadow var(--ease), transform var(--ease), filter var(--ease);
}

.exclusive-links-row .exclusive-link-item:first-child {
  background:
    url("../img/boxlink1.webp") center / cover no-repeat padding-box,
    linear-gradient(130deg, rgba(112, 80, 26, 0.65), rgba(240, 201, 121, 0.88), rgba(112, 80, 26, 0.65)) border-box;
}

.exclusive-links-row .exclusive-link-item:last-child {
  background:
    url("../img/boxlink2.webp") center / cover no-repeat padding-box,
    linear-gradient(130deg, rgba(112, 80, 26, 0.65), rgba(240, 201, 121, 0.88), rgba(112, 80, 26, 0.65)) border-box;
}

.exclusive-link-item:hover,
.exclusive-link-item:focus-visible {
  color: #f8dcaa;
  box-shadow:
    inset 0 0 0 1px rgba(255, 237, 197, 0.12),
    0 0 0 1px rgba(240, 201, 121, 0.34),
    0 0 18px rgba(240, 201, 121, 0.28),
    0 10px 16px rgba(0, 0, 0, 0.34);
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.exclusive-link-item i {
  font-size: 2.68rem;
  line-height: 1;
}

.exclusive-link-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 1.52rem;
  font-weight: 800;
  line-height: 1;
}

.exclusive-link-icon--of {
  border: 1px solid rgba(240, 201, 121, 0.6);
  background: radial-gradient(circle at 50% 38%, rgba(240, 201, 121, 0.35), rgba(240, 201, 121, 0.08));
  color: #f4d9a2;
}

.exclusive-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.exclusive-icon {
  flex-shrink: 0;
  width: clamp(46px, 6vw, 56px);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(214, 164, 65, 0.65);
  display: inline-grid;
  place-items: center;
  color: #e1bb66;
  font-size: 1.35rem;
  background: radial-gradient(circle at center, rgba(214, 164, 65, 0.18), transparent 65%);
}

.exclusive-icon svg {
  width: 2.45rem;
  height: 2.45rem;
  display: block;
}

.exclusive-info h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  color: var(--gold);
}

.exclusive-info p {
  margin: 0.3rem 0 0;
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
}

.exclusive-btn {
  position: relative;
  isolation: isolate;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  min-width: clamp(180px, 22vw, 272px);
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background:
    linear-gradient(to right, rgba(14, 15, 16, 0.98), rgba(17, 19, 21, 0.98)) padding-box,
    linear-gradient(130deg, rgba(112, 80, 26, 0.65), rgba(240, 201, 121, 0.88), rgba(112, 80, 26, 0.65)) border-box;
  color: #eac57b;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow:
    inset 0 0 0 1px rgba(255, 235, 190, 0.06),
    0 0 0 1px rgba(214, 164, 65, 0.16),
    0 0 12px rgba(214, 164, 65, 0.18);
  transition: color var(--ease), box-shadow var(--ease), transform var(--ease), filter var(--ease);
}

.exclusive-btn i {
  font-size: 1.32rem;
  line-height: 1;
}

.exclusive-btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(120% 75% at 50% 0%, rgba(240, 201, 121, 0.22), transparent 58%);
  opacity: 0.75;
  pointer-events: none;
  z-index: -1;
}

.exclusive-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 10px;
  background: linear-gradient(100deg, transparent 18%, rgba(240, 201, 121, 0.2) 48%, transparent 78%);
  mix-blend-mode: screen;
  opacity: 0.45;
  pointer-events: none;
}

.exclusive-btn:hover,
.exclusive-btn:focus-visible {
  color: #f8dcaa;
  box-shadow:
    inset 0 0 0 1px rgba(255, 237, 197, 0.12),
    0 0 0 1px rgba(240, 201, 121, 0.34),
    0 0 18px rgba(240, 201, 121, 0.28),
    0 10px 16px rgba(0, 0, 0, 0.34);
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.gallery {
  padding-top: clamp(0.95rem, 2vw, 1.4rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.3vw, 1.25rem);
}

.media-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(214, 164, 65, 0.36);
  background: #0b0d0e;
}

.media-card picture {
  display: block;
  width: 100%;
  height: clamp(380px, 36.6vw, 500px);
}

.media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 300ms ease;
}

.media-card:hover img {
  transform: scale(1.04);
}

.gallery-slider-controls {
  display: none;
}

.appearances {
  padding-top: clamp(0.9rem, 1.9vw, 1.4rem);
}

.section-separator {
  position: relative;
  margin: 0 0 clamp(1rem, 2vw, 1.45rem);
  padding: clamp(0.56rem, 1.2vw, 0.76rem) clamp(0.4rem, 1vw, 0.8rem);
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.2vw, 1.6rem);
  background: transparent;
}

.section-separator::before,
.section-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 164, 65, 0), rgba(214, 164, 65, 0.38), rgba(214, 164, 65, 0));
}

.section-separator span {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  text-wrap: balance;
  white-space: nowrap;
  letter-spacing: 0.07em;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.9vw, 1.92rem);
  color: #d0ab68;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.42);
}

.section-separator span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.98rem;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(220, 188, 116, 0.95);
  background: radial-gradient(circle at center, rgba(240, 201, 121, 0.75), rgba(240, 201, 121, 0.12));
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 0 8px rgba(240, 201, 121, 0.44);
  opacity: 0.96;
  pointer-events: none;
}

.section-separator span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.58rem;
  width: 86px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(214, 164, 65, 0) 0%,
    rgba(214, 164, 65, 0.45) 18%,
    rgba(214, 164, 65, 0.45) 40%,
    rgba(214, 164, 65, 0) 43%,
    rgba(214, 164, 65, 0) 57%,
    rgba(214, 164, 65, 0.45) 60%,
    rgba(214, 164, 65, 0.45) 82%,
    rgba(214, 164, 65, 0) 100%
  );
  pointer-events: none;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1vw, 0.95rem);
}

.videos-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.videos-load-more {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  min-width: clamp(160px, 22vw, 220px);
  padding: 0.75rem 1.2rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background:
    linear-gradient(to right, rgba(14, 15, 16, 0.98), rgba(17, 19, 21, 0.98)) padding-box,
    linear-gradient(130deg, rgba(112, 80, 26, 0.65), rgba(240, 201, 121, 0.88), rgba(112, 80, 26, 0.65)) border-box;
  color: #eac57b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow:
    inset 0 0 0 1px rgba(255, 235, 190, 0.06),
    0 0 0 1px rgba(214, 164, 65, 0.16),
    0 0 12px rgba(214, 164, 65, 0.18);
  cursor: pointer;
  transition: color var(--ease), box-shadow var(--ease), transform var(--ease), filter var(--ease);
}

.videos-load-more::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(120% 75% at 50% 0%, rgba(240, 201, 121, 0.22), transparent 58%);
  opacity: 0.75;
  pointer-events: none;
  z-index: -1;
}

.videos-load-more::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 8px;
  background: linear-gradient(100deg, transparent 18%, rgba(240, 201, 121, 0.2) 48%, transparent 78%);
  mix-blend-mode: screen;
  opacity: 0.45;
  pointer-events: none;
}

.videos-load-more i {
  font-size: 0.9rem;
  line-height: 1;
}

.videos-load-more:hover,
.videos-load-more:focus-visible {
  color: #f8dcaa;
  box-shadow:
    inset 0 0 0 1px rgba(255, 237, 197, 0.12),
    0 0 0 1px rgba(240, 201, 121, 0.34),
    0 0 18px rgba(240, 201, 121, 0.28),
    0 10px 16px rgba(0, 0, 0, 0.34);
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.video-card {
  width: 100%;
  border: 1px solid rgba(214, 164, 65, 0.24);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: #101214;
  background-image: url("../img/fondoboxvideos.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.video-trigger {
  border: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: transparent;
  color: inherit;
  text-align: left;
}

.video-trigger.is-static-thumb {
  cursor: default;
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease), filter var(--ease);
}

.video-card:hover .video-thumb-wrap img,
.video-card:focus-within .video-thumb-wrap img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.video-play span {
  width: clamp(62px, 5.5vw, 74px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(31, 31, 31, 0.62);
  border: 1px solid rgba(214, 164, 65, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
}

.video-play i {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.45rem;
  margin-left: 3px;
}

.video-body {
  padding: 0.7rem 0.75rem 0.85rem;
  display: grid;
  gap: 0.10rem;
}

.video-title {
  margin: 0;
  min-height: 3em;
  font-size: 0.9rem;
  color: #dcbc75;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.42rem;
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background:
    linear-gradient(to right, rgba(14, 15, 16, 0.98), rgba(17, 19, 21, 0.98)) padding-box,
    linear-gradient(130deg, rgba(112, 80, 26, 0.65), rgba(240, 201, 121, 0.88), rgba(112, 80, 26, 0.65)) border-box;
  color: #dcbc75;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow:
    inset 0 0 0 1px rgba(255, 235, 190, 0.06),
    0 0 0 1px rgba(214, 164, 65, 0.16),
    0 0 10px rgba(214, 164, 65, 0.15);
  transition: color var(--ease), box-shadow var(--ease), transform var(--ease), filter var(--ease);
}

.video-link i {
  font-size: 0.95rem;
  line-height: 1;
}

.video-link--article .video-link-badge {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: inline-grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

.video-link::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(120% 75% at 50% 0%, rgba(240, 201, 121, 0.22), transparent 58%);
  opacity: 0.72;
  pointer-events: none;
  z-index: -1;
}

.video-link::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 8px;
  background: linear-gradient(100deg, transparent 18%, rgba(240, 201, 121, 0.2) 48%, transparent 78%);
  mix-blend-mode: screen;
  opacity: 0.38;
  pointer-events: none;
}

.video-link:hover,
.video-link:focus-visible {
  color: #f8dcaa;
  box-shadow:
    inset 0 0 0 1px rgba(255, 237, 197, 0.12),
    0 0 0 1px rgba(240, 201, 121, 0.34),
    0 0 16px rgba(240, 201, 121, 0.24),
    0 8px 14px rgba(0, 0, 0, 0.32);
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.site-footer {
  margin-top: clamp(4rem, 6vw, 6.5rem);
  border-top: 1px solid rgba(214, 164, 65, 0.18);
  background: url("../img/footer.webp") center / cover no-repeat;
}

.footer-shell {
  min-height: 74px;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-block: clamp(0.5rem, 0.9vw, 0.75rem);
}

.footer-brand {
  justify-self: start;
}

.footer-logo {
  display: block;
  width: auto;
  height: clamp(28px, 2.6vw, 38px);
}

.copy {
  margin: 0;
  color: rgba(224, 224, 224, 0.68);
  text-align: center;
  font-size: clamp(0.84rem, 1vw, 1.02rem);
  font-weight: 500;
}

.footer-social {
  justify-self: end;
  display: block;
}

.footer-social > p {
  display: none;
}

.footer-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(0.9rem, 1.4vw, 1.5rem);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 164, 65, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(255, 229, 173, 0.09),
    0 0 0 1px rgba(214, 164, 65, 0.12),
    0 0 10px rgba(214, 164, 65, 0.2);
  background: rgba(12, 14, 16, 0.4);
  color: rgba(214, 164, 65, 0.9);
  font-size: 1.15rem;
  line-height: 1;
  transition: color var(--ease), transform var(--ease), filter var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #f0c979;
  border-color: rgba(240, 201, 121, 0.95);
  box-shadow:
    inset 0 0 0 1px rgba(255, 237, 197, 0.16),
    0 0 0 1px rgba(240, 201, 121, 0.34),
    0 0 14px rgba(240, 201, 121, 0.42);
  filter: drop-shadow(0 0 6px rgba(240, 201, 121, 0.42));
  transform: translateY(-1px);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
}

.video-modal__dialog {
  position: relative;
  width: min(92vw, 1080px);
  background: #060708;
  border: 1px solid rgba(214, 164, 65, 0.55);
  border-radius: 14px;
  padding: 1rem;
}

.video-modal__frame {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.external-frame-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 1rem;
  padding: 1.2rem;
  text-align: center;
  background: #ffffff;
  color: #1a1a1a;
}

.external-frame-fallback p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.external-frame-fallback a {
  justify-self: center;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  border: 1px solid #e67e22;
  background: #111;
  color: #f5b465;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}

.video-modal__close {
  position: absolute;
  top: -0.9rem;
  right: -0.9rem;
  width: 2.3rem;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(214, 164, 65, 0.7);
  background: #0f1112;
  color: #f0cf94;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.adult-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
}

.adult-modal[hidden] {
  display: none;
}

.adult-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 0, 0, 0.72);
}

.adult-modal__dialog {
  position: relative;
  width: min(92vw, 520px);
  border-radius: 14px;
  border: 1px solid rgba(255, 70, 70, 0.6);
  background:
    radial-gradient(120% 120% at 50% -10%, rgba(255, 70, 70, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(35, 7, 7, 0.98), rgba(18, 4, 4, 0.98));
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.5), 0 0 24px rgba(255, 70, 70, 0.18);
  padding: 1.4rem 1.2rem 1.2rem;
}

.adult-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 95, 95, 0.55);
  background: rgba(40, 8, 8, 0.9);
  color: #ffd0d0;
  cursor: pointer;
}

.adult-modal__tag {
  margin: -0.1rem 0 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  color: #ff9a9a;
  font-weight: 700;
}

.adult-modal__tag i {
  font-size: 1.05em;
  color: #ff6d6d;
}

.adult-modal h3 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  color: #fff4f4;
}

.adult-modal p {
  margin: 0.65rem 0 0;
  color: #ffd6d6;
}

.adult-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.adult-modal__btn {
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
}

.adult-modal__btn--confirm {
  background: linear-gradient(180deg, #ff5c5c, #dc2f2f);
  color: #2a0606;
  border-color: rgba(255, 200, 200, 0.35);
}

.adult-modal__btn--deny {
  background: rgba(32, 8, 8, 0.92);
  color: #ffd8d8;
  border-color: rgba(255, 95, 95, 0.45);
}

.adult-modal__btn:hover,
.adult-modal__btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
  filter: brightness(1.06);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    right: 1.2rem;
    top: calc(100% + 0.4rem);
    width: min(320px, calc(100vw - 2.4rem));
    transform-origin: top right;
    transform: scale(0.96) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
    border: 1px solid rgba(214, 164, 65, 0.38);
    border-radius: 12px;
    background: rgba(10, 11, 12, 0.98);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  }

  .primary-nav.is-open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav ul {
    display: grid;
    gap: 0;
    padding: 0.25rem;
  }

  .primary-nav a {
    width: 100%;
    padding: 0.8rem 0.85rem;
    border-radius: 8px;
    letter-spacing: 0.09em;
    font-size: 0.78rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .primary-nav a.is-active {
    background: rgba(214, 164, 65, 0.15);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-content p {
    letter-spacing: 0.2em;
  }

  .exclusive-wrap {
    margin-top: -1.4rem;
  }

  .exclusive-card {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .exclusive-links-row {
    min-height: 86px;
    gap: 0.6rem;
  }

  .exclusive-link-item {
    padding: 0.74rem 0.7rem;
    font-size: 2.16rem;
    letter-spacing: 0.05em;
  }

  .exclusive-btn {
    width: 100%;
    min-width: 0;
  }

  .gallery-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-shell {
    text-align: center;
    justify-items: center;
  }

  .footer-social {
    justify-self: center;
    justify-items: center;
  }
}

@media (min-width: 641px) {
  .videos-load-more-wrap {
    margin-top: clamp(1.15rem, 2.2vw, 1.7rem);
    margin-bottom: clamp(1.15rem, 2.2vw, 1.7rem);
  }

  .site-footer {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-header.is-scrolled {
    background-size: 100% 100%;
    background-position: center top;
  }

  .site-footer {
    background-size: 100% 100%;
    background-position: center top;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container-width));
  }

  .site-header .shell {
    min-height: 53px;
  }

  .brand {
    font-size: clamp(1.2rem, 6.6vw, 1.6rem);
  }

  .brand-logo {
    height: clamp(28px, 8vw, 39px);
  }

  .site-header.is-scrolled .shell {
    min-height: 49px;
  }

  .site-header.is-scrolled .brand {
    font-size: clamp(1.08rem, 6.1vw, 1.42rem);
  }

  .site-header.is-scrolled .brand-logo {
    height: clamp(25px, 7.1vw, 35px);
  }

  .hero {
    min-height: 34svh;
  }

  .hero-content {
    min-height: 34svh;
    padding-top: 0.9rem;
  }

  .hero-title-logo {
    width: 100%;
  }

  .hero-content p {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }

  .exclusive-card,
  .exclusive-card::before {
    background-size: 100% 100%;
    background-position: center;
  }

  .exclusive-info {
    align-items: flex-start;
  }

  .exclusive-icon {
    width: 42px;
  }

  .exclusive-info h2 {
    letter-spacing: 0.12em;
  }

  .exclusive-links-row {
    min-height: 74px;
    gap: 0.5rem;
  }

  .exclusive-link-item {
    padding: 0.58rem 0.45rem;
    gap: 0.34rem;
    font-size: 0.95rem;
    letter-spacing: 0.035em;
    overflow: hidden;
  }

  .exclusive-link-item > span:last-child {
    min-width: 0;
    font-size: 0.84rem;
    letter-spacing: 0.045em;
    line-height: 1.1;
    white-space: nowrap;
  }

  .exclusive-link-item i {
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .exclusive-link-icon {
    width: 1.45rem;
    height: 1.45rem;
    font-size: 0.72rem;
    flex-shrink: 0;
  }

  .media-card picture {
    height: clamp(340px, 88vw, 520px);
  }

  .gallery-slider-shell {
    overflow: hidden;
    border-radius: var(--border-radius);
  }

  .gallery-grid.is-mobile-slider {
    display: flex;
    gap: 0;
    grid-template-columns: none;
    transition-property: transform;
    transition-duration: 520ms;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
    touch-action: pan-y;
  }

  .gallery-grid.is-mobile-slider .media-card {
    flex: 0 0 100%;
  }

  .gallery-slider-controls {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 0.65rem;
  }

  .gallery-slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(214, 164, 65, 0.42);
    background: rgba(12, 13, 14, 0.95);
    color: #f0c979;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: transform var(--ease), filter var(--ease), border-color var(--ease);
  }

  .gallery-slider-btn:hover,
  .gallery-slider-btn:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.1);
    border-color: rgba(240, 201, 121, 0.66);
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .videos-load-more-wrap {
    margin-top: 1.45rem;
    margin-bottom: 1.45rem;
  }

  .site-footer {
    margin-top: 0;
  }

  .footer-shell {
    min-height: 58px;
    grid-template-columns: auto 1fr;
    gap: 0.55rem;
    align-items: center;
    padding-block: 0.5rem;
    text-align: left;
    justify-items: stretch;
  }

  .footer-brand {
    justify-self: start;
  }

  .footer-logo {
    height: clamp(25px, 7.1vw, 35px);
  }

  .copy {
    display: none;
  }

  .footer-social {
    justify-self: end;
  }

  .footer-social ul {
    gap: 0.55rem;
  }

  .footer-social a {
    width: 33px;
    height: 33px;
    font-size: 1rem;
  }

  .section-separator {
    gap: 0.52rem;
  }

  .section-separator span {
    white-space: normal;
    text-align: center;
    letter-spacing: 0.06em;
    font-size: clamp(1rem, 6.2vw, 1.35rem);
  }

  .section-separator span::before {
    top: -0.86rem;
    width: 6px;
    height: 6px;
  }

  .section-separator span::after {
    top: -0.54rem;
    width: 68px;
  }

  .video-modal__dialog {
    width: calc(100vw - 0.9rem);
    padding: 0.5rem;
  }

  .video-modal__close {
    top: -0.7rem;
    right: -0.1rem;
  }

  .adult-modal__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gallery-grid.is-mobile-slider {
    transition-duration: 520ms !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .exclusive-card {
    animation-duration: 4.8s !important;
    animation-iteration-count: infinite !important;
  }
}
