/* ==========================================================================
   AMPHITRITE PRODUCTIONS — Cinematic Luxury Gold & Black Theme (v3)
   A dark cinema hall lit by warm gold light. Huge type. Editorial scale.
   ========================================================================== */

:root {
  --bg: #030201;
  --bg-1: #070502;
  --charcoal-900: #14100a;
  --charcoal-800: #1c160f;
  --charcoal-700: #241c12;

  --gold-700: #6b4a12;
  --gold-500: #c9a227;
  --gold-400: #e0b64a;
  --gold-bright: #f2ce6e;
  --champagne-300: #f5dfa0;

  --text-0: #f7f3ea;
  --text-1: #c3b8a4;
  --text-2: #8a7f6c;
  --text-3: #4a4032;

  --line: rgba(201, 162, 39, 0.14);
  --line-strong: rgba(201, 162, 39, 0.32);

  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1560px;
  --gutter: clamp(24px, 5.5vw, 96px);
  --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html, body { background: var(--bg); }

body {
  font-family: var(--font-body);
  color: var(--text-0);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--gold-bright); color: #030201; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--champagne-300);
  opacity: 0.9;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold-bright);
  display: inline-block;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.015em;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  color: var(--text-0);
  text-transform: uppercase;
}

.section-pad { padding: clamp(90px, 11vw, 160px) 0; position: relative; }
.section-pad-tight { padding: clamp(90px, 10vw, 140px) 0; position: relative; }

.btn {
  --btn-fg: var(--text-0);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 20px 34px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--btn-fg);
  overflow: hidden;
  transition: border-color 0.4s var(--ease-cinema), color 0.4s var(--ease-cinema);
  isolation: isolate;
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-bright));
  transform: translateY(101%);
  transition: transform 0.55s var(--ease-cinema);
  z-index: -1;
  border-radius: inherit;
}
.btn:hover { border-color: transparent; color: #030201; }
.btn:hover::before { transform: translateY(0); }
.btn-ghost { border-color: var(--line-strong); }
.btn-arrow { transition: transform 0.4s var(--ease-cinema); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 300;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 290;
  box-shadow: inset 0 0 20vw 3vw rgba(0,0,0,0.6);
}

/* --------------------------- photographic grading -------------------------
   Shared treatment for every real photograph on the site so temporary
   royalty-free stock reads as one consistent, art-directed blue world
   regardless of the source image's original lighting/color. */
.photo-frame { position: relative; overflow: hidden; background: var(--charcoal-900); box-shadow: inset 0 0 8vw 1vw rgba(0,0,0,0.35); }
.photo-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.9) brightness(0.72) contrast(1.05);
}
.photo-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(26,20,12,0.6), rgba(3,2,1,0.78));
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(65% 55% at 12% 0%, rgba(242,206,110,0.16), transparent 65%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-bright));
  z-index: 510;
  box-shadow: 0 0 12px rgba(242,206,110,0.6);
}

/* ------------------------------- preloader -------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #030201;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.pre-mark {
  width: auto; height: 64px;
  opacity: 0;
  filter: drop-shadow(0 0 18px rgba(242,206,110,0.5));
}
.pre-word {
  margin-top: 26px;
  font-family: var(--font-display);
  letter-spacing: 0.5em;
  font-size: 0.72rem;
  color: var(--text-2);
  opacity: 0;
  text-transform: uppercase;
}
.pre-sweep {
  position: absolute;
  top: 0; bottom: 0;
  left: -30%;
  width: 30%;
  background: linear-gradient(100deg, transparent 20%, rgba(242,206,110,0.18) 50%, transparent 80%);
  transform: translateX(0);
}

/* ---------------------------- custom cursor ---------------------------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 14px 2px rgba(242,206,110,0.7);
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-cinema), height 0.35s var(--ease-cinema);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  pointer-events: none;
  z-index: 998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-cinema), height 0.4s var(--ease-cinema), border-color 0.4s var(--ease-cinema), background-color 0.4s var(--ease-cinema);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--text-0);
}
.cursor-ring span { opacity: 0; transition: opacity 0.25s; }
.cursor-ring.is-active { width: 90px; height: 90px; border-color: var(--gold-bright); background: rgba(242,206,110,0.07); }
.cursor-ring.is-active span { opacity: 1; }
.cursor.is-active { width: 0; height: 0; box-shadow: none; }
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

/* --------------------------------- nav ---------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 34px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.5s var(--ease-cinema), background-color 0.5s var(--ease-cinema), backdrop-filter 0.5s var(--ease-cinema), border-color 0.5s var(--ease-cinema);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 18px var(--gutter);
  background: rgba(2, 3, 4, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.nav-logo img { height: 32px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}
.nav-link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-1);
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold-bright);
  transition: width 0.35s var(--ease-cinema);
}
.nav-link:hover { color: var(--text-0); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 11px 22px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}
.nav-cta:hover { border-color: var(--gold-bright); color: var(--champagne-300); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  z-index: 600;
}
.nav-burger span { display: block; height: 1px; background: var(--text-0); transition: transform 0.35s var(--ease-cinema), opacity 0.3s; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 480;
  background: #030201;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-cinema);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 80% 20%, rgba(201,162,39,0.22), transparent 70%);
  pointer-events: none;
}
.mobile-menu a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3rem;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-1);
  text-transform: uppercase;
}

/* ------------------------------ services mega-menu -------------------------- */
.nav-services { position: relative; display: flex; align-items: center; }
.nav-services-trigger .caret { display: inline-block; margin-left: 6px; font-size: 0.6em; transition: transform 0.3s var(--ease-cinema); }
.nav-services:hover .caret, .nav-services:focus-within .caret { transform: rotate(180deg); }
.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(760px, 88vw);
  background: rgba(3,2,1,0.97);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-cinema), transform 0.35s var(--ease-cinema);
  z-index: 50;
  overflow: hidden;
}
.nav-services:hover .mega-menu,
.nav-services:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner { display: grid; grid-template-columns: 1.3fr 1fr; align-items: stretch; }
.mega-menu-list { padding: 12px; }
.mega-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.mega-item:hover, .mega-item:focus-visible { background: rgba(201,162,39,0.09); }
.mega-num { font-family: var(--font-display); font-size: 0.75rem; color: var(--text-2); transition: color 0.3s; }
.mega-item:hover .mega-num { color: var(--gold-bright); }
.mega-text { display: flex; flex-direction: column; gap: 5px; }
.mega-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1rem; letter-spacing: -0.005em; color: var(--text-0); }
.mega-tagline { font-size: 0.82rem; color: var(--text-2); }
.mega-preview { position: relative; overflow: hidden; min-height: 300px; border-left: 1px solid var(--line); }
.mega-preview img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) brightness(0.6) contrast(1.05);
  transition: opacity 0.3s var(--ease-cinema);
}
.mega-preview::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,20,12,0.35), rgba(3,2,1,0.7));
  pointer-events: none;
}

/* mobile services accordion */
.mobile-services { border-bottom: 1px solid var(--line); }
.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3rem;
  padding: 16px 0;
  color: var(--text-1);
  text-transform: uppercase;
}
.mobile-services-toggle .caret { font-size: 0.45em; transition: transform 0.3s var(--ease-cinema); }
.mobile-services.is-open .mobile-services-toggle { color: var(--gold-bright); }
.mobile-services.is-open .mobile-services-toggle .caret { transform: rotate(180deg); }
.mobile-sub { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-cinema); }
.mobile-services.is-open .mobile-sub { max-height: 420px; }
.mobile-sub-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 12px 4px 12px 22px;
}
.mobile-sub-link .arrow { color: var(--gold-bright); }

@media (max-width: 1080px) {
  .mega-menu { width: min(600px, 88vw); }
  .mega-tagline { display: none; }
}

/* -------------------------------- hero ----------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #030201;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.85) brightness(0.62) contrast(1.06);
  transform: scale(1.08);
  animation: heroKenBurns 34s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.08) translate3d(0,0,0); }
  100% { transform: scale(1.16) translate3d(-1.4%, -1%, 0); }
}
.hero-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(24,18,10,0.55), rgba(3,2,1,0.82));
  mix-blend-mode: multiply;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(90% 70% at 72% 18%, rgba(242,206,110,0.24), transparent 60%);
  mix-blend-mode: screen;
}
.hero-atmosphere {
  position: absolute;
  inset: -10%;
  z-index: 1;
  background:
    radial-gradient(38% 42% at 74% 16%, rgba(242,206,110,0.22), transparent 70%),
    radial-gradient(32% 36% at 18% 78%, rgba(201,162,39,0.22), transparent 70%),
    radial-gradient(60% 50% at 50% 100%, rgba(90,63,15,0.3), transparent 70%);
  animation: driftAtmo 46s ease-in-out infinite alternate;
}
@keyframes driftAtmo {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.06); }
}
.hero-rays {
  position: absolute;
  inset: -30%;
  z-index: 1;
  background: conic-gradient(from 200deg at 75% 18%,
    transparent 0deg, rgba(245,223,160,0.14) 6deg, transparent 16deg,
    transparent 40deg, rgba(242,206,110,0.1) 46deg, transparent 58deg,
    transparent 100deg);
  mix-blend-mode: screen;
  animation: raySweep 60s linear infinite;
  pointer-events: none;
}
@keyframes raySweep {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-flare {
  position: absolute;
  top: -8%;
  right: -4%;
  width: 46vw;
  height: 46vw;
  max-width: 720px;
  max-height: 720px;
  z-index: 2;
  background: radial-gradient(circle, rgba(245,223,160,0.35) 0%, rgba(242,206,110,0.1) 32%, transparent 65%);
  filter: blur(2px);
  pointer-events: none;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(3,2,1,0.1) 0%, rgba(3,2,1,0.25) 45%, #030201 100%);
  pointer-events: none;
}
.hero-frame { position: absolute; inset: clamp(16px,2.4vw,34px); z-index: 3; pointer-events: none; }
.hero-frame .edge { position: absolute; background: var(--line-strong); }
.hero-frame .edge-top { top: 0; left: 0; right: 0; height: 1px; }
.hero-frame .edge-bottom { bottom: 0; left: 0; right: 0; height: 1px; }
.hero-frame .tick { position: absolute; width: 18px; height: 18px; }
.hero-frame .tick::before, .hero-frame .tick::after { content: ""; position: absolute; background: var(--champagne-300); opacity: 0.7; }
.hero-frame .tick::before { width: 100%; height: 1px; top: 0; left: 0; }
.hero-frame .tick::after { width: 1px; height: 100%; top: 0; left: 0; }
.hero-frame .tl { top: 0; left: 0; }
.hero-frame .tr { top: 0; right: 0; transform: scaleX(-1); }
.hero-frame .bl { bottom: 0; left: 0; transform: scaleY(-1); }
.hero-frame .br { bottom: 0; right: 0; transform: scale(-1); }

.hero-timecode {
  position: absolute;
  left: clamp(16px,2.4vw,34px);
  bottom: clamp(16px,2.4vw,34px);
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-timecode .rec-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(242,206,110,0.8);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(64px, 8vw, 120px);
}
.hero-eyebrow { margin-bottom: 26px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero-title .line { overflow: hidden; display: block; }
.hero-title .line span { display: block; }
.hero-word-1 {
  font-size: clamp(2.2rem, 9vw, 7.2rem);
  line-height: 0.92;
  color: var(--text-0);
  white-space: nowrap;
}
.hero-word-2 {
  font-size: clamp(2.6rem, 11.8vw, 9.6rem);
  line-height: 0.86;
  letter-spacing: -0.035em;
  white-space: nowrap;
  background: linear-gradient(100deg, #e8f7ff 0%, var(--champagne-300) 35%, var(--gold-400) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-word-solo {
  font-size: clamp(1.8rem, 8.5vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  white-space: nowrap;
  background: linear-gradient(100deg, #fbf3e2 0%, var(--champagne-300) 35%, var(--gold-400) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-statement {
  margin-top: 34px;
  max-width: 780px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  color: var(--text-1);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.hero-meta {
  margin-top: 20px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--text-2);
  text-transform: uppercase;
}
.hero-ctas {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-scroll-cue {
  position: absolute;
  right: clamp(16px,2.4vw,34px);
  bottom: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-2);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll-cue .line-drop {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold-bright), transparent);
}

/* ------------------------------ hero portal -------------------------------
   Desktop-only signature visual: an abstract lens / optical portal built
   entirely from SVG + CSS, no imagery, no Three.js. */
.hero-portal {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 38vw;
  max-width: 620px;
  min-width: 380px;
  aspect-ratio: 1 / 1;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}
.portal-glow {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201,162,39,0.16), transparent 72%);
  filter: blur(6px);
}
.portal-svg { position: relative; width: 100%; height: 100%; overflow: visible; }
.portal-layer,
.ring-a, .ring-b, .ring-c, .beam-arc {
  transform-origin: 300px 300px;
  transform-box: view-box;
}
.portal-outer { animation: portalSpinSlow 130s linear infinite; }
.ring-a { animation: portalSpinSlow 95s linear infinite; }
.ring-b { animation: portalSpinSlow 74s linear infinite reverse; }
.ring-c { animation: portalSpinSlow 52s linear infinite; }
@keyframes portalSpinSlow { to { transform: rotate(360deg); } }
.beam-arc {
  stroke-dasharray: 70 1100;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(242,206,110,0.7));
  animation: portalSpinSlow 9s linear infinite;
}
.portal-iris { animation: portalBreathe 8s ease-in-out infinite; }
@keyframes portalBreathe {
  0%, 100% { transform: scale(0.94); }
  50% { transform: scale(1.05); }
}
.portal-markers .marker {
  font-size: 11px;
  letter-spacing: 0.18em;
  fill: var(--champagne-300);
  opacity: 0.4;
}
.portal-particles { position: absolute; inset: 0; }
.portal-particles .p-orbit { position: absolute; top: 50%; left: 50%; width: 0; height: 0; }
.portal-particles .p-dot {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 3px;
  margin: -1.5px 0 0 -1.5px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 6px 1px rgba(242,206,110,0.7);
  opacity: 0.75;
}
@keyframes portalOrbitCW { to { transform: rotate(360deg); } }
@keyframes portalOrbitCCW { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

@media (max-width: 999px) {
  .hero-portal { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .portal-outer, .ring-a, .ring-b, .ring-c, .portal-beam-ring, .portal-iris,
  .portal-particles .p-orbit { animation: none !important; }
}

/* -------------------------------- about ---------------------------------- */
.about {
  position: relative;
  border-top: 1px solid var(--line);
}
.about::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -10%;
  transform: translateX(-50%);
  width: 60vw; height: 30vw;
  max-width: 800px; max-height: 420px;
  background: radial-gradient(closest-side, rgba(201,162,39,0.18), transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.about > .container { position: relative; z-index: 1; }
.about-statement {
  font-size: clamp(2.6rem, 7vw, 6rem);
  max-width: 18ch;
}
.about-row {
  margin-top: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: end;
}
.about-copy p {
  color: var(--text-1);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  max-width: 42ch;
}
.about-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--text-0);
  line-height: 1.4;
  border-left: 2px solid var(--gold-bright);
  padding-left: 24px;
}
.about-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
}
.about-visual {
  position: relative;
  margin-top: clamp(64px, 8vw, 110px);
  margin-bottom: clamp(-90px, -7vw, -40px);
  aspect-ratio: 20 / 11;
  overflow: hidden;
  border: 1px solid var(--line);
  clip-path: inset(0 0 0 0);
  z-index: 2;
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 60% 30%;
  filter: saturate(0.88) brightness(0.68) contrast(1.05);
  transform: scale(1.08);
}
.about-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(26,20,12,0.5), rgba(3,2,1,0.72));
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.about-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 55% at 14% 0%, rgba(242,206,110,0.16), transparent 65%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
.about-visual .frame-ring { position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,0.14); pointer-events: none; z-index: 2; }
.about-visual .coord { z-index: 2; }
.about-visual .coord {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--text-0);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ------------------------------- services --------------------------------- */
.services-list { margin-top: clamp(50px,6vw,80px); border-top: 1px solid var(--line); }
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: clamp(150px, 19vh, 240px);
  padding: clamp(20px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
}
.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201,162,39,0.16), transparent 65%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-cinema);
}
.service-row:hover::before, .service-row.is-touch-active::before { opacity: 1; }
.service-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-2);
  transition: color 0.4s;
  z-index: 2;
}
.service-title-wrap { position: relative; z-index: 2; }
.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6.4vw, 5.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-1);
  transition: color 0.45s var(--ease-cinema), transform 0.55s var(--ease-cinema);
}
.service-tagline {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--text-2);
  max-width: 46ch;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease-cinema), transform 0.4s var(--ease-cinema);
}
.service-arrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  transition: color 0.4s, transform 0.4s var(--ease-cinema);
}
.service-row .service-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.7s var(--ease-cinema);
  pointer-events: none;
}
.service-row .service-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) brightness(0.64) contrast(1.05);
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-cinema);
}
.service-row .service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 60% at 85% 15%, rgba(242,206,110,0.15), transparent 65%);
  mix-blend-mode: screen;
}
.service-row .service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,2,1,0.94) 0%, rgba(3,2,1,0.55) 55%, rgba(3,2,1,0.25) 100%);
}
.service-row:hover .service-media,
.service-row.is-touch-active .service-media { opacity: 1; }
.service-row:hover .service-media img,
.service-row.is-touch-active .service-media img { transform: scale(1); }
.service-row:hover .service-num,
.service-row.is-touch-active .service-num { color: var(--champagne-300); }
.service-row:hover .service-title,
.service-row.is-touch-active .service-title { color: var(--text-0); transform: translateX(18px); }
.service-row:hover .service-tagline,
.service-row.is-touch-active .service-tagline { opacity: 1; transform: translateY(0); }
.service-row:hover .service-arrow,
.service-row.is-touch-active .service-arrow { color: var(--champagne-300); transform: translateX(6px); }

/* ---------------------------------- slate ----------------------------------- */
.slate-intro {
  margin-top: 24px;
  color: var(--text-1);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 56ch;
}
.slate-grid {
  margin-top: clamp(50px,6vw,80px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, 24vw);
  gap: clamp(14px, 1.6vw, 24px);
}
/* Asymmetric editorial bento: one large featured frame, two stacked beside it. */
.slate-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.slate-item:nth-child(2) { grid-column: 5 / 7; grid-row: 1 / 2; }
.slate-item:nth-child(3) { grid-column: 5 / 7; grid-row: 2 / 3; }

.slate-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--line);
  isolation: isolate;
}
.slate-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.88) brightness(0.66) contrast(1.05);
  transition: transform 1.2s var(--ease-cinema), filter 0.6s var(--ease-cinema);
}
.slate-item::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 42%, rgba(242,206,110,0.22) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 1.1s var(--ease-cinema);
  pointer-events: none;
}
.slate-item:hover::before { transform: translateX(120%); }
.slate-item::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3,2,1,0) 45%, rgba(3,2,1,0.86) 100%);
  transition: background 0.5s var(--ease-cinema);
}
.slate-item:hover::after { background: linear-gradient(180deg, rgba(3,2,1,0.18) 0%, rgba(3,2,1,0.92) 100%); }
.slate-item:hover img { transform: scale(1.03); filter: saturate(0.95) brightness(0.72) contrast(1.05); }

.slate-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 2vw, 32px);
  pointer-events: none;
}
.slate-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  opacity: 0.8;
}
.slate-label {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  letter-spacing: -0.005em;
  display: block;
  transition: transform 0.5s var(--ease-cinema);
}
.slate-item:hover .slate-label { transform: translateY(-6px); }

.slate-wide {
  position: relative;
  margin-top: clamp(14px, 1.6vw, 24px);
  aspect-ratio: 21 / 7;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.slate-wide .slate-item { border: none; border-radius: 0; width: 100%; height: 100%; }
.slate-wide .slate-overlay { align-items: flex-start; }

.slate-closing {
  margin-top: clamp(50px, 6vw, 80px);
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-2);
}

@media (hover: none) {
  .slate-item::before { display: none; }
  .slate-item::after { background: linear-gradient(180deg, rgba(3,2,1,0.05) 0%, rgba(3,2,1,0.88) 100%); }
  .slate-item .slate-label { transform: none; }
  .slate-item img { filter: saturate(0.95) brightness(0.78) contrast(1.05); }
}

/* ----------------------------- world of amphitrite -------------------------- */
.world {
  position: relative;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.world-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}
.world-copy .section-heading { max-width: 12ch; }
.world-copy p {
  margin-top: 24px;
  color: var(--text-1);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 42ch;
}
.world-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.world-visual .texture {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.5;
}
.world-visual .texture img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7) brightness(0.5);
}
.world-visual .texture::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(closest-side, transparent 40%, #030201 100%);
}
.world-visual svg { position: relative; z-index: 2; width: 100%; height: 100%; }
.world-ring { transform-origin: 200px 200px; }
.world-ring.r1 { animation: worldSpin 40s linear infinite; }
.world-ring.r2 { animation: worldSpin 60s linear infinite reverse; }
.world-ring.r3 { animation: worldSpin 90s linear infinite; }
@keyframes worldSpin { to { transform: rotate(360deg); } }
.world-dot { animation: worldOrbit 40s linear infinite; transform-origin: 200px 200px; }
@keyframes worldOrbit { to { transform: rotate(360deg); } }
.world-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.world-particles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--champagne-300);
  box-shadow: 0 0 8px rgba(242,206,110,0.8);
  opacity: 0.7;
  animation: worldFloat linear infinite;
}
@keyframes worldFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-120px) scale(0.4); opacity: 0; }
}

/* story-universe additions: core, light trails, constellations, streams */
.trail-arc-a, .trail-arc-b {
  stroke-linecap: round;
  transform-origin: 200px 200px;
  transform-box: view-box;
}
.trail-arc-a { stroke-dasharray: 40 900; filter: drop-shadow(0 0 5px rgba(242,206,110,0.6)); animation: worldSpin 14s linear infinite; }
.trail-arc-b { stroke-dasharray: 26 700; animation: worldSpin 34s linear infinite reverse; }

.world-core-wrap { transform-origin: 200px 200px; transform-box: view-box; }
.world-core { animation: worldPulse 4.5s ease-in-out infinite; transform-origin: 200px 200px; transform-box: view-box; }
.world-core-glow { animation: worldPulse 4.5s ease-in-out infinite; transform-origin: 200px 200px; transform-box: view-box; opacity: 0.8; }
.world-core-ring { animation: portalBreathe 6s ease-in-out infinite; transform-origin: 200px 200px; transform-box: view-box; }
@keyframes worldPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.75; }
  50% { transform: scale(1.12); opacity: 1; }
}

.ring-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.22em;
  fill: var(--champagne-300);
  opacity: 0.32;
}
.core-label { opacity: 0.4; }

.constellation { opacity: 0; transition: opacity 1.2s var(--ease-cinema); }
.world-visual.is-active .constellation { opacity: 1; }
.const-label {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.16em;
  fill: var(--text-2);
  opacity: 0.6;
}

.world-stream { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.world-stream .s-wrap { position: absolute; top: 50%; left: 50%; width: 0; height: 0; }
.world-stream .s-dot {
  position: absolute; top: 0; left: 0;
  width: 2.5px; height: 2.5px;
  margin: -1.25px 0 0 -1.25px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 5px 1px rgba(242,206,110,0.65);
  animation: worldStream linear infinite;
}
@keyframes worldStream {
  0% { transform: translateX(6px) scale(0.6); opacity: 0; }
  15% { opacity: 0.9; }
  100% { transform: translateX(var(--stream-r, 150px)) scale(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .trail-arc-a, .trail-arc-b, .world-core, .world-core-glow, .world-core-ring,
  .world-stream .s-dot { animation: none !important; }
  .constellation { opacity: 1 !important; }
}

/* ---------------------------------- craft ----------------------------------- */
.craft-list { margin-top: clamp(50px,6vw,80px); border-top: 1px solid var(--line); }
.craft-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  gap: 24px;
  align-items: baseline;
  padding: clamp(24px, 3vw, 38px) 0;
  border-bottom: 1px solid var(--line);
}
.craft-item::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 0;
  background: var(--gold-bright);
  transition: width 0.8s var(--ease-cinema);
}
.craft-item.is-in::before { width: 100%; }
.craft-num { font-family: var(--font-display); color: var(--text-2); font-size: 0.95rem; }
.craft-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.craft-copy { color: var(--text-2); font-size: 0.98rem; max-width: 46ch; }

/* ------------------------------ philosophy -------------------------------- */
.philosophy {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(60% 55% at 50% 50%, rgba(201,162,39,0.18), transparent 72%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.philosophy .frame-line { position: absolute; left: 50%; transform: translateX(-50%); width: 1px; height: 60px; background: linear-gradient(180deg, transparent, var(--gold-bright), transparent); opacity: 0.5; }
.philosophy .frame-line.top { top: 60px; }
.philosophy .frame-line.bottom { bottom: 60px; }
.philosophy-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 7.2rem);
  line-height: 1.04;
  max-width: 17ch;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding: 0 var(--gutter);
}
.philosophy-text .word {
  display: inline-block;
  opacity: 0.14;
}

/* -------------------------------- process --------------------------------- */
.process-section { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.process-head { position: relative; z-index: 2; padding-top: clamp(90px,12vw,160px); }
.process-viewport { position: relative; height: 62vh; min-height: 420px; overflow: hidden; }
.process-track {
  position: absolute;
  inset: 0;
  display: flex;
  will-change: transform;
}
.process-step {
  flex: 0 0 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  position: relative;
  opacity: 0.32;
  transform: scale(0.94);
  transition: opacity 0.5s var(--ease-cinema), transform 0.5s var(--ease-cinema);
}
.process-step-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
}
.process-step-text { flex: 1 1 auto; min-width: 0; }
.process-step-media {
  flex: 0 0 clamp(240px, 26vw, 380px);
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px -30px rgba(201,162,39,0.5);
}
.process-step-media img { transform: scale(1.05); }
.process-step.is-active { opacity: 1; transform: scale(1); }
.process-step .process-bg-num {
  position: absolute;
  top: 50%; left: var(--gutter);
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(9rem, 26vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,178,120,0.16);
  line-height: 1;
  z-index: 0;
  user-select: none;
}
.process-num {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--champagne-300);
  letter-spacing: 0.14em;
}
.process-title {
  position: relative; z-index: 1;
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  text-transform: uppercase;
  max-width: 14ch;
}
.process-copy {
  position: relative; z-index: 1;
  margin-top: 18px;
  color: var(--text-1);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  max-width: 38ch;
}
.process-dots {
  position: absolute;
  bottom: clamp(30px, 5vw, 60px);
  left: var(--gutter);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.process-dots span { width: 26px; height: 2px; background: var(--line-strong); transition: background-color 0.4s; }
.process-dots span.is-active { background: var(--gold-bright); }

/* mobile fallback: vertical stack, no pin */
@media (max-width: 780px) {
  .process-viewport { height: auto; min-height: 0; }
  .process-track { position: static; display: flex; flex-direction: column; gap: 70px; padding: 20px 0 40px; }
  .process-step { flex: none; opacity: 1; transform: none; padding: 0 var(--gutter); min-height: 0; }
  .process-step .process-bg-num { font-size: 7rem; }
  .process-dots { display: none; }
}

/* --------------------------------- bts ------------------------------------ */
.bts-collage {
  margin-top: clamp(50px,6vw,80px);
  column-count: 3;
  column-gap: clamp(14px, 1.6vw, 24px);
}
.bts-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: clamp(14px, 1.6vw, 24px);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.bts-item:nth-child(3n+1) { aspect-ratio: 3 / 4; }
.bts-item:nth-child(3n+2) { aspect-ratio: 4 / 3; }
.bts-item:nth-child(3n) { aspect-ratio: 1 / 1; }
.bts-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-cinema);
  filter: saturate(0.92) brightness(0.82);
}
.bts-item:hover img { transform: scale(1.04); filter: saturate(1.05) brightness(0.95); }
.bts-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(3,2,1,0.92));
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-1);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-cinema), transform 0.4s var(--ease-cinema);
}
.bts-item:hover .bts-caption { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) { .bts-collage { column-count: 2; } }
@media (max-width: 560px) { .bts-collage { column-count: 1; } }

/* -------------------------------- contact ---------------------------------- */
.contact { border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.75) brightness(0.4) contrast(1.06);
}
.contact-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,2,1,0.55) 0%, rgba(3,2,1,0.88) 55%, #030201 100%);
}
.contact-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 20% 10%, rgba(201,162,39,0.28), transparent 65%);
  mix-blend-mode: screen;
}
.contact > .container { position: relative; z-index: 1; }
.contact-top { max-width: 900px; }
.contact-headline {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-size: clamp(3rem, 9vw, 7.6rem);
}
.contact-headline .accent {
  background: linear-gradient(100deg, var(--champagne-300), var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-sub {
  margin-top: 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: var(--text-1);
}
.contact-cta { margin-top: 44px; }
.offices-grid {
  margin-top: clamp(90px, 10vw, 140px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}
.office-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne-300);
  opacity: 0.8;
  margin-bottom: 12px;
}
.office h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  text-transform: uppercase;
  color: var(--text-0);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.office p { color: var(--text-2); font-size: 0.96rem; line-height: 1.8; }

.contact-form {
  margin-top: clamp(80px,9vw,120px);
  padding-top: 50px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 36px;
  max-width: 980px;
}
.field { position: relative; }
.field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 12px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text-0);
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 12px 2px;
  transition: border-color 0.35s;
}
.field select option { background: #08101f; color: var(--text-0); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-bright);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-submit { grid-column: 1 / -1; margin-top: 14px; display: flex; align-items: center; gap: 22px; }
.form-note { font-size: 0.84rem; color: var(--champagne-300); opacity: 0; transition: opacity 0.4s; }
.form-note.is-visible { opacity: 1; }

/* --------------------------------- footer ---------------------------------- */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding: clamp(70px, 8vw, 110px) 0 44px;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -20%;
  transform: translateX(-50%);
  width: 70vw; height: 40vw;
  max-width: 900px; max-height: 500px;
  background: radial-gradient(closest-side, rgba(201,162,39,0.22), transparent 75%);
  pointer-events: none;
}
.footer-logo-icon {
  position: relative;
  height: 46px;
  width: auto;
  margin-bottom: 26px;
  opacity: 0.92;
}
.footer-mark {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-size: clamp(3rem, 9vw, 8.5rem);
  color: var(--text-0);
  opacity: 0.92;
}
.footer-mark span { display: block; }
.footer-mark .dim { color: var(--text-3); }
.footer-columns {
  position: relative;
  margin-top: clamp(40px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.footer-col-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: 0.85;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--champagne-300); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  color: var(--text-2);
  transition: border-color 0.3s, color 0.3s;
}
.footer-social a:hover { border-color: var(--gold-bright); color: var(--champagne-300); }
.footer-bottom {
  position: relative;
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-2);
}

/* ----------------------------- service sub-nav ------------------------------ */
.service-subnav {
  position: sticky;
  top: 0;
  z-index: 400;
  background: rgba(3,2,1,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.service-subnav::-webkit-scrollbar { display: none; }
.service-subnav-inner {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding: 18px var(--gutter);
  white-space: nowrap;
}
.service-subnav a {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  padding-bottom: 6px;
  transition: color 0.3s;
}
.service-subnav a:hover { color: var(--text-0); }
.service-subnav a.is-current { color: var(--gold-bright); }
.service-subnav a.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(242,206,110,0.6);
}

/* -------------------------------- focus pills -------------------------------- */
.focus-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.focus-pills span {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-1);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 18px;
  transition: border-color 0.3s, color 0.3s;
}
.focus-pills span:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

/* ------------------------------ episodic scroll ------------------------------ */
.episode-scroll {
  margin-top: clamp(50px,6vw,80px);
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.episode-card {
  position: relative;
  flex: 0 0 clamp(260px, 34vw, 400px);
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.episode-card .ep-index {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  font-family: var(--font-display); font-size: 0.75rem; color: var(--gold-bright); letter-spacing: 0.1em;
}
.episode-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  background: linear-gradient(180deg, rgba(3,2,1,0) 30%, rgba(3,2,1,0.95) 100%);
}
.episode-overlay h3 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.2rem, 2vw, 1.6rem); letter-spacing: -0.01em;
}
.episode-overlay p { margin-top: 10px; color: var(--text-1); font-size: 0.92rem; }

/* --------------------------------- flow row ---------------------------------- */
.flow-row {
  margin-top: clamp(50px,6vw,80px);
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
}
.flow-step {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}
.flow-step-body { padding: clamp(24px,3vw,40px) 0; }
.flow-step .flow-num {
  font-family: var(--font-display); font-size: 0.8rem; color: var(--gold-bright); letter-spacing: 0.1em;
}
.flow-step h3 {
  margin-top: 12px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}
.flow-step p { margin-top: 10px; color: var(--text-2); font-size: 0.9rem; max-width: 26ch; }
.flow-arrow {
  flex: 0 0 auto;
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: 1.4rem;
  padding: 0 clamp(10px, 2vw, 24px);
}
@media (max-width: 900px) {
  .flow-row { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); padding: 6px 0; align-self: flex-start; margin-left: 4px; }
}

/* --------------------------------- tag grid ----------------------------------- */
.tag-grid {
  margin-top: clamp(50px,6vw,80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tag-grid div {
  background: var(--bg);
  padding: clamp(24px, 3vw, 38px) clamp(18px, 2vw, 26px);
  transition: background-color 0.4s;
}
.tag-grid div:hover { background: var(--charcoal-900); }
.tag-grid .tag-num { font-family: var(--font-display); font-size: 0.72rem; color: var(--gold-bright); letter-spacing: 0.1em; }
.tag-grid .tag-title {
  margin-top: 10px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1rem, 1.6vw, 1.3rem); letter-spacing: -0.005em;
}
@media (max-width: 1080px) { .tag-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tag-grid { grid-template-columns: 1fr; } }

/* ---------------------------- image break (music) ----------------------------- */
.image-break {
  position: relative;
  margin-top: clamp(60px,7vw,100px);
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.image-break img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) brightness(0.65) contrast(1.05); }
.image-break::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(3,2,1,0.75), rgba(3,2,1,0.15) 55%, rgba(3,2,1,0.75));
}
.image-break-text {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 var(--gutter);
}
.image-break-text p {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 3.2rem); letter-spacing: -0.01em; max-width: 18ch;
}

/* ------------------------------- next service --------------------------------- */
.next-service {
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.next-service::before {
  content: "";
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 60vw; height: 30vw; max-width: 800px; max-height: 420px;
  background: radial-gradient(closest-side, rgba(201,162,39,0.16), transparent 75%);
  pointer-events: none;
}
.next-service-label {
  font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-2);
}
.next-service a {
  display: block;
  margin-top: 20px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.4rem, 8vw, 6rem); letter-spacing: -0.02em;
  color: var(--text-0);
  transition: color 0.4s, letter-spacing 0.4s;
}
.next-service a:hover { color: var(--gold-bright); letter-spacing: 0; }

/* -------------------------------- service cta ---------------------------------- */
.service-cta {
  text-align: center;
  padding: clamp(90px, 11vw, 160px) 0;
  border-top: 1px solid var(--line);
}
.service-cta h2 { font-size: clamp(2.4rem, 6vw, 5rem); }
.service-cta p { margin-top: 20px; color: var(--text-1); font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.service-cta .btn { margin-top: 40px; }

/* --------------------------------- reveal utils ---------------------------- */
.reveal { opacity: 0; transform: translateY(48px); }
.reveal-img { clip-path: inset(0 0 100% 0); }

/* ------------------------------- responsive --------------------------------- */
@media (max-width: 1080px) {
  .about-row { grid-template-columns: 1fr; gap: 40px; }
  .slate-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(320px, 70vw); }
  .slate-item:nth-child(n) { grid-column: 1 / 2 !important; grid-row: auto !important; }
  .slate-wide { aspect-ratio: 16 / 11; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .world-inner { grid-template-columns: 1fr; }
  .world-visual { max-width: 420px; margin: 0 auto; }
  .craft-item { grid-template-columns: 50px 1fr; }
  .craft-copy { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .service-row { grid-template-columns: 46px 1fr; min-height: 0; }
  .service-row .service-arrow { display: none; }
  .offices-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .process-step-row { flex-direction: column-reverse; }
  .process-step-media { width: 100% !important; aspect-ratio: 16/9; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .slate-wide { aspect-ratio: 4 / 5; }
}

/* Touch devices can't hover — surface what hover would have revealed by default. */
@media (hover: none) {
  .slate-item img { filter: saturate(0.95) brightness(0.78) contrast(1.05); }
  .bts-caption { opacity: 1; transform: none; }
  .bts-item img { filter: saturate(1) brightness(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-atmosphere { animation: none; }
}
