/* ============================================================
   CHROMATA FILMS — design system
   Where the French Touch meets modern elegance.
   Palette: porcelain white / mediterranean sky / royal gold /
            coral red / citrus orange — Dalí × Schiaparelli pop-luxe.
   ============================================================ */

:root {
  /* backgrounds */
  --porcelain: #F8F4EE;
  --porcelain-alt: #FFF8F0;
  --section-light: #F3EEE7;
  --night: #201C18;
  --night-deep: #16130F;

  /* type */
  --ink: #252321;
  --ink-soft: #6A645C;
  --ink-muted: #9C948A;
  --cream: #FFF9F0;

  /* accents */
  --coral: #E94437;
  --coral-hover: #C82C22;
  --gold: #C99A2E;
  --gold-deep: #8D6430;
  --gold-light: #E5C978;
  --gold-ghost-bg: #F4E6B6;
  --citrus: #F78C29;
  --lemon: #F6D54E;
  --sky: #BFD8F6;

  /* gradients */
  --grad-sunset: linear-gradient(120deg, #E94437 0%, #F78C29 55%, #F6D54E 100%);
  --grad-gold: linear-gradient(120deg, #8D6430 0%, #C99A2E 50%, #E5C978 100%);
  --grad-sky: linear-gradient(180deg, #F8F4EE 0%, #BFD8F6 100%);

  /* type scale */
  --display-xl: clamp(4rem, 11vw, 11.5rem);
  --display-lg: clamp(3rem, 7vw, 7rem);
  --display-md: clamp(2rem, 4vw, 3.5rem);
  --display-sm: clamp(1.4rem, 2.4vw, 2.1rem);
  --body: clamp(1rem, 1.15vw, 1.185rem);
  --caption: 0.8125rem;
  --kicker: 0.6875rem;

  --font-display: "Germany Sans", "Cormorant Garamond", Georgia, serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Space Grotesk", system-ui, sans-serif;

  --nav-h: 88px;
  --nav-h-compact: 68px;
  --pad-x: clamp(20px, 4vw, 64px);
}

@font-face {
  font-family: "Germany Sans";
  src: url("../assets/fonts/GermanySans.ttf") format("truetype");
  font-weight: 400 600;
  font-display: swap;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: var(--body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
::selection { background: var(--gold); color: #fff; }

/* film grain over everything */
body::after {
  content: ""; position: fixed; inset: -100%; z-index: 9990; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.035; animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0);} 10% { transform: translate(-5%,-8%);} 20% { transform: translate(-12%,3%);}
  30% { transform: translate(6%,-10%);} 40% { transform: translate(-4%,12%);} 50% { transform: translate(-10%,4%);}
  60% { transform: translate(10%,0);} 70% { transform: translate(0,10%);} 80% { transform: translate(3%,12%);} 90% { transform: translate(-8%,2%);}
}

/* ---------- shared bits ---------- */
.kicker {
  font-family: var(--font-ui); font-size: var(--kicker); letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 0.9em;
}
.kicker::before { content: ""; width: 6px; height: 6px; background: var(--gold); flex: none; }
.on-night .kicker, [data-theme="dark"] .kicker { color: var(--gold-light); }

.display-xl, .display-lg, .display-md, .display-sm {
  font-family: var(--font-display); font-weight: 500;
  line-height: 0.98; letter-spacing: -0.015em; text-wrap: balance;
}
.display-xl { font-size: var(--display-xl); line-height: 0.95; }
.display-lg { font-size: var(--display-lg); }
.display-md { font-size: var(--display-md); line-height: 1.05; }
.display-sm { font-size: var(--display-sm); line-height: 1.15; }
.display-xl em, .display-lg em, .display-md em, .display-sm em, .np-title em {
  font-family: var(--font-accent); font-style: italic; font-weight: 500; letter-spacing: 0;
}

.body-copy { max-width: 34em; color: color-mix(in srgb, currentColor 78%, transparent); }
.lead { font-size: calc(var(--body) * 1.25); line-height: 1.55; }

.container { max-width: 1440px; margin-inline: auto; padding-inline: var(--pad-x); }
.pad-section { padding-block: 16vh; position: relative; }

/* masked line reveals — bottom/right padding keeps descenders (g j p q y)
   and italic overhangs inside the overflow mask; the negative margin
   cancels the padding so line spacing is unchanged */
.line-mask { display: block; overflow: hidden; padding: 0 0.12em 0.18em 0; margin-bottom: -0.18em; }
.line-mask .line-inner { display: block; transform: translateY(134%) rotate(2deg); transform-origin: 0 100%; }
.no-js .line-mask .line-inner, .reduced-motion .line-mask .line-inner { transform: none; }

/* image reveal + mat border */
.mat { position: relative; border-radius: 4px; overflow: hidden; }
.mat::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,249,240,0.35); border-radius: 2px; pointer-events: none; z-index: 2; }
.img-reveal { clip-path: inset(100% 0 0 0); }
.img-reveal > img, .img-reveal > video { transform: scale(1.25); width: 100%; height: auto; }
.img-reveal.fill > img, .img-reveal.fill > video { height: 100%; object-fit: cover; }
.no-js .img-reveal, .reduced-motion .img-reveal { clip-path: inset(0); }
.no-js .img-reveal > img, .reduced-motion .img-reveal > img { transform: none; }

/* vignette */
.vignette::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 3;
  box-shadow: inset 0 0 18vmin rgba(22,19,15,0.35);
}

/* text link w/ draw-on underline */
.text-link { position: relative; display: inline-block; font-family: var(--font-ui); font-size: 0.9em; letter-spacing: 0.06em; }
.text-link::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px; background: var(--coral); transform: scaleX(0); transform-origin: 100% 50%; transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94); }
.text-link:hover::after { transform: scaleX(1); transform-origin: 0 50%; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 0.6em; padding: 1em 2.1em; border-radius: 999px;
  font-family: var(--font-ui); font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s; }
.btn--coral { background: var(--coral); color: #fff; }
.btn--coral:hover { background: var(--coral-hover); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #AF8525; }
.btn--ghost { border: 1px solid var(--gold); color: var(--gold-deep); }
.btn--ghost:hover { background: var(--gold-ghost-bg); }
.on-night .btn--ghost { color: var(--gold-light); }
.on-night .btn--ghost:hover { color: var(--ink); }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 10000; background: var(--porcelain);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
}
.preloader__mark { height: 140px; width: auto; object-fit: contain; }
.preloader__word { font-family: var(--font-display); font-size: clamp(1.3rem, 4.6vw, 2.7rem); letter-spacing: 0.16em; text-indent: 0.16em; color: var(--ink); white-space: nowrap; }
.preloader__sub { font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold-deep); }
.preloader__bar { width: min(320px, 60vw); height: 1px; background: rgba(37,35,33,0.15); position: relative; }
.preloader__fill { position: absolute; inset: 0; width: 0%; background: var(--ink); }
.preloader__pct { font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.2em; color: var(--ink-muted); font-variant-numeric: tabular-nums; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: 48px; transition: height 0.45s cubic-bezier(0.22,1,0.36,1), background 0.45s, color 0.45s;
  background: transparent;
}
.nav--solid { height: var(--nav-h-compact); background: color-mix(in srgb, var(--porcelain) 82%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.nav--night { color: var(--cream); }
.nav--night.nav--solid { background: color-mix(in srgb, var(--night) 82%, transparent); }
.nav__brand { display: flex; align-items: center; gap: 12px; z-index: 2; }
.nav__logo { height: 64px; width: auto; flex: none; object-fit: contain; transition: height 0.45s cubic-bezier(0.22,1,0.36,1); filter: drop-shadow(0 1px 6px rgba(22,19,15,0.25)); }
.nav--solid .nav__logo { height: 50px; }
.nav__wordmark { font-family: var(--font-ui); font-weight: 500; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }
.nav__links { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.nav__link { position: relative; padding: 6px 0; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--coral); transform: scaleX(0); transform-origin: 100% 50%; transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav--night .nav__link::after { background: var(--gold-light); }
.nav__cta { border: 1px solid var(--gold); color: inherit; border-radius: 999px; padding: 9px 20px; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.nav__cta:hover { background: var(--coral); border-color: var(--coral); color: #fff; }

/* dropdown */
.nav__drop { position: relative; }
.nav__drop-toggle { display: inline-flex; align-items: center; gap: 7px; letter-spacing: inherit; text-transform: inherit; font-size: inherit; padding: 6px 0; }
.nav__drop-toggle svg { width: 9px; height: 9px; transition: transform 0.3s; }
.nav__drop.open .nav__drop-toggle svg { transform: rotate(180deg); }
.nav__drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 8px);
  min-width: 320px; background: var(--porcelain-alt); color: var(--ink);
  border: 1px solid rgba(201,154,46,0.35); border-radius: 4px; padding: 10px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  box-shadow: 0 24px 60px rgba(37,35,33,0.16);
}
.nav__drop.open .nav__drop-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__drop-item { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 12px 14px; border-radius: 3px; transition: background 0.25s; }
.nav__drop-item:hover { background: var(--gold-ghost-bg); }
.nav__drop-item .t { font-size: 13px; letter-spacing: 0.1em; }
.nav__drop-item .tag { font-size: 9px; letter-spacing: 0.28em; color: var(--gold-deep); text-transform: uppercase; }

/* progress rail */
.rail { position: fixed; left: 22px; top: 50%; transform: translateY(-50%); z-index: 890; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.rail__track { width: 1px; height: 160px; background: rgba(37,35,33,0.18); position: relative; }
.rail__fill { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: var(--gold); }
.rail__dots { position: absolute; inset: 0; }
.rail__dots i { position: absolute; left: 50%; width: 4px; height: 4px; border-radius: 50%; background: rgba(37,35,33,0.3); transform: translate(-50%,-50%); }
.rail__index { font-size: 10px; letter-spacing: 0.3em; writing-mode: vertical-rl; color: var(--ink-muted); font-variant-numeric: tabular-nums; }
body.rail-night .rail__track { background: rgba(255,249,240,0.22); }
body.rail-night .rail__dots i { background: rgba(255,249,240,0.35); }
body.rail-night .rail__index { color: rgba(255,249,240,0.55); }

/* burger + mobile menu */
.nav__burger { display: none; z-index: 1001; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.nav__burger span { width: 24px; height: 1.5px; background: currentColor; transition: transform 0.35s, opacity 0.35s; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 950; background: var(--night); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 0 9vw;
  opacity: 0; visibility: hidden; transition: opacity 0.45s, visibility 0.45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu .big { font-family: var(--font-display); font-size: clamp(2rem, 8.5vw, 3.4rem); line-height: 1.15; }
.mobile-menu .big em { font-family: var(--font-accent); font-style: italic; color: var(--gold-light); }
.mobile-menu .sub { display: none; flex-direction: column; gap: 12px; padding: 10px 0 16px 20px; font-size: 14px; letter-spacing: 0.1em; color: rgba(255,249,240,0.75); }
.mobile-menu .sub.open { display: flex; }
.mobile-menu .mm-footer { position: absolute; bottom: 30px; left: 9vw; right: 9vw; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,249,240,0.4); }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
body.menu-open .nav { color: var(--cream); background: transparent; backdrop-filter: none; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot { position: fixed; z-index: 9999; width: 8px; height: 8px; border-radius: 50%; pointer-events: none; transform: translate(-50%,-50%); mix-blend-mode: difference; background: #fff; }
.cursor-ring { position: fixed; z-index: 9998; width: 32px; height: 32px; border-radius: 50%; border: 1px solid #fff; mix-blend-mode: difference; pointer-events: none; transform: translate(-50%,-50%); display: flex; align-items: center; justify-content: center; transition: width 0.3s, height 0.3s, background 0.3s; }
.cursor-ring .cursor-label { font-size: 9px; letter-spacing: 0.18em; color: #fff; opacity: 0; transition: opacity 0.2s; font-family: var(--font-ui); text-transform: uppercase; }
.cursor-ring.is-link { width: 56px; height: 56px; }
.cursor-ring.is-drag, .cursor-ring.is-play { width: 64px; height: 64px; background: rgba(255,255,255,0.08); }
.cursor-ring.is-drag .cursor-label, .cursor-ring.is-play .cursor-label { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }

/* ============================================================
   SCRUB FILM SECTIONS
   ============================================================ */
.film { position: relative; height: 100vh; height: 100dvh; overflow: hidden; background: var(--night-deep); color: var(--cream); }
/* header films: responsive 21:9 cinema band — the full frame is always
   visible, never cropped (masters are 1920×824 scope) */
.film--header { height: calc(100vw * 9 / 21); }
/* every other page header (studio, contact, journal) crops tighter to 3:1;
   only the homepage hero keeps the wider 21:9 cinematic band */
.film--header:not(.hero) { height: calc(100vw / 3); }
/* 3:1 scrub band — non-pinned, sits in normal flow between sections */
.film--band { height: calc(100vw / 3); }
.film--header .hero__title--brand { font-size: clamp(3rem, 15vw, 11rem); line-height: 0.92; }
.film--header .hero__title--page { font-size: clamp(1.1rem, 4.5vw, 5.6rem); }
/* landing hero rolls back to full-bleed on mobile (phones AND portrait
   tablets); other headers keep the 21:9 band */
@media (max-width: 760px), (max-width: 1024px) and (orientation: portrait) {
  .film--header.hero { height: 100vh; height: 100dvh; }
}
@media (max-width: 760px) {
  .film--header:not(.hero) .hero__scroll, .film--header:not(.hero) .film__timeline, .film--header:not(.hero) .film__numerals { display: none; }
  .film--header:not(.hero) .hero__head { gap: 1.2vh; padding-top: 44px; justify-content: flex-end; padding-bottom: 4vh; }
  .film--header:not(.hero) .hero__head .intro-fade { font-size: 8px !important; letter-spacing: 0.22em !important; }
  .film--header:not(.hero) .hero__head .kicker { display: none; }
}
.film video, .film .film__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.film__shade { position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 45%, transparent 50%, rgba(22,19,15,0.55) 100%); pointer-events: none; }
.film__chapters { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; pointer-events: none; padding-inline: 8vw; z-index: 4; }
.film__chapter { grid-area: 1/1; opacity: 0; display: flex; flex-direction: column; align-items: center; gap: 2.4vh; }
.film__chapter .kicker { color: var(--coral); }
.film__chapter .kicker::before { background: var(--coral); }
.film__chapter h3 { font-size: var(--display-md); font-family: var(--font-display); font-weight: 500; color: var(--cream); text-shadow: 0 2px 40px rgba(22,19,15,0.5); max-width: 18em; }
.film__chapter h3 em { font-family: var(--font-accent); font-style: italic; color: var(--coral); }
/* persistent centered title over a scroll-scrubbed film (L'Amour feature) */
.film__headline { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; pointer-events: none; padding-inline: 8vw; z-index: 4; }
.film__headline .kicker { color: var(--coral); }
.film__headline .kicker::before { background: var(--coral); }
.film__headline h2 { margin-top: 2.6vh; font-weight: 600; color: var(--cream); text-shadow: 0 2px 44px rgba(22,19,15,0.55); }
.film__headline h2 em { color: var(--coral); }
/* gradient reveal into a scrub film (placed right after the white ease band) */
.film__fadein { position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(180deg, #FFF8F0 0%, rgba(255,248,240,0.5) 45%, rgba(255,248,240,0) 100%); }
/* dissolve back to white at the very end of the scrub — no lingering last frame */
.film__fadeout { position: absolute; inset: 0; z-index: 6; pointer-events: none; background: #FFF8F0; opacity: 0; }
/* gettoknowusmore GASP film dissolves into the offers section's own blue */
.film--offers .film__fadeout { background: #80A8CE; }
/* populated cards scrolling across the top of a scrub film */
.film__cards { position: absolute; top: 5%; left: 0; height: 26%; display: flex; gap: clamp(14px, 1.6vw, 26px);
  width: max-content; z-index: 2; pointer-events: none; padding-inline: var(--pad-x); will-change: transform; }
.film__cards figure { height: 100%; border-radius: 4px; overflow: hidden; box-shadow: 0 18px 44px rgba(22,19,15,0.35); }
.film__cards img { height: 100%; width: auto; display: block; }
.film__numerals { position: absolute; right: clamp(18px, 3vw, 44px); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 18px; font-family: var(--font-display); font-size: 18px; color: rgba(255,249,240,0.35); z-index: 5; }
.film__numerals span.active { color: var(--coral); }
.film__timeline { position: absolute; left: clamp(20px, 4vw, 60px); bottom: 34px; width: min(300px, 40vw); display: flex; flex-direction: column; gap: 9px; z-index: 5; }
.film__timeline .track { height: 1px; background: rgba(255,249,240,0.25); position: relative; }
.film__timeline .fill { position: absolute; inset: 0; width: 0%; background: var(--cream); }
.film__timeline .tc { font-size: 10px; letter-spacing: 0.22em; color: rgba(255,249,240,0.6); font-variant-numeric: tabular-nums; }
/* split timecode: 00:00 [====] 00:06 on one row */
.film__timeline--split { flex-direction: row; align-items: center; gap: 14px; width: min(340px, 46vw); }
.film__timeline--split .track { flex: 1; }
.film__timeline--split .tc-now, .film__timeline--split .tc-end { font-size: 10px; letter-spacing: 0.22em; color: rgba(255,249,240,0.6); font-variant-numeric: tabular-nums; }

/* ============================================================
   HERO
   ============================================================ */
.hero__head { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 3.2vh; padding-inline: 6vw; z-index: 4; }
.hero__title { font-size: clamp(2.6rem, 6.5vw, 6.6rem); font-family: var(--font-display); color: var(--cream); line-height: 1.02; text-shadow: 0 2px 40px rgba(37,28,22,0.35); max-width: 14em; }
.hero__title em { font-family: var(--font-accent); font-style: italic; color: var(--coral); }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 5; color: rgba(255,249,240,0.8); }
.hero__scroll .lbl { font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase; text-indent: 0.42em; }
.hero__scroll .line { width: 1px; height: 40px; background: rgba(255,249,240,0.3); position: relative; overflow: hidden; }
.hero__scroll .line i { position: absolute; top: -6px; left: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-light); }

/* homepage hero "scroll down" cue — right side, revealed by JS after 2s of stillness */
.hero__scrollcue { position: absolute; right: clamp(48px, 8vw, 130px); bottom: 34px; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 14px; color: rgba(255,249,240,0.95); opacity: 0; visibility: hidden; pointer-events: none; text-shadow: 0 1px 14px rgba(22,19,15,0.55); }
.hero__scrollcue .lbl { writing-mode: vertical-rl; font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase; }
.hero__scrollcue svg { display: block; filter: drop-shadow(0 1px 8px rgba(22,19,15,0.55)); }

/* statement band under hero — mediterranean sky */
.statement { background: var(--sky); color: var(--ink); padding: 12vh var(--pad-x); text-align: center; }
.statement p { max-width: 62em; margin-inline: auto; font-size: clamp(0.8rem, 1.4vw, 1.05rem); letter-spacing: 0.22em; line-height: 2.1; text-transform: uppercase; color: rgba(37,35,33,0.78); }
.statement p strong { color: var(--coral); font-weight: 500; }

/* full-bleed ambient video band (Vimeo or YouTube), locked to 3:1 — the 16:9
   embed is oversized and centered so it covers the band (top/bottom crop) */
.videoband { position: relative; height: calc(100vw / 3); overflow: hidden; background: var(--night-deep); color: var(--cream); }
.videoband iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: calc(100vw * 9 / 16); transform: translate(-50%, -50%); border: 0; pointer-events: none; }
.videoband .display-lg { font-size: clamp(1.15rem, 4.6vw, 5.2rem); }
.videoband .kicker { font-size: clamp(8px, 0.85vw, 12px); }
/* videoband used as a page header: layer a title + shade over the ambient film */
.videoband--header .hero__title--page { font-size: clamp(1.1rem, 4.5vw, 5.6rem); }
.videoband--header .hero__head { z-index: 4; }

/* ============================================================
   DOMANTAS DUET — offset video + cover collage
   ============================================================ */
.duet { background: var(--porcelain-alt); color: var(--ink); padding: 9vh var(--pad-x) 11vh; position: relative; overflow: hidden; }
.duet__head { max-width: 1440px; margin-inline: auto; position: relative; z-index: 2; display: flex; flex-direction: column; gap: 2.5vh; align-items: flex-start; }
.duet__title { font-size: clamp(2.6rem, 6.5vw, 6.8rem); font-family: var(--font-display); line-height: 0.95; text-transform: uppercase; }
.duet__stage { max-width: 1440px; margin: 6vh auto 0; position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(24px, 4vw, 70px); align-items: end; }
.duet__left { display: flex; flex-direction: column; gap: 4.5vh; }
.duet__video { position: relative; z-index: 1; aspect-ratio: 16/9; background: #000; border-radius: 4px; overflow: hidden; }
.duet__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* cover photo settles into the bottom-right corner of the stage */
.duet__cover { position: relative; z-index: 2; width: 88%; margin: 0 0 0 auto; align-self: end; filter: drop-shadow(0 30px 60px rgba(37,35,33,0.25)); }
.duet__cover img { width: 100%; height: auto; border-radius: 4px; }
.duet__side { position: relative; z-index: 2; max-width: 30em; display: flex; flex-direction: column; gap: 2.6vh; align-items: flex-start; }

/* HIT differently — red cascade flanked by the reels */
.hit { background: var(--night); color: var(--cream); padding: 16vh var(--pad-x); position: relative; overflow: hidden; min-height: 110svh; display: grid; place-items: center; }
.hit__title { position: relative; z-index: 3; font-size: clamp(3.4rem, 10vw, 10.5rem); font-family: var(--font-display); text-transform: uppercase; line-height: 0.9; color: var(--coral); text-align: center; pointer-events: none; }
.hit__title .line-mask { text-shadow: 0 10px 60px rgba(22,19,15,0.6); }
.hit__videos--left, .hit__videos--right { position: absolute; z-index: 1; width: clamp(260px, 32vw, 560px); aspect-ratio: 9/16; border-radius: 4px; overflow: hidden; background: #000; }
.hit__videos--left { left: clamp(8px, 5vw, 90px); top: 8vh; }
.hit__videos--right { right: clamp(8px, 5vw, 90px); bottom: 8vh; }
.hit__videos--left iframe, .hit__videos--right iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.wow-head { position: absolute; right: -3vw; bottom: -7vh; width: clamp(160px, 17vw, 320px); pointer-events: none; opacity: 0.92; z-index: 2; }

/* ============================================================
   FULL-BLEED YOUTUBE FILM
   ============================================================ */
.ytfull { position: relative; height: 100vh; height: 100dvh; overflow: hidden; background: var(--night-deep); color: var(--cream); }
.ytfull__media { position: absolute; inset: 0; pointer-events: none; }
.ytfull__media iframe {
  position: absolute; top: 50%; left: 50%;
  width: max(100vw, 177.78vh); height: max(100vh, 56.25vw);
  width: max(100vw, 177.78dvh); height: max(100dvh, 56.25vw);
  transform: translate(-50%, -50%); border: 0;
}
.ytfull__label { position: absolute; left: clamp(20px, 4vw, 60px); bottom: 5vh; z-index: 3; display: flex; flex-direction: column; gap: 1.4vh; }
.ytfull__label h2 { font-family: var(--font-display); font-size: var(--display-md); text-shadow: 0 2px 40px rgba(22,19,15,0.6); }
.ytfull__cta { position: absolute; right: clamp(20px, 4vw, 60px); bottom: 5vh; z-index: 3; }

/* ============================================================
   MANIFESTO + LOGO MARQUEE
   ============================================================ */
.manifesto { background: var(--lemon); position: relative; overflow: hidden; }
.manifesto .kicker { color: var(--gold-deep); }
.manifesto .kicker::before { background: var(--coral); }
.manifesto .text-link::after { background: var(--coral); }
/* upside-down cutout bleeding off the top-right corner */
.manifesto__cutout { position: absolute; top: -8%; right: -5%; width: clamp(240px, 36vw, 600px); transform: rotate(180deg); pointer-events: none; z-index: 1; filter: drop-shadow(0 20px 40px rgba(37,35,33,0.18)); }
@media (max-width: 760px) {
  /* the 240px floor is ~60% of a phone screen and sits right behind the
     kicker/title, visually drowning the text — shrink it, fade it, and
     drop it lower so the title reads clearly in front */
  .manifesto__cutout { width: 34vw; max-width: 160px; top: 9vh; opacity: 0.5; z-index: 0; }
}
.manifesto .container { position: relative; z-index: 2; }
/* rotated "top 15" badge filling the empty top-right of the trusted section,
   straddling up into the portfolio above it */
.trusted__badge { position: absolute; top: clamp(-140px, -9vw, -70px); right: clamp(10px, 4vw, 90px); width: clamp(260px, 32vw, 500px); transform: rotate(30deg); pointer-events: none; z-index: 5; filter: drop-shadow(0 18px 36px rgba(37,35,33,0.28)); }
.manifesto__statement { max-width: 15em; }
.manifesto__row { display: flex; justify-content: flex-end; margin-top: 7vh; }
.manifesto__row-inner { max-width: 34em; display: flex; flex-direction: column; gap: 3.5vh; align-items: flex-start; }

.marquee { overflow: hidden; padding: 6vh 0; background: #FFFFFF; }
.marquee__track { display: flex; align-items: center; gap: clamp(48px, 7vw, 120px); width: max-content; }
.marquee__track img { height: clamp(34px, 4.6vw, 62px); width: auto; object-fit: contain; }

/* wedding-planner logo wall — original colours + aspect, autoplay marquee */
.planner-wall { padding: 4vh 0 5vh; background: var(--porcelain); text-align: center; overflow: hidden; }
.planner-wall__title { margin-bottom: 3vh; }
.marquee--planners { background: transparent; padding: 0; }
.marquee--planners .marquee__track { gap: clamp(48px, 6.5vw, 120px); }
.marquee--planners .marquee__track img { height: clamp(54px, 6vw, 98px); width: auto; object-fit: contain; }

/* testimonials — colourful grabbable quote cards (reuse .carousel mechanics) */
.carousel--quotes { padding-bottom: 12vh; }
.carousel--quotes .carousel__track { align-items: flex-start; }
/* review-style cards: uniform 4:5, tinted 30% of the card's accent colour,
   with an avatar + 5 stars and a <pixel-canvas> layer that shimmers in the
   accent colour on hover/focus */
.quote-card { position: relative; overflow: hidden; flex: none; width: min(84vw, 420px); aspect-ratio: 4 / 5; border-radius: 18px; background: color-mix(in srgb, var(--active-color, var(--gold)) 30%, transparent); color: var(--cream); border: 1px solid rgba(255,249,240,0.16); padding: clamp(24px, 2.6vw, 40px); transition: border-color 0.25s, height 0.5s cubic-bezier(0.22,1,0.36,1); cursor: default; }
.quote-card:hover, .quote-card:focus-visible { border-color: var(--active-color, var(--gold)); outline: none; }
/* long quotes get truncated to fit the 4:5 box with a "[...]" marker —
   click (or Enter/Space) to reveal the full text; the card grows in place
   and .is-expanded lifts the fixed aspect-ratio so it can hold the content */
.quote-card--expandable { cursor: pointer; }
.quote-card.is-expanded { aspect-ratio: unset; }
.quote-card pixel-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.quote-card__inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 2.4vh; height: 100%; }
.quote-card__head { display: flex; align-items: center; gap: 14px; }
.quote-card__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--active-color, var(--gold)); color: #fff; display: grid; place-items: center; font-family: var(--font-ui); font-weight: 600; font-size: 18px; flex: none; overflow: hidden; }
.quote-card--lemon .quote-card__avatar, .quote-card--sky .quote-card__avatar { color: var(--ink); }
.quote-card__avatar--photo { background: none; }
/* extra specificity: this carousel reuses .carousel__track, whose own
   `img { width:auto; max-width:none }` rule would otherwise win and show
   the photo at native size instead of filling the 46px avatar circle */
.quote-card .quote-card__avatar--photo img { width: 100%; height: 100%; max-width: 100%; object-fit: cover; }
.quote-card blockquote p + p { margin-top: 1.6vh; }
.quote-card blockquote em { font-style: normal; font-weight: 600; }
.quote-card__who { display: flex; flex-direction: column; gap: 3px; }
.quote-card__name { font-family: var(--font-ui); font-weight: 600; font-size: 15px; letter-spacing: 0.04em; }
.quote-card__role { font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.7; }
.quote-card__stars { color: #F2B50C; font-size: 19px; letter-spacing: 4px; line-height: 1; }
.quote-card blockquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.05rem, 1.5vw, 1.4rem); line-height: 1.48; color: rgba(255,249,240,0.92); }
.quote-card--coral { --active-color: var(--coral); }
.quote-card--lemon { --active-color: var(--lemon); }
.quote-card--sky { --active-color: var(--sky); }
.quote-card--gold { --active-color: var(--gold); }
.quote-card--citrus { --active-color: var(--citrus); }

/* ============================================================
   ACCLAIM (post-showreel + lobster)
   ============================================================ */
.acclaim { background: var(--section-light); position: relative; overflow: hidden; }
.acclaim__lobster { position: absolute; pointer-events: none; width: clamp(160px, 20vw, 360px); z-index: 1; }
.acclaim__lobster--left { left: -4vw; top: 6vh; transform: rotate(-14deg); }
.acclaim__lobster--right { right: -5vw; bottom: 2vh; transform: rotate(12deg) scaleX(-1); }
.acclaim__body { position: relative; z-index: 2; text-align: center; max-width: 52em; margin-inline: auto; display: flex; flex-direction: column; gap: 4.5vh; align-items: center; }
.acclaim__body .display-md { max-width: 17em; }
.acclaim__body .body-copy { margin-inline: auto; }

/* ============================================================
   METAMORPHOSIS (day → night)
   ============================================================ */
.meta-pivot { position: relative; height: 100svh; overflow: hidden; display: grid; place-items: center; }
.meta-pivot__frame { position: absolute; inset: 0; overflow: hidden; clip-path: inset(11vh 29vw round 4px); }
.meta-pivot__frame img, .meta-pivot__frame canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.meta-pivot__frame .layer-b { opacity: 0; }
.meta-pivot__copy { position: absolute; z-index: 5; text-align: center; display: flex; flex-direction: column; gap: 3vh; align-items: center; opacity: 0; padding-inline: 7vw; }
.meta-pivot__copy h3 { font-size: var(--display-lg); font-family: var(--font-display); color: var(--cream); text-shadow: 0 2px 50px rgba(22,19,15,0.6); }
.meta-pivot__copy h3 em { font-family: var(--font-accent); font-style: italic; color: var(--gold-light); }

/* ============================================================
   REAL WEDDINGS — grabbable carousel
   ============================================================ */
.carousel { position: relative; background: var(--night-deep); color: var(--cream); overflow: hidden; padding: 14vh 0 10vh; }
.carousel__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 4vw; padding: 0 var(--pad-x) 6vh; }
.carousel__head .display-lg { font-weight: 600; text-transform: uppercase; }
.carousel__hint { font-size: 12px; letter-spacing: 0.3em; color: rgba(255,249,240,0.5); text-transform: uppercase; }
.carousel__viewport {
  overflow-x: auto; overflow-y: hidden; cursor: grab;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__viewport.dragging { cursor: grabbing; }
.carousel__track { display: flex; gap: clamp(14px, 1.8vw, 28px); width: max-content; padding: 0 var(--pad-x); align-items: center; }
.carousel__track figure { flex: none; height: 56vh; border-radius: 4px; overflow: hidden; position: relative; }
.carousel__track img { height: 100%; width: auto; max-width: none; display: block; pointer-events: none; }
.carousel__progress { display: flex; align-items: center; gap: 22px; margin: 6vh var(--pad-x) 0; }
.carousel__progress .track { flex: 1; height: 1px; background: rgba(255,249,240,0.18); position: relative; }
.carousel__progress .fill { position: absolute; inset: 0; width: 0%; background: var(--gold); }

/* ============================================================
   WHERE WE SHINE
   ============================================================ */
/* trusted — full-text section on solid white (overflow visible so the
   rotated top-15 badge can straddle the section above it) */
.trusted { background: #FFF8F0; position: relative; overflow: visible; }
.trusted.shine { overflow: visible; }
.shine { position: relative; overflow: hidden; }

.shine__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 5vw, 80px); align-items: center; position: relative; z-index: 2; }
.shine__copy { display: flex; flex-direction: column; gap: 3.4vh; align-items: flex-start; }
.shine__img { border-radius: 4px; overflow: hidden; position: relative; }
.shine__clients { margin-top: 9vh; position: relative; z-index: 2; }
.shine__clients ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); border-top: 1px solid rgba(37,35,33,0.14); }
.shine__clients li { padding: 22px 6px; border-bottom: 1px solid rgba(37,35,33,0.14); font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.65rem); display: flex; align-items: baseline; gap: 14px; }
.shine__clients li .idx { font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.2em; color: var(--gold-deep); }
.shine__cutout { position: absolute; left: -5vw; bottom: -7vh; width: clamp(200px, 23vw, 420px); pointer-events: none; z-index: 1; }

/* ============================================================
   ABOUT — Kevin & Laura (gold section)
   ============================================================ */
.about { background: linear-gradient(160deg, #F6D54E 0%, #EFC93F 45%, #E5B92E 100%); color: var(--ink); position: relative; overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 90px); align-items: center; position: relative; z-index: 2; }
.about__portrait { position: relative; align-self: center; }
.about__copy { display: flex; flex-direction: column; gap: 3vh; align-items: flex-start; }
.about__copy .prose { display: flex; flex-direction: column; gap: 1.35em; color: rgba(37,35,33,0.82); max-width: 36em; }
.about__legs { position: absolute; right: -3vw; bottom: -4vh; width: clamp(160px, 19vw, 360px); pointer-events: none; z-index: 1; transform: rotate(6deg); }
.about__tagline { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(37,35,33,0.65); max-width: 40em; line-height: 2; }
.about .kicker { color: var(--gold-deep); }
.about .kicker::before { background: var(--coral); }

/* ============================================================
   BTS
   ============================================================ */
.bts { background: var(--night); color: var(--cream); position: relative; overflow: hidden; }
.bts__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 80px); align-items: center; position: relative; z-index: 2; }
.bts__video { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 9/16; max-height: 74vh; width: 100%; max-width: 400px; background: #000; }
.bts__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.bts blockquote { font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 2.2rem); line-height: 1.35; max-width: 24em; }
.bts blockquote em { font-family: var(--font-accent); font-style: italic; color: var(--gold-light); }
.bts figcaption { margin-top: 3.5vh; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,249,240,0.55); }

/* planners strip — coral */
.planners { background: var(--coral); color: var(--cream); text-align: center; padding-block: 9vh; }
.planners .inner { max-width: 46em; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 3.4vh; }
.planners .kicker { color: var(--cream); }
.planners .kicker::before { background: var(--lemon); }
.planners .body-copy { color: rgba(255,249,240,0.88); }
.planners .btn--gold { background: var(--night); }
.planners .btn--gold:hover { background: var(--night-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
/* Begin Your Journey — standalone dark CTA band that sits above the footer */
.begin { background: var(--night-deep); color: var(--cream); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 5vh 4vw; padding: 13vh var(--pad-x); }
.begin .kicker { color: var(--gold-light); }
.footer__cta-title { max-width: 9em; color: #fff; }
/* footer proper — solid sky blue, ink text */
.footer { background: var(--sky); color: var(--ink); position: relative; overflow: hidden; }
.footer .kicker { color: var(--gold-deep); }
.footer__begin { width: 128px; height: 128px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; transition: background 0.3s; flex: none; }
.footer__begin:hover { background: var(--coral-hover); }
.footer__cols { display: grid; grid-template-columns: repeat(3, minmax(140px, 1fr)); gap: 5vh 4vw; padding: 8vh var(--pad-x); font-size: 13px; }
.footer__cols h4 { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 2vh; font-weight: 500; }
.footer__cols a { display: block; padding: 5px 0; color: rgba(37,35,33,0.72); }
.footer__cols a:hover { color: var(--coral); }
.insta { padding: 0 var(--pad-x) 8vh; }
.insta__grid { columns: 6; column-gap: 10px; margin-top: 3vh; }
.insta__grid a { position: relative; overflow: hidden; border-radius: 3px; display: block; break-inside: avoid; margin-bottom: 10px; }
.insta__grid img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.insta__grid a:hover img { transform: scale(1.07); }
.footer__wordmark { display: block; text-align: center; font-family: var(--font-display); line-height: 0.85; letter-spacing: 0.02em; white-space: nowrap; color: var(--ink); user-select: none; padding-bottom: 2vh; transition: color 0.35s; }
a.footer__wordmark:hover { color: var(--coral); }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 24px var(--pad-x) 30px; border-top: 1px solid rgba(37,35,33,0.16); font-size: 10px; letter-spacing: 0.14em; color: rgba(37,35,33,0.55); text-transform: uppercase; }

/* ============================================================
   SUB-PAGES
   ============================================================ */
.page-hero { position: relative; min-height: 86svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--night-deep); color: var(--cream); }
/* full video page-hero: responsive 21:9 band, video fully visible */
.page-hero--full { min-height: 0; height: calc(100vw / 3); }
.page-hero--full .page-hero__bg { inset: 0; }
.page-hero--full .page-hero__content { padding: 0 var(--pad-x) 4vh; }
.page-hero--full .page-hero__title { font-size: clamp(1.5rem, 5vw, 7.5rem); }
@media (max-width: 760px) {
  .page-hero--full .page-hero__sub, .page-hero--full .kicker { display: none; }
  .page-hero--full .page-hero__content { padding-bottom: 2vh; gap: 0.6vh; }
}
.page-hero__bg { position: absolute; inset: -10% 0; }
.page-hero__bg img, .page-hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,19,15,0.85) 0%, rgba(22,19,15,0.15) 55%); }
.page-hero__content { position: relative; z-index: 2; width: 100%; padding: 22vh var(--pad-x) 8vh; display: flex; flex-direction: column; gap: 2.6vh; align-items: flex-start; }
.page-hero__title { font-size: clamp(2.8rem, 7.5vw, 7.5rem); font-family: var(--font-display); line-height: 0.95; max-width: 11em; }
.page-hero__title em { font-family: var(--font-accent); font-style: italic; }
.page-hero__sub { display: flex; flex-wrap: wrap; gap: 12px 34px; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,249,240,0.7); }

.on-night { background: var(--night); color: var(--cream); }
.on-deep { background: var(--night-deep); color: var(--cream); }

.feature__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
/* two vertical (9:16) films, one at each edge of the content column, never wider than the text block */
.vidpair { display: flex; justify-content: space-between; gap: clamp(16px, 5vw, 80px); margin-bottom: 7vh; }
.vidpair__item { position: relative; flex: 0 1 clamp(180px, 30%, 360px); aspect-ratio: 9 / 16; background: #000; border-radius: 4px; overflow: hidden; }
.vidpair__item iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.prose { display: flex; flex-direction: column; gap: 1.4em; color: color-mix(in srgb, currentColor 82%, transparent); max-width: 38em; }
.vendor-link { color: inherit; text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--coral) 55%, transparent); text-underline-offset: 3px; transition: text-decoration-color 0.25s ease, color 0.25s ease; }
.vendor-link:hover { color: var(--coral); text-decoration-color: var(--coral); }
.feature__meta { border-top: 1px solid rgba(128,120,110,0.3); font-size: 13px; }
.feature__meta .row { display: flex; justify-content: space-between; gap: 20px; padding: 15px 2px; border-bottom: 1px solid rgba(128,120,110,0.3); }
.feature__meta .row span:first-child { color: var(--gold-deep); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; padding-top: 3px; flex: none; }
.on-night .feature__meta .row span:first-child, .on-deep .feature__meta .row span:first-child { color: var(--gold-light); }
.feature__meta .val { text-align: right; }
.feature__actions { display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; }

/* masonry: every image keeps its native aspect ratio — never cropped */
.gallery-grid { columns: 3; column-gap: clamp(12px, 1.6vw, 24px); }
.gitem { break-inside: avoid; margin-bottom: clamp(12px, 1.6vw, 24px); display: block; width: 100%; }
.gitem img { width: 100%; height: auto; object-fit: unset; }
/* even grid variant — for galleries whose images share one aspect ratio, so
   they line up in clean rows/columns (no crop needed, uniform sources) */
.gallery-grid--even { columns: unset; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 24px); }
.gallery-grid--even .gitem { margin-bottom: 0; break-inside: auto; }
figure.gitem { position: relative; }
figure.gitem figcaption { position: absolute; left: 18px; bottom: 14px; z-index: 3; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream); text-shadow: 0 1px 14px rgba(0,0,0,0.5); }

.trailer { position: relative; aspect-ratio: 16/9; cursor: pointer; background: #000; }
.trailer .thumb { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.4s, transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.trailer:hover .thumb { opacity: 1; transform: scale(1.02); }
.trailer__play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; }
.trailer__play .disc { width: 92px; height: 92px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.3s; }
.trailer__play .disc svg { width: 30px; height: 30px; }
.trailer:hover .trailer__play .disc { transform: scale(1.1); background: var(--coral-hover); }
.trailer__label { position: absolute; left: 20px; bottom: 16px; z-index: 2; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream); }
.trailer iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4; }

.nextproject { display: block; text-align: center; padding: 14vh var(--pad-x); background: var(--night); color: var(--cream); position: relative; overflow: hidden; }
.nextproject .np-title { font-family: var(--font-display); font-size: var(--display-lg); margin-top: 2vh; transition: color 0.4s; }
.nextproject:hover .np-title { color: var(--gold-light); }
.nextproject .np-title em { font-style: normal; }

/* team cards (studio) */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 64px) clamp(28px, 4vw, 64px); }
.team__card { display: flex; flex-direction: column; gap: 2.4vh; }
.team__card .portrait { align-self: start; }
.team__card h3 { font-family: var(--font-display); font-size: var(--display-sm); }
.team__card .role { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); }
.team__card p { color: var(--ink-soft); max-width: 34em; }

/* journal */
.journal-list { display: flex; flex-direction: column; }
.jitem { display: grid; grid-template-columns: clamp(110px, 14vw, 180px) 1fr auto; gap: 4vw; align-items: center; padding: 4.5vh 0; border-bottom: 1px solid rgba(37,35,33,0.14); transition: background 0.3s; position: relative; }
.jitem:first-child { border-top: 1px solid rgba(37,35,33,0.14); }
.jitem__thumb { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 4px; background: var(--porcelain-alt); }
.jitem__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.jitem:hover .jitem__thumb img { transform: scale(1.05); }
.jitem__body { display: flex; flex-direction: column; gap: 1.4vh; max-width: 44em; }
.jitem .jdate { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-muted); }
.jitem h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.6rem); line-height: 1.12; transition: color 0.3s; font-weight: 500; }
.jitem:hover h2 { color: var(--coral); }
.jitem .jexcerpt { color: var(--ink-soft); }
.jitem .jarrow { font-size: 22px; color: var(--gold); transition: transform 0.35s; align-self: center; }
.jitem:hover .jarrow { transform: translateX(8px); }
.jitem .jtag { position: absolute; top: 4.5vh; right: 0; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); }

/* journal pagination */
.pagination { display: flex; align-items: center; justify-content: space-between; gap: 16px 24px; flex-wrap: wrap; margin-top: 7vh; }
.pagination__nums { display: flex; gap: 6px; flex-wrap: wrap; }
.jpage { font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); padding: 11px 15px; border-radius: 999px; border: 1px solid transparent; transition: color 0.3s, background 0.3s, border-color 0.3s; white-space: nowrap; }
.pagination__nums .jpage { min-width: 42px; text-align: center; }
.jpage:hover { color: var(--coral); border-color: rgba(37,35,33,0.16); }
.jpage--current { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.jpage--current:hover { color: var(--cream); }
.jpage--edge { border-color: rgba(37,35,33,0.16); color: var(--ink); }
.jpage--edge:hover { border-color: var(--coral); color: var(--coral); }
.jpage.is-disabled { opacity: 0.32; pointer-events: none; }
@media (max-width: 600px) {
  .pagination { justify-content: center; }
  .pagination__nums { order: -1; width: 100%; justify-content: center; }
}

.article { max-width: 46em; margin-inline: auto; }
.article .prose { max-width: none; }
.article .prose p:first-of-type::first-letter { font-family: var(--font-display); font-size: 3.2em; float: left; line-height: 0.85; padding-right: 0.12em; color: var(--coral); }
.article__meta { display: flex; flex-wrap: wrap; gap: 10px 30px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-muted); margin: 3vh 0 6vh; }
/* optional lead film + photo gallery on a journal article */
.article__film { max-width: 64em; margin: 0 auto 7vh; }
.vidpair--article { max-width: 64em; margin: -3vh auto 7vh; }
.article__film-frame { position: relative; aspect-ratio: 16/9; background: #000; }
.article__film-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.article__gallery { margin-top: 4vh; }
.article__gallery-title { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2.4rem); font-weight: 500; margin-top: 9vh; }
/* external call-to-action inside an article (e.g. masterclass sign-up) */
.article-cta { margin-top: 6vh; padding: clamp(28px, 4vw, 48px); border: 1px solid rgba(37,35,33,0.14); border-radius: 6px; background: var(--porcelain-alt); text-align: center; }
.article-credits { max-width: 46em; }
.article-cta__note { margin-top: 2.4vh; font-size: 0.9rem; color: var(--ink-soft); }
/* per-paragraph venue image rows (guide-style journal articles) */
.venue-row { display: grid; gap: clamp(14px, 1.8vw, 26px); margin: 5vh 0; }
.venue-row--2 { grid-template-columns: repeat(2, 1fr); }
.venue-row--3 { grid-template-columns: repeat(3, 1fr); }
.venue-figure img { width: 100%; height: auto; display: block; }
.venue-figure figcaption { margin-top: 1.6vh; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-muted); }
/* one image beneath its own venue paragraph, width set inline to match the copy length */
.venue-figure--solo { margin: 4vh auto 7vh; }
@media (max-width: 640px) {
  .venue-row--2, .venue-row--3 { grid-template-columns: 1fr; }
  .venue-figure--solo { max-width: 100% !important; }
}

/* Real Weddings index — one editorial card per wedding: copy on the left,
   a row of three thumbnails on the right, alternating sides for rhythm. */
.rw-list { display: flex; flex-direction: column; gap: clamp(48px, 8vh, 110px); margin-top: 6vh; }
.rw-card { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.rw-card:nth-child(even) .rw-card__text { order: 2; }
.rw-card__title { font-family: var(--font-display); font-size: clamp(2rem, 4.6vw, 3.6rem); font-weight: 500; line-height: 0.98; text-transform: uppercase; margin: 1.6vh 0 0; }
.rw-card__title em { font-family: var(--font-accent); font-style: italic; text-transform: none; color: var(--coral); }
.rw-card__title a { color: inherit; transition: color 0.3s ease; }
.rw-card__title a:hover { color: var(--coral); }
.rw-card__excerpt { margin-top: 2.4vh; max-width: 34em; color: color-mix(in srgb, currentColor 82%, transparent); }
.rw-card__more { color: var(--coral); font-weight: 500; }
.rw-card__cta { margin-top: 3.4vh; }
.rw-card__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 1vw, 14px); }
.rw-thumb { position: relative; overflow: hidden; border-radius: 4px; background: var(--porcelain-alt); aspect-ratio: 3 / 4; }
.rw-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.rw-card__thumbs:hover .rw-thumb img { transform: scale(1.04); }
@media (max-width: 760px) {
  .rw-card { grid-template-columns: 1fr; gap: clamp(20px, 4vh, 40px); }
  .rw-card:nth-child(even) .rw-card__text { order: 0; }
  .rw-card__excerpt { max-width: none; }
}

/* offers (gettoknowusmore) — same blue as the GASP film's last frame,
   so the scrub fades straight into this section with no visible seam */
.offers { background: #80A8CE; color: var(--ink); }
.offers .kicker { color: var(--night-deep); }
.offers .kicker::before { background: var(--night-deep); }
.offers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); margin-top: 6vh; }
.offers__col h3 { font-family: var(--font-display); font-size: clamp(1.2rem, 1.6vw, 1.5rem); font-weight: 500; margin-bottom: 3vh; }
.offers__list { list-style: none; display: flex; flex-direction: column; gap: 1.6vh; }
.offers__list li { position: relative; padding-left: 1.6em; line-height: 1.5; }
.offers__list li::before { content: "—"; position: absolute; left: 0; color: var(--night-deep); }
.offers__price { margin-top: 3.5vh; font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; }

/* extras (gettoknowusmore) — split screen: DOP on white, Red Carpet on coral */
.extras { display: grid; grid-template-columns: 1fr 1fr; }
.extras__col { padding: 13vh clamp(24px, 5vw, 70px) 10vh; display: flex; flex-direction: column; gap: 6vh; }
.extras__col--dop { background: var(--porcelain); color: var(--ink); }
.extras__col--redcarpet { background: var(--coral); color: var(--cream); }
.extras__col--redcarpet .kicker { color: var(--cream); }
.extras__col--redcarpet .kicker::before { background: var(--lemon); }
.extras__col--redcarpet .body-copy { color: rgba(255,249,240,0.88); }
.extras__media { display: flex; flex-direction: column; gap: 2.2vh; }
.extras__media img { width: 100%; height: auto; border-radius: 4px; display: block; }
/* the slow-mo robot shot is equipment, not a scene — keep it smaller and
   centred so it reads as a supporting detail, not equal weight to the rest */
.extras__media--sm { width: 55%; margin-inline: auto; }
@media (max-width: 600px) { .extras__media--sm { width: 75%; } }
@media (max-width: 900px) {
  .extras { grid-template-columns: 1fr; }
}

/* contact */
.contact-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 90px); align-items: start; }
.contact-side { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 3vh; }
.photo-credit { margin-top: -1.4vh; font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); text-align: center; }
.contact-form { display: flex; flex-direction: column; gap: 32px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-deep); }
.field label .req { color: var(--coral); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: transparent;
  border: 0; border-bottom: 1px solid rgba(37,35,33,0.3); padding: 10px 2px; border-radius: 0;
  transition: border-color 0.3s; appearance: none; -webkit-appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238D6430' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 26px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
form .form-note { font-size: 12px; color: var(--ink-muted); letter-spacing: 0.04em; }

/* to-top */
.totop { position: fixed; right: clamp(18px, 2.6vw, 34px); bottom: clamp(18px, 2.6vw, 34px); z-index: 880; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(37,35,33,0.22); background: color-mix(in srgb, var(--porcelain) 85%, transparent); backdrop-filter: blur(8px); box-shadow: 0 10px 30px rgba(22,19,15,0.18); color: var(--coral); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.35s, visibility 0.35s, transform 0.35s, background 0.3s; }
.totop.show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.totop svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }

/* blockbuster poster wall — 3 per row, native aspect ratios */
.posters { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 26px); align-items: start; }
.posters figure { border-radius: 4px; overflow: hidden; box-shadow: 0 24px 60px rgba(22,19,15,0.3); }
.posters img { width: 100%; height: auto; display: block; }

/* citrus section (studio VFX) — plain orange, lemon title */
.on-citrus { background: var(--citrus); color: var(--cream); }
.on-citrus .kicker { color: var(--cream); }
.on-citrus .kicker::before { background: var(--lemon); }
.on-citrus .display-lg { color: var(--ink); }
.on-citrus .display-lg em { color: var(--ink); }
.on-citrus .feature__meta .row span:first-child { color: var(--lemon); }
.on-citrus .feature__meta, .on-citrus .feature__meta .row { border-color: rgba(255,249,240,0.4); }

/* sky section (studio philosophy) */
.on-sky { background: var(--sky); color: var(--ink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .rail { display: none; }
  .team { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  :root { --nav-h: 72px; --nav-h-compact: 60px; }
  .nav { padding-inline: 20px; }
  .pad-section { padding-block: 11vh; }
  .shine__grid, .about__grid, .bts__grid, .contact-wrap, .feature__grid { grid-template-columns: 1fr; }
  .contact-side { position: static; }
  .meta-pivot__frame { clip-path: inset(14vh 9vw round 4px); }
  .duet__stage { grid-template-columns: 1fr; }
  .duet__cover { width: 100%; margin: 0; }
  .hit { min-height: unset; padding: 12vh var(--pad-x) 14vh; display: block; }
  .hit__title { margin: 8vh 0; }
  .hit__videos--left, .hit__videos--right { position: relative; inset: auto; width: min(70vw, 340px); }
  .hit__videos--left { margin-right: auto; }
  .hit__videos--right { margin-left: auto; }
  .carousel__track figure { height: 38vh; }
  .gallery-grid { columns: 2; }
  .gallery-grid--even { grid-template-columns: repeat(2, 1fr); }
  .insta__grid { columns: 3; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .jitem { grid-template-columns: clamp(88px, 26vw, 128px) 1fr; gap: 5vw; align-items: start; }
  .jitem .jarrow { display: none; }
  .jitem .jtag { right: 0; }
  .jitem__body { gap: 1vh; padding-top: 2vh; }
  .film__numerals { display: none; }
  .statement p { letter-spacing: 0.14em; }
  .bts__video { max-width: 100%; }
  /* full-bleed YouTube films: show the whole 16:9 frame, never cropped */
  .ytfull__media { inset: auto 0; top: 50%; height: calc(100vw * 9 / 16); transform: translateY(-50%); }
  .ytfull__media iframe { width: 100vw; height: 100%; min-width: 0; min-height: 0; top: 0; left: 0; transform: none; }
  .ytfull__label { bottom: 3vh; }
  .ytfull__cta { right: auto; left: clamp(20px, 4vw, 60px); bottom: auto; top: calc(var(--nav-h) + 2vh); }
  /* display titles: extra breathing room on small screens */
  .display-xl, .display-lg, .display-md { line-height: 1.06; }
}
@media (max-width: 540px) {
  .field.split { grid-template-columns: 1fr; }
  .footer__begin { width: 104px; height: 104px; }
  .shine__clients ul { grid-template-columns: repeat(2, 1fr); column-gap: 14px; }
  .shine__clients li { font-size: 0.92rem; padding: 14px 4px; gap: 8px; }
  .gallery-grid { columns: 1; }
  .gallery-grid--even { grid-template-columns: 1fr; }
  .nav__logo { height: 52px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
