/* ============================================================
   N2THERAW MEDIA — PAGE STYLES
   Layout + component classes, translated 1:1 from the design-system
   React components into plain CSS. Loaded AFTER styles.css (tokens).
   ============================================================ */

html { scroll-behavior: smooth; }
section[id], [data-scroll-anchor] { scroll-margin-top: 96px; }

.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------- Brand wordmark ---------------- */
.brand { display: inline-flex; align-items: baseline; gap: 5px; }
.brand .n2 {
  font-family: var(--font-display); font-weight: 400; font-size: 26px; letter-spacing: 0;
  background-image: var(--grad-gold-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand .rest {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text-mid);
}

/* ---------------- Eyebrow ---------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: var(--fs-eyebrow); font-weight: 400;
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--text-eyebrow);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; display: inline-block; }
.eyebrow.dot::before { width: 6px; height: 6px; border-radius: 50%; }
.eyebrow.no-marker::before { display: none; }

/* ---------------- Section heading ---------------- */
.section-heading {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--space-6); flex-wrap: wrap;
}
.section-heading .sh-body { max-width: 64ch; }
.section-heading.center { text-align: center; }
.section-heading.center .sh-body { margin-inline: auto; }
.section-heading h2 {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h1);
  line-height: var(--lh-snug); letter-spacing: var(--ls-tight); text-transform: uppercase;
  color: var(--text-heading); margin: 0; text-wrap: balance;
}
.section-heading .sh-lead {
  font-family: var(--font-body); font-size: var(--fs-lead); line-height: var(--lh-normal);
  color: var(--text-body); margin-top: var(--space-4); text-wrap: pretty;
}
.section-heading.center .sh-lead { margin-inline: auto; }

/* ---------------- Button ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; line-height: 1;
  border-radius: var(--radius-pill); border: 1px solid transparent; cursor: pointer;
  white-space: nowrap; user-select: none; -webkit-font-smoothing: antialiased;
  transition: background var(--dur-base) var(--ease-out-cine),
              color var(--dur-base) var(--ease-out-cine),
              border-color var(--dur-base) var(--ease-out-cine),
              box-shadow var(--dur-base) var(--ease-out-cine),
              transform var(--dur-fast) var(--ease-out-cine);
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn .icon { display: inline-flex; margin-left: -2px; }
.btn .arrow { transition: transform var(--dur-base) var(--ease-out-cine); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--sm { padding: 9px 16px; font-size: 13px; gap: 7px; }
.btn--lg { padding: 17px 34px; font-size: 15px; gap: 11px; }
.btn--full { display: flex; width: 100%; }

.btn--primary { background: var(--gold-500); color: var(--on-accent); box-shadow: var(--glow-gold-sm); }
.btn--primary:hover { background: var(--gold-400); box-shadow: var(--glow-gold-md); }
.btn--secondary { background: transparent; color: var(--text-hi); border-color: var(--border-strong); }
.btn--secondary:hover { border-color: var(--gold-500); color: var(--gold-300); }
.btn--ghost { background: transparent; color: var(--text-mid); }
.btn--ghost:hover { background: var(--white-08); color: var(--text-hi); }

/* ---------------- Tag ---------------- */
.tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; font-size: 12px;
  font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius-pill); line-height: 1; white-space: nowrap;
  background: transparent; color: var(--text-mid); border: 1px solid var(--border-strong);
}
.tag--sm { padding: 4px 10px; font-size: 11px; }
.tag--active { background: var(--gold-veil); color: var(--gold-300); border-color: var(--border-gold); }
.tag--solid { background: var(--gold-500); color: var(--on-accent); border-color: var(--gold-500); }

/* ---------------- Nav ---------------- */
.site-nav {
  position: sticky; top: 0; z-index: 50; background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-out-cine),
              border-color var(--dur-base), backdrop-filter var(--dur-base);
}
.site-nav.is-scrolled {
  background: rgba(10, 10, 11, 0.72);
  -webkit-backdrop-filter: var(--blur-nav); backdrop-filter: var(--blur-nav);
  border-bottom-color: var(--border-hairline);
}
.nav-inner {
  max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); height: 78px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mid); transition: color var(--dur-fast);
}
.nav-links a:hover { color: var(--gold-300); }
.nav-cta { display: flex; align-items: center; }
.nav-toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: var(--white-08); border: 1px solid var(--border-hairline); border-radius: var(--radius-sm);
  color: var(--text-hi); cursor: pointer;
}

/* ---------------- Hero ---------------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: -6% 0; overflow: hidden; }
.hero-bg video, .hero-bg .still {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-bg .still {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
/* Poster sits behind the video and fades to the video once it can play */
.hero-bg .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
}
.hero-bg .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity var(--dur-slow) var(--ease-out-cine);
}
.hero-bg .hero-video.is-ready { opacity: 1; }
.scrim-bottom { position: absolute; inset: 0; background: var(--grad-scrim-bottom); pointer-events: none; }
.vignette { position: absolute; inset: 0; background: var(--grad-vignette); pointer-events: none; }
.hero-content {
  position: relative; width: 100%; max-width: var(--content-max); margin: 0 auto;
  padding: 0 var(--gutter) clamp(48px, 8vh, 110px);
}
.hero-title {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-hero);
  line-height: var(--lh-tight); letter-spacing: var(--ls-mega); text-transform: uppercase;
  color: var(--text-hi); margin: 0; max-width: 14ch; text-wrap: balance;
}
.gold-text {
  background-image: var(--grad-gold-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-family: var(--font-body); font-size: var(--fs-lead); line-height: var(--lh-normal);
  color: var(--text-mid); max-width: 52ch; margin-top: var(--space-5); text-wrap: pretty;
}
.hero-actions { display: flex; gap: var(--space-4); margin-top: var(--space-6); flex-wrap: wrap; }
.hero-eyebrow-wrap { margin-bottom: var(--space-5); }
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text-low);
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold-500), transparent); }

/* ---------------- Services (expand on hover) ---------------- */
.services { position: relative; z-index: 2; background: var(--bg-page); padding-top: 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4); margin-top: var(--space-7);
}
/* wrapper reserves collapsed height; card is absolute so expansion overlays
   downward instead of reflowing the grid */
.svc-wrap { position: relative; min-height: 256px; }
.svc-card {
  position: absolute; top: 0; left: 0; right: 0; box-sizing: border-box; min-height: 256px;
  padding: var(--space-6); background: var(--surface-card); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg); background-image: var(--grad-surface-sheen); box-shadow: none;
  transition: background 0.3s var(--ease-out-cine), border-color 0.3s var(--ease-out-cine), box-shadow 0.3s var(--ease-out-cine);
}
.svc-card:hover {
  background: var(--surface-card-hover); border-color: var(--border-gold);
  box-shadow: var(--glow-gold-md); z-index: 3;
}
.svc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-5); }
.svc-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: var(--radius-md); background: var(--gold-veil); border: 1px solid var(--border-gold); color: var(--gold-300);
}
.svc-chevron {
  display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px;
  border-radius: 50%; border: 1px solid var(--border-hairline); color: var(--text-faint);
  transition: transform 0.4s var(--ease-out-cine), color 0.3s var(--ease-out-cine), border-color 0.3s var(--ease-out-cine);
}
.svc-card:hover .svc-chevron { transform: rotate(180deg); color: var(--gold-300); border-color: var(--border-gold); }
.svc-card h3 {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3);
  letter-spacing: var(--ls-tight); text-transform: uppercase; color: var(--text-hi); margin: 0 0 8px;
}
.svc-subtitle {
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--gold-400);
}
.svc-desc { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.55s var(--ease-out-cine), opacity 0.4s var(--ease-out-cine); }
.svc-card:hover .svc-desc { max-height: 320px; opacity: 1; }
.svc-desc p {
  font-family: var(--font-body); font-size: var(--fs-sm); line-height: var(--lh-normal);
  color: var(--text-body); margin: 14px 0 0; text-wrap: pretty;
}
@media (prefers-reduced-motion: reduce) {
  .svc-card, .svc-chevron, .svc-desc { transition: none; }
}
/* Touch / small screens: no :hover, so the overlay expand never shows. Let the
   cards flow normally and reveal the descriptions inline. */
@media (hover: none), (max-width: 860px) {
  .svc-wrap { min-height: 0; }
  .svc-card { position: relative; }
  .svc-card .svc-desc { max-height: none; opacity: 1; }
  .svc-card .svc-chevron { display: none; }
}

/* ---------------- Work stage (pinned) ---------------- */
.work-stage { position: relative; background: var(--ink-850); }
.work-sticky { position: sticky; top: 0; height: 100vh; height: 100dvh; overflow: hidden; }
.work-slide { position: absolute; inset: 0; cursor: pointer; opacity: 0; pointer-events: none; }
.work-slide:first-of-type { opacity: 1; pointer-events: auto; }
.work-media { position: absolute; inset: -8%; overflow: hidden; transform: scale(1.06); will-change: transform; }
.work-media video, .work-media .still, .work-media .yt-thumb { width: 100%; height: 100%; object-fit: cover; }
.work-media .still { position: absolute; inset: 0; background-size: cover; background-position: center; }
.work-media .yt-thumb { position: absolute; inset: 0; }
.work-caption { position: absolute; left: 0; right: 0; bottom: 0; }
.work-caption .inner {
  max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter) clamp(64px, 12vh, 140px);
}
.work-caption h3 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.95; letter-spacing: 0.005em; text-transform: uppercase; color: var(--text-hi);
  margin: 14px 0 0; max-width: 18ch;
}
.work-meta {
  display: inline-flex; align-items: center; gap: 12px; margin-top: var(--space-4);
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--text-mid);
}
.work-meta .play {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid rgba(244,241,234,0.5); background: rgba(10,10,11,0.3); color: var(--text-hi);
}
.work-chrome { position: absolute; top: 0; left: 0; right: 0; pointer-events: none; }
.work-chrome .inner {
  max-width: var(--content-max); margin: 0 auto; padding: clamp(90px, 14vh, 130px) var(--gutter) 0;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
}
.work-counter { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.18em; color: var(--text-mid); }
.work-counter [data-wcounter] { color: var(--gold-300); }
.work-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--white-08); }
.work-progress [data-wprogress] { height: 100%; width: 0%; background: var(--gold-500); transition: width 0.1s linear; }

/* ---------------- Horizontal reel ---------------- */
.reel { position: relative; height: 320vh; background: var(--bg-page); }
.reel-sticky {
  position: sticky; top: 0; height: 100vh; height: 100dvh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; padding-top: 78px;
}
.reel-head {
  max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); width: 100%; margin-bottom: var(--space-6);
}
.reel-head .row { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-5); flex-wrap: wrap; }
.reel-head h2 {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h1);
  letter-spacing: var(--ls-tight); text-transform: uppercase; color: var(--text-hi); margin: 12px 0 0;
}
.reel-scroll-hint {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-low); display: flex; align-items: center; gap: 10px;
}
.reel-track { display: flex; gap: var(--space-4); padding: 0 var(--gutter); will-change: transform; }
.reel-card {
  position: relative; flex: none; width: clamp(280px, 42vw, 520px);
  height: clamp(360px, 62vh, 640px); height: clamp(360px, 62dvh, 640px);
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-hairline); box-shadow: var(--shadow-lg);
}
.reel-card .still { position: absolute; inset: 0; background-size: cover; background-position: center; }
.reel-card .still.n2-kenburns { animation: n2-kenburns-reel 9s var(--ease-out-cine) infinite alternate; }
@keyframes n2-kenburns-reel {
  0%   { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.22) translate3d(-2.5%, -2.5%, 0); }
}
.reel-card .label { position: absolute; left: var(--space-5); bottom: var(--space-5); }
.reel-card .cat {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-300);
}
.reel-card .title {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.01em; text-transform: uppercase; color: var(--text-hi); margin-top: 4px;
}

/* ---------------- About ---------------- */
.about-section { background: var(--bg-page); padding-top: var(--space-5); padding-bottom: var(--space-7); }
.filmstrip {
  position: relative; background: var(--ink-800);
  border-top: 1px solid var(--border-hairline); border-bottom: 1px solid var(--border-hairline);
  padding: 9px 0; margin-bottom: var(--space-5);
}
.filmstrip-holes {
  height: 7px;
  background-image: repeating-linear-gradient(90deg, var(--bg-page) 0 7px, transparent 7px 18px);
  background-position: 9px center;
}
.about-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-8); align-items: center;
}
.about-actions { margin-top: var(--space-6); display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }
.about-media {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-hairline); box-shadow: var(--shadow-lg);
}
.about-media .still { position: absolute; inset: 0; background-size: cover; background-position: center; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-5);
  margin-top: var(--space-9); border-top: 1px solid var(--border-hairline); padding-top: var(--space-7);
}
.stat .value {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-display); line-height: 1.12;
  letter-spacing: var(--ls-mega); text-transform: uppercase; padding-bottom: 0.06em;
  background-image: var(--grad-gold-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-400);
}
.stat .label {
  font-family: var(--font-mono); font-size: var(--fs-xs); margin-top: var(--space-3);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-low);
}

/* ---------------- Marquee ---------------- */
.marquee {
  position: relative; overflow: hidden; width: 100%; padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex; align-items: center; flex-wrap: nowrap; white-space: nowrap;
  animation: n2-marquee 140s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .item { display: inline-flex; align-items: center; }
.marquee-track .item .word {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(0.9rem, 1.9vw, 1.6rem);
  letter-spacing: var(--ls-tight); text-transform: uppercase; color: var(--text-hi); padding: 0 14px;
}
.marquee-track .item .sep { color: var(--gold-500); font-size: 0.62rem; }

/* ---------------- Testimonial ---------------- */
.testimonial { background: var(--ink-850); }
.testimonial .inner { max-width: 980px; margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.testimonial .stars { display: flex; justify-content: center; gap: 4px; color: var(--gold-500); margin-bottom: var(--space-5); }
.testimonial blockquote {
  font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-h2); line-height: 1.3;
  letter-spacing: -0.01em; color: var(--text-hi); margin: 0; text-wrap: balance;
}
.testimonial .person { margin-top: var(--space-6); display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad-gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 400; color: var(--on-accent);
}
.testimonial .person .meta { text-align: left; }
.testimonial .person .name { font-family: var(--font-body); font-weight: 600; color: var(--text-hi); font-size: 15px; }
.testimonial .person .role { font-family: var(--font-mono); font-size: 12px; color: var(--text-low); letter-spacing: 0.08em; }

/* ---------------- Contact ---------------- */
.contact { position: relative; overflow: hidden; background: var(--bg-page); }
.contact .glow { position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% 120%, var(--gold-veil), transparent 70%); }
.contact .inner { position: relative; max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.contact h2 {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-display); line-height: var(--lh-tight);
  letter-spacing: var(--ls-mega); text-transform: uppercase; color: var(--text-hi); margin: var(--space-4) 0 0; text-wrap: balance;
}
.contact .lead {
  font-family: var(--font-body); font-size: var(--fs-lead); color: var(--text-mid);
  margin-top: var(--space-4); max-width: 48ch; margin-inline: auto;
}
.contact .actions { display: flex; gap: var(--space-4); justify-content: center; margin-top: var(--space-6); flex-wrap: wrap; }
.contact .eyebrow { justify-content: center; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink-1000); border-top: 1px solid var(--border-hairline); }
.footer-inner { max-width: var(--content-max); margin: 0 auto; padding: var(--space-8) var(--gutter) var(--space-6); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-6); flex-wrap: wrap; }
.footer-blurb { max-width: 32ch; }
.footer-blurb .brand { margin-bottom: var(--space-3); }
.footer-blurb p { font-family: var(--font-body); font-size: var(--fs-sm); color: var(--text-low); }
.footer-cols { display: flex; gap: var(--space-8); flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: var(--space-3); font-weight: 400;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-family: var(--font-body); font-size: var(--fs-sm); color: var(--text-mid); }
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom {
  margin-top: var(--space-8); padding-top: var(--space-5); border-top: 1px solid var(--border-hairline);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--text-faint);
}

/* ---------------- Story overlay (drawer) ---------------- */
.story-overlay {
  position: fixed; inset: 0; z-index: 120; display: flex; justify-content: flex-end;
  background: rgba(5,5,6,0); backdrop-filter: blur(0px); visibility: hidden;
  transition: background 0.45s var(--ease-out-cine), backdrop-filter 0.45s var(--ease-out-cine), visibility 0s linear 0.48s;
}
.story-overlay.open {
  background: rgba(5,5,6,0.74); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  visibility: visible; transition: background 0.45s var(--ease-out-cine), backdrop-filter 0.45s var(--ease-out-cine);
}
.story-panel {
  position: relative; height: 100%; width: min(720px, 100%); background: var(--surface-raised);
  border-left: 1px solid var(--border-gold); box-shadow: var(--shadow-xl);
  transform: translateX(100%); transition: transform 0.5s var(--ease-out-cine);
  display: flex; flex-direction: column; overflow: hidden;
}
.story-overlay.open .story-panel { transform: translateX(0); }
.story-grain { position: absolute; inset: 0; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay; z-index: 2; animation: none; }
.story-header {
  position: sticky; top: 0; z-index: 3; flex: none; display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-5) var(--space-7);
  background: linear-gradient(180deg, var(--surface-raised) 70%, rgba(20,20,22,0));
  border-bottom: 1px solid var(--border-hairline);
}
.story-header .kicker {
  font-family: var(--font-mono); font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--gold-500);
}
.icon-close {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; background: var(--white-08); border: 1px solid var(--border-hairline); color: var(--text-hi);
}
.story-body { position: relative; z-index: 1; overflow-y: auto; padding: var(--space-7) var(--space-7) var(--space-9); flex: 1; }
.story-body > h2 {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h1); line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight); text-transform: uppercase; color: var(--text-hi); margin: 0 0 var(--space-6);
}
.story-founders {
  display: flex; flex-wrap: wrap; gap: var(--space-5); padding: var(--space-5) var(--space-6); margin-bottom: var(--space-7);
  border: 1px solid var(--border-hairline); border-radius: var(--radius-md); background: var(--gold-veil);
}
.story-founders .founder { flex: 1 1 220px; }
.story-founders .name { font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: var(--fs-h4); color: var(--text-hi); }
.story-founders .branch {
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--gold-400); margin-top: 4px;
}
.story-body p {
  font-family: var(--font-body); font-size: var(--fs-body); line-height: var(--lh-relaxed);
  color: var(--text-mid); margin: 0 0 var(--space-5);
}
.story-subhead {
  font-family: var(--font-mono); font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--gold-400); margin: 0 0 var(--space-4);
  display: flex; align-items: center; gap: var(--space-3);
}
.story-subhead::after { content: ""; flex: 1; height: 1px; background: var(--border-hairline); }
.story-tags { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.story-tags.mb { margin-bottom: var(--space-8); }
.story-clients-label {
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--text-low); margin-bottom: var(--space-4);
}
.story-clients { margin-bottom: var(--space-6); }
.story-mission {
  position: relative; padding: var(--space-7) var(--space-6);
  border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold);
  background: var(--gold-veil); margin-bottom: var(--space-7);
}
.story-mission .label {
  font-family: var(--font-mono); font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--gold-500); margin-bottom: var(--space-4);
}
.story-mission p {
  font-family: var(--font-heading); font-weight: var(--fw-medium); font-size: var(--fs-lead);
  line-height: var(--lh-normal); color: var(--text-hi); margin: 0;
}
.story-tagline {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3); letter-spacing: var(--ls-mega);
  text-transform: uppercase; text-align: center; padding-bottom: 0.06em;
  background-image: var(--grad-gold-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-400);
}

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(5,6,8,0.86);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: var(--gutter);
}
.lightbox.open { display: flex; animation: n2-fade 0.25s var(--ease-out-cine); }
.lightbox .frame { width: min(1040px, 100%); }
.lightbox .frame-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: var(--space-4); }
.lightbox .cat { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-300); }
.lightbox h3 {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h2); color: var(--text-hi);
  margin: 6px 0 0; letter-spacing: var(--ls-tight); text-transform: uppercase;
}
.lightbox .stage {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-hairline); box-shadow: var(--shadow-xl); background: #000;
}
.lightbox .stage video { width: 100%; height: 100%; object-fit: cover; }
.lightbox .stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox .stage .still { position: absolute; inset: 0; background-size: cover; background-position: center; }

/* ---------------- Booking / contact modal ---------------- */
.booking-overlay {
  position: fixed; inset: 0; z-index: 120; display: none;
  align-items: flex-start; justify-content: center;
  padding: clamp(16px, 5vh, 60px) var(--gutter); overflow-y: auto;
  background: rgba(5,5,6,0.82); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.booking-overlay.open { display: flex; animation: n2-fade 0.25s var(--ease-out-cine); }
.booking-card {
  width: min(680px, 100%); position: relative; background: var(--ink-850);
  border: 1px solid var(--border-hairline); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  background-image: var(--grad-surface-sheen); padding: clamp(26px, 4vw, 44px);
}
.booking-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; }
.booking-head { margin-bottom: var(--space-6); padding-right: 48px; }
.booking-head .kicker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-300); margin-bottom: 10px;
}
.booking-head h3 {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h1); line-height: 1;
  letter-spacing: var(--ls-tight); text-transform: uppercase; color: var(--text-hi); margin: 0;
}
.booking-head p { font-family: var(--font-body); font-size: var(--fs-sm); color: var(--text-mid); margin: 12px 0 0; max-width: 46ch; }
.booking-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-4); }
.field.span2 { grid-column: 1 / -1; }
.field label {
  display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-low); margin-bottom: 8px;
}
.field .req { color: var(--gold-400); margin-left: 4px; }
.field input, .field textarea, .field select {
  width: 100%; box-sizing: border-box; background: rgba(255,255,255,0.035);
  border: 1px solid var(--border-hairline); border-radius: var(--radius-md); padding: 13px 14px;
  font-family: var(--font-body); font-size: 15px; color: var(--text-hi); outline: none; color-scheme: dark;
  transition: border-color var(--dur-base) var(--ease-out-cine), box-shadow var(--dur-base) var(--ease-out-cine), background var(--dur-base);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--border-gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.10); background: rgba(255,255,255,0.05);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; }
.select-wrap .select-chevron { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--text-low); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 18px; border-radius: var(--radius-pill); cursor: pointer;
  background: transparent; border: 1px solid var(--border-hairline); color: var(--text-mid);
  transition: all var(--dur-base) var(--ease-out-cine);
}
.chip.on { background: var(--gold-veil); border-color: var(--border-gold); color: var(--gold-300); }
.booking-error {
  margin-top: var(--space-4); padding: 12px 14px; border-radius: var(--radius-md);
  background: rgba(200,60,60,0.10); border: 1px solid rgba(200,60,60,0.35);
  font-family: var(--font-body); font-size: var(--fs-sm); color: #E7A3A3;
}
.booking-foot {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  margin-top: var(--space-6); flex-wrap: wrap;
}
.booking-alt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--text-faint); }
.booking-alt a { color: var(--gold-400); }
.booking-success-view { text-align: center; padding: 20px 8px 12px; }
.success-check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto var(--space-5);
  background: var(--gold-veil); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; color: var(--gold-300);
}
.booking-success-view h3 {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h2);
  letter-spacing: var(--ls-tight); text-transform: uppercase; color: var(--text-hi); margin: 0;
}
.booking-success-view p {
  font-family: var(--font-body); font-size: var(--fs-body); color: var(--text-mid);
  margin: var(--space-4) auto var(--space-6); max-width: 40ch;
}
@media (max-width: 560px) { .booking-grid { grid-template-columns: 1fr; } }

/* ---------------- Responsive ---------------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav.menu-open { background: rgba(10,10,11,0.95); -webkit-backdrop-filter: var(--blur-nav); backdrop-filter: var(--blur-nav); }
  .mobile-menu {
    display: none; flex-direction: column; gap: var(--space-2);
    padding: var(--space-4) var(--gutter) var(--space-6); border-top: 1px solid var(--border-hairline);
  }
  .site-nav.menu-open .mobile-menu { display: flex; }
  .mobile-menu a {
    font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-mid); padding: 12px 0;
  }
  .mobile-menu .btn { margin-top: var(--space-3); }
  .about-grid { grid-template-columns: 1fr; }
}
.mobile-menu { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
