/* ─── Design Tokens ─── */
:root {
  --wine-950: #1a0a0e;
  --wine-950-band: #221018;
  --wine-900: #2a1218;
  --wine-800: #3d1a24;
  --wine-700: #5c2433;
  --wine-600: #7a3044;
  --wine-500: #9a3d56;
  --wine-400: #b85a72;
  --wine-300: #d4899a;
  --wine-200: #e8b8c4;
  --wine-100: #f5dde3;

  --neon-rose: #ff6b9d;
  --neon-coral: #ff8a7a;
  --neon-magenta: #e056a0;
  --neon-soft: rgba(255, 107, 157, 0.35);

  --text-primary: #f8eef1;
  --text-secondary: rgba(248, 238, 241, 0.72);
  --text-muted: rgba(248, 238, 241, 0.48);

  --glass: rgba(61, 26, 36, 0.45);
  --glass-border: rgba(255, 107, 157, 0.12);
  --glass-hover: rgba(90, 36, 51, 0.65);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;

  --header-h: 72px;
}

/* ─── Reset ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--wine-950);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--wine-200);
}

/* ─── Ambient Background ─── */
.ambient {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}

.ambient--one {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.18) 0%, transparent 70%);
}

.ambient--two {
  width: 500px;
  height: 500px;
  bottom: 20%;
  left: -150px;
  background: radial-gradient(circle, rgba(232, 86, 160, 0.12) 0%, transparent 70%);
}

.ambient--three {
  width: 400px;
  height: 400px;
  top: 50%;
  right: 10%;
  background: radial-gradient(circle, rgba(255, 138, 122, 0.08) 0%, transparent 70%);
}

/* ─── Typography ─── */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-rose);
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
}

.section__lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}

/* ─── Layout ─── */
.header,
main,
.footer {
  position: relative;
  z-index: 1;
}

.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

main > .section + .section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(82%, 920px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.14), transparent);
  pointer-events: none;
}

main > .section:nth-child(even)::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--wine-950-band);
  box-shadow: inset 0 1px 0 rgba(255, 107, 157, 0.06);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(26, 10, 14, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 101;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 101;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: rgba(26, 10, 14, 0.6);
  cursor: pointer;
  transition: border-color 0.25s ease;
}

.nav-toggle:hover {
  border-color: rgba(255, 107, 157, 0.35);
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav__mobile-cta {
  display: none;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.25s;
}

.nav a:not(.nav__mobile-cta) {
  position: relative;
}

.nav a.nav__link--scroll-active {
  color: var(--wine-100);
}

.nav a.nav__link--scroll-active:not(.nav__mobile-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-rose), transparent);
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(255, 107, 157, 0.35);
}

.nav a:hover {
  color: var(--neon-rose);
}

.nav__link--active {
  color: var(--wine-100);
}

.nav__link--active::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 0.2rem;
  background: linear-gradient(90deg, var(--neon-rose), transparent);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .nav__link--active::after {
    display: none;
  }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--nav {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.btn--nav:hover {
  border-color: var(--neon-rose);
  box-shadow: 0 0 20px var(--neon-soft);
}

.btn--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--wine-600), var(--wine-500));
  color: var(--text-primary);
  border: 1px solid rgba(255, 107, 157, 0.3);
  box-shadow: 0 4px 24px rgba(255, 107, 157, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
}

.btn--primary:hover::after {
  opacity: 1;
  animation: btn-shine 0.85s ease forwards;
}

@keyframes btn-shine {
  from { left: -120%; }
  to { left: 140%; }
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--wine-500), var(--neon-magenta));
  box-shadow: 0 6px 32px rgba(255, 107, 157, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.btn--primary > span,
.btn--primary > svg {
  position: relative;
  z-index: 1;
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(248, 238, 241, 0.15);
}

.btn--ghost:hover {
  color: var(--text-primary);
  border-color: rgba(248, 238, 241, 0.3);
}

.btn--large {
  font-size: 1rem;
  padding: 1rem 2rem;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 4rem) 2rem 4rem;
  width: 100%;
  overflow: hidden;
}

.hero__reel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.1);
  filter: blur(5px) saturate(0.6) brightness(0.75);
}

.hero__reel-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 80% 10%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(232, 86, 160, 0.07) 0%, transparent 45%),
    linear-gradient(135deg, rgba(26, 10, 14, 0.82) 0%, rgba(26, 10, 14, 0.68) 50%, rgba(26, 10, 14, 0.8) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero__content > .eyebrow,
.hero__content > h1,
.hero__content > .hero__lead,
.hero__content > .hero__actions {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__content > .eyebrow { animation-delay: 0.08s; }
.hero__content > h1 { animation-delay: 0.2s; }
.hero__content > .hero__lead { animation-delay: 0.34s; }
.hero__content > .hero__actions { animation-delay: 0.48s; }

.hero__stats .stat {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__stats .stat:nth-child(1) { animation-delay: 0.62s; }
.hero__stats .stat:nth-child(2) { animation-delay: 0.76s; }
.hero__stats .stat:nth-child(3) { animation-delay: 0.9s; }

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content > .eyebrow,
  .hero__content > h1,
  .hero__content > .hero__lead,
  .hero__content > .hero__actions,
  .hero__stats .stat {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__reel {
    display: none;
  }

  .btn--primary:hover::after {
    animation: none;
    opacity: 0;
  }

  .grain {
    display: none;
  }
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.45rem;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 0.35rem;
  background: linear-gradient(135deg, var(--wine-100) 0%, var(--wine-200) 42%, var(--neon-coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(255, 107, 157, 0.28));
}

.stat__value--text {
  font-size: 1.85rem;
  letter-spacing: 0.01em;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── Film grain ─── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 75;
  pointer-events: none;
  opacity: 0.042;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-drift 7s steps(8) infinite;
}

@keyframes grain-drift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-1.5%, 1%); }
  50% { transform: translate(1%, -1.5%); }
  75% { transform: translate(-1%, -0.5%); }
}

/* ─── Creator Cards ─── */
.creators__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.creator-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.creator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.creator-card:hover {
  border-color: rgba(255, 107, 157, 0.28);
  box-shadow: 0 8px 40px rgba(255, 107, 157, 0.1);
  transform: translateY(-2px);
}

.creator-card:hover::before {
  opacity: 1;
}

.creator-card__avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--wine-800);
  border: 2px solid rgba(255, 107, 157, 0.25);
  z-index: 1;
}

.creator-card__body {
  position: relative;
  z-index: 1;
}

.creator-card__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 1;
  filter: saturate(0.92) brightness(0.95);
  transition: filter 0.35s;
}

.creator-card:hover .creator-card__avatar {
  filter: saturate(1) brightness(1);
}

.creator-card__glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--neon-rose), var(--neon-magenta), var(--neon-coral), var(--neon-rose));
  opacity: 0.35;
  filter: blur(6px);
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.45; }
}

.creator-card__name {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.15rem;
}

.creator-card__name h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

.verified {
  color: var(--wine-300);
  flex-shrink: 0;
}

.creator-card__handle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.creator-card__stats {
  font-size: 0.78rem;
  color: var(--neon-coral);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.creator-card__bio {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.creator-card__related-link {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--neon-rose);
  transition: color 0.25s ease;
}

.creator-card__related-link:hover {
  color: var(--wine-100);
}

/* ─── Work Showcase ─── */
.work__showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.work__thumbnail-wrap {
  max-width: 520px;
  width: 100%;
}

.work__thumbnail-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 107, 157, 0.08);
  background: var(--wine-950);
}

.work__thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.92) saturate(0.95);
  transition: filter 0.4s;
}

.work__thumbnail-frame:hover .work__thumbnail {
  filter: brightness(1) saturate(1);
}

.work__thumbnail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(26, 10, 14, 0.9));
}

.work__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--wine-600), var(--neon-magenta));
  border: 1px solid rgba(255, 107, 157, 0.4);
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}

.work__caption {
  margin-top: 1.25rem;
}

.work__caption h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.work__caption p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── Documentary ─── */
.documentary__showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.documentary__profile {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.documentary__profile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.documentary__portrait-wrap {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255, 107, 157, 0.22);
}

.documentary__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  border: none;
  filter: grayscale(1) contrast(1.05);
  position: relative;
  z-index: 1;
}

.documentary__portrait-glow {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-md);
  background: conic-gradient(from 180deg, var(--neon-rose), var(--neon-magenta), var(--wine-400), var(--neon-rose));
  opacity: 0.28;
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}

.documentary__profile-body {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.documentary__profile-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.documentary__profile-head h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.documentary__roles {
  font-size: 0.78rem;
  color: var(--neon-coral);
  font-weight: 500;
}

.documentary__imdb-tag {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  background: rgba(245, 197, 24, 0.12);
  color: #f5c518;
  border: 1px solid rgba(245, 197, 24, 0.28);
}

.documentary__bio {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.documentary__bio em {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--wine-200);
}

.documentary__credit {
  font-size: 0.86rem;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--neon-rose);
}

.documentary__credit strong {
  font-weight: 500;
  color: var(--wine-200);
}

.documentary__imdb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--neon-rose);
  transition: opacity 0.25s;
}

.documentary__imdb-link:hover {
  opacity: 0.8;
}

.documentary__still-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 107, 157, 0.08);
  background: var(--wine-950);
}

.documentary__still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.94) saturate(0.96);
  will-change: transform;
  animation: ken-burns 24s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-2.5%, -1.5%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .documentary__still {
    animation: none;
  }
}

.documentary__film {
  max-width: 520px;
  width: 100%;
  margin-left: auto;
}

.work__attribution {
  margin-top: 0.65rem;
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  line-height: 1.5;
  opacity: 0.9;
}

.work__timeline-wrap {
  position: relative;
}

.work__timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.work__timeline-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-rose);
}

.work__timeline-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.work__timeline-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 107, 157, 0.08);
}

.work__timeline-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(154, 61, 86, 0.15) 0%,
    transparent 40%,
    rgba(255, 107, 157, 0.06) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.work__timeline {
  width: 100%;
  display: block;
  filter: brightness(0.88) saturate(0.9);
  transition: filter 0.4s;
}

.work__timeline-frame:hover .work__timeline {
  filter: brightness(0.95) saturate(1);
}

.work__timeline-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.06), transparent);
  animation: shine 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes shine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.work__timeline-caption {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  font-family: var(--font-display);
}

/* ─── Proof / Results ─── */
.proof__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.proof-card {
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.proof-card:hover {
  border-color: rgba(255, 107, 157, 0.28);
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.08);
  transform: translateY(-2px);
}

.proof-card__metric {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--wine-200);
  margin-bottom: 0.65rem;
}

.proof-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.proof-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.proof-card__link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--neon-rose);
  transition: color 0.25s ease;
}

.proof-card__link:hover {
  color: var(--wine-100);
}

.proof__process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 1.75rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.proof-step {
  text-align: center;
  padding: 0 0.5rem;
}

.proof-step__num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--neon-coral);
  margin-bottom: 0.5rem;
}

.proof-step strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.proof-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.proof__philosophy {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--wine-200);
}

.proof__philosophy-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

/* ─── Testimonial Video ─── */
.testimonial__video-wrap {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.testimonial__video-frame {
  position: relative;
  padding: 0.65rem;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(255, 107, 157, 0.08);
  z-index: 1;
}

.testimonial__video-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--wine-950);
  border: 1px solid rgba(255, 107, 157, 0.15);
}

.testimonial__video-inner .testimonial__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.testimonial__video {
  display: block;
  object-fit: cover;
  object-position: center center;
  background: var(--wine-950);
}

.testimonial__caption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
}

.testimonial__pull-quote {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 1.75rem auto 0;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--wine-100);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.testimonial__pull-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.testimonial__video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(26, 10, 14, 0.85));
}

.testimonial__play-btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(26, 10, 14, 0.28);
  cursor: pointer;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.testimonial__play-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.testimonial__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 107, 157, 0.92);
  color: var(--text-primary);
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial__play-btn:hover .testimonial__play-icon {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(255, 107, 157, 0.55);
}

.testimonial__glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.testimonial__glow--left {
  top: 20%;
  left: -80px;
  background: var(--neon-magenta);
  opacity: 0.15;
}

.testimonial__glow--right {
  bottom: 10%;
  right: -60px;
  background: var(--neon-coral);
  opacity: 0.12;
}

/* ─── Services ─── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.service-card {
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-rose), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(255, 107, 157, 0.28);
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.08);
  transform: translateY(-2px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-coral);
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.service-card__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.service-card__points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.service-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--neon-rose);
  box-shadow: 0 0 6px var(--neon-soft);
}

.service-card__link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--neon-rose);
  transition: color 0.25s ease;
}

.service-card__link:hover {
  color: var(--wine-100);
}

.services__footnote {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.services__footnote-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.services__footnote a {
  color: var(--neon-rose);
  transition: color 0.25s ease;
}

.services__footnote a:hover {
  color: var(--wine-100);
}

/* ─── CTA ─── */
.cta {
  padding-bottom: 7rem;
  text-align: center;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta__inner .eyebrow {
  margin-bottom: 1rem;
}

.cta__inner h2 {
  max-width: 560px;
  margin: 0 auto 1.25rem;
}

.cta__lead {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.02rem;
  line-height: 1.65;
}

.cta__note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cta__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.cta__contact-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cta__email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-secondary);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cta__email svg {
  flex-shrink: 0;
  color: var(--neon-rose);
  opacity: 0.85;
}

.cta__email:hover {
  color: var(--wine-100);
  border-color: rgba(255, 107, 157, 0.35);
  box-shadow: 0 0 24px rgba(255, 107, 157, 0.12);
  transform: translateY(-1px);
}

.cta__email:hover svg {
  opacity: 1;
}

/* ─── Footer ─── */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.footer a {
  color: var(--neon-rose);
  transition: opacity 0.25s;
}

.footer a:hover {
  opacity: 0.8;
}

/* ─── Page transitions ─── */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--wine-950);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

html.page-transition-active .page-transition,
.page-transition.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ─── About Page ─── */
.about-page main {
  padding-top: var(--header-h);
}

.about-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 4rem 2rem 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.about-hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(255, 107, 157, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 75%, rgba(232, 86, 160, 0.08) 0%, transparent 50%);
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.about-hero__copy > .eyebrow,
.about-hero__copy > h1,
.about-hero__copy > .about-hero__lead,
.about-hero__copy > .about-hero__facts,
.about-hero__copy > .about-hero__actions {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-hero__copy > .eyebrow { animation-delay: 0.08s; }
.about-hero__copy > h1 { animation-delay: 0.2s; }
.about-hero__copy > .about-hero__lead { animation-delay: 0.34s; }
.about-hero__copy > .about-hero__facts { animation-delay: 0.48s; }
.about-hero__copy > .about-hero__actions { animation-delay: 0.62s; }

.about-hero__copy h1 {
  margin-bottom: 1.25rem;
}

.about-hero__lead {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.about-hero__facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
  padding-left: 0;
}

.about-hero__facts li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 107, 157, 0.25);
}

.about-hero__facts strong {
  color: var(--text-secondary);
  font-weight: 500;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-credentials {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.about-credentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.about-credential {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-credential:hover {
  border-color: rgba(255, 107, 157, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.about-credential__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--wine-100) 0%, var(--wine-200) 42%, var(--neon-coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-credential__value--text {
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.about-credential__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.5rem;
  align-items: start;
}

.about-story__main h2 {
  margin-bottom: 1.25rem;
}

.about-story__main p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-story__main p:last-child {
  margin-bottom: 0;
}

.about-aside-card {
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-aside-card:hover {
  border-color: rgba(255, 107, 157, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.about-aside-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.about-aside-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-aside-card__link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--neon-rose);
  transition: color 0.25s ease;
}

.about-aside-card__link:hover {
  color: var(--wine-100);
}

.about-timeline__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}

.about-timeline__list::before {
  content: "";
  position: absolute;
  left: 3.25rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--neon-rose), rgba(255, 107, 157, 0.1));
  opacity: 0.35;
}

.about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.about-timeline__item::before {
  content: "";
  position: absolute;
  left: 3.25rem;
  top: 2.15rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--neon-rose);
  box-shadow: 0 0 12px rgba(255, 107, 157, 0.45);
  transform: translateX(-50%);
}

.about-timeline__item:last-child {
  border-bottom: none;
}

.about-timeline__year {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--neon-coral);
  text-align: right;
  padding-top: 0.1rem;
}

.about-timeline__body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.about-timeline__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-pillar {
  padding: 1.75rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-pillar::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--neon-rose), transparent);
  opacity: 0.5;
  transition: width 0.35s ease, opacity 0.35s ease;
}

.about-pillar:hover {
  border-color: rgba(255, 107, 157, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.about-pillar:hover::before {
  width: 3.5rem;
  opacity: 1;
}

.about-pillar__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: rgba(255, 107, 157, 0.2);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.about-pillar h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.about-pillar p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .page-transition {
    display: none;
  }

  .about-hero__copy > .eyebrow,
  .about-hero__copy > h1,
  .about-hero__copy > .about-hero__lead,
  .about-hero__copy > .about-hero__facts,
  .about-hero__copy > .about-hero__actions {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .about-credential:hover,
  .about-pillar:hover {
    transform: none;
  }
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--stagger {
  transition-delay: calc(var(--reveal-i, 0) * 100ms);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .creators__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work__showcase {
    grid-template-columns: 1fr;
  }

  .documentary__showcase {
    grid-template-columns: 1fr;
  }

  .documentary__film {
    margin-left: 0;
  }

  .proof__grid {
    grid-template-columns: 1fr;
  }

  .proof__process {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .proof-step {
    text-align: left;
    padding: 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .about-credentials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .about-aside-card {
    position: static;
  }

  .about-pillars__grid {
    grid-template-columns: 1fr;
  }

  .about-timeline__list::before {
    left: 0;
  }

  .about-timeline__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-left: 1.25rem;
    border-left: 1px solid rgba(255, 107, 157, 0.2);
  }

  .about-timeline__item::before {
    left: 0;
    top: 1.85rem;
  }

  .about-timeline__year {
    text-align: left;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .header__book {
    display: none;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 100;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 1.25rem 2rem;
    background: rgba(26, 10, 14, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 1rem 0.25rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav a.nav__link--scroll-active:not(.nav__mobile-cta)::after {
    left: -0.75rem;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--neon-rose);
    box-shadow: 0 0 10px var(--neon-soft);
  }

  .nav a:last-of-type {
    border-bottom: none;
  }

  .nav__mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    padding: 0.9rem 1.5rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 107, 157, 0.35);
    background: linear-gradient(135deg, var(--wine-600), var(--wine-500));
    color: var(--text-primary);
    font-weight: 500;
    text-align: center;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .creators__grid {
    grid-template-columns: 1fr;
  }

  .documentary__profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .documentary__credit {
    padding-left: 0;
    border-left: none;
    padding-top: 0.85rem;
    border-top: 1px solid var(--glass-border);
  }

  .documentary__profile-head {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .about-hero {
    min-height: auto;
    padding: 3rem 1.25rem 2.5rem;
  }

  .about-credentials__grid {
    grid-template-columns: 1fr;
  }

  .header {
    padding: 0 1.25rem;
  }
}
