/* ============================================================
   CROWNER & COMPANY - design system v2
   "Pacific Day → Hollywood Night."
   White + deep navy. Coastal-editorial by day, cinematic by night.
   Theme is variable-driven: add .night to any section to invert.
   ============================================================ */

:root{
  /* raw palette - bright clean white + Pacific blue + deep navy */
  --white:   #FFFFFF;
  --paper:   #FFFFFF;   /* bright white canvas */
  --paper-2: #F7F7F8;   /* neutral whisper band (no blue) */
  --paper-line:#ECEEF2;
  --cloud:   #FFFFFF;   /* card */
  --ink:     #0D1B2D;   /* deep navy text */
  --ink-2:   #0B1D38;   /* deepest navy bg */
  --ink-3:   #13294B;   /* raised navy panel */
  --navy-700:#21406B;
  --cream:   #EAF0F8;   /* light text on navy */
  --pacific: #2E6BB0;   /* the accent */
  --pacific-deep:#234F84;
  --azure:   #5FA2DE;   /* bright accent on navy */
  --slate:   #5E6E85;
  --faint:   #93A0B3;

  /* soft layered navy shadows - float the cards */
  --sh-sm: 0 1px 2px rgba(11,29,56,.05), 0 8px 20px -14px rgba(11,29,56,.30);
  --sh:    0 6px 16px -10px rgba(11,29,56,.12), 0 28px 56px -30px rgba(11,29,56,.32);
  --sh-lg: 0 12px 28px -12px rgba(11,29,56,.16), 0 56px 100px -50px rgba(11,29,56,.42);

  /* semantic - DAY (default) */
  --bg:      var(--paper);
  --fg:      var(--ink);
  --fg-dim:  #41526a;
  --fg-faint:#5a6b81;   /* AA on white (4.97:1) */
  --line:    rgba(13,27,45,0.12);
  --line-soft:rgba(13,27,45,0.07);
  --accent:  var(--pacific);
  --accent-ink:#0D1B2D;
  --card:    var(--cloud);
  --card-sh: var(--sh);
  --btn-fg:  #FFFFFF;
  --btn-bg:  var(--ink);
  --grain:   0.018;

  /* type */
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --glam:    "Newsreader", Georgia, serif;
  --sans:    "Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --gut: clamp(1.5rem, 1rem + 3vw, 4.5rem);
  --maxw: clamp(1600px, 90vw, 1900px);
  --section-y: clamp(3.5rem, 2.6rem + 4.5vw, 6.5rem);
  --ease: cubic-bezier(0.22,0.61,0.36,1);
  --ease-out: cubic-bezier(0.16,1,0.3,1);
}

/* NIGHT theme - deep navy, cinematic */
.night{
  --bg:      var(--ink-2);
  --fg:      #EAF0F8;
  --fg-dim:  #aab9cd;
  --fg-faint:#7286a0;
  --line:    rgba(234,240,248,0.16);
  --line-soft:rgba(234,240,248,0.08);
  --accent:  var(--azure);
  --accent-ink:#0B1D38;
  --card:    var(--ink-3);
  --card-sh: 0 18px 50px -24px rgba(0,0,0,.6);
  --btn-fg:  #0B1D38;
  --btn-bg:  var(--azure);
  background:var(--bg); color:var(--fg);
}
.night.ink2{ --bg:#0D1B2D; }

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
*{ margin:0; padding:0; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; font-size:clamp(16.5px, 15px + 0.42vw, 22px); }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body{
  background:var(--bg); color:var(--fg);
  font-family:var(--sans); font-weight:430;
  font-size:1.05rem; line-height:1.62; letter-spacing:0.004em;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; overflow-x:hidden;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:none; cursor:pointer; }
::selection{ background:var(--ink); color:var(--paper); }
.night ::selection{ background:var(--azure); color:var(--ink); }
:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; border-radius:2px; }

/* ---------- type primitives ---------- */
.display{ font-family:var(--display); font-weight:560; line-height:0.98; letter-spacing:-0.01em; }
.glam{ font-family:var(--glam); }
.italic{ font-style:italic; }
.serif{ font-family:var(--display); }

.eyebrow{
  font-family:var(--mono); font-size:0.72rem; font-weight:500;
  letter-spacing:0.18em; text-transform:uppercase; color:var(--fg-faint);
  display:inline-flex; align-items:center; gap:0.7em;
}
.eyebrow .idx{ color:var(--accent); }
.eyebrow::before{ content:""; width:1.7rem; height:1px; background:var(--accent); opacity:0.9; }
.eyebrow.no-rule::before{ display:none; }

.lede{ font-size:clamp(1.18rem,1.02rem+0.8vw,1.5rem); line-height:1.5; color:var(--fg); font-weight:430; letter-spacing:-0.002em; }
.dim{ color:var(--fg-dim); }
.faint{ color:var(--fg-faint); }
.mono{ font-family:var(--mono); }
.accent{ color:var(--accent); }
h1,h2,h3,h4{ font-weight:inherit; }

/* ---------- layout ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gut); }
.wrap-wide{ max-width:clamp(1860px, 94vw, 2200px); }
.section{ padding-block:var(--section-y); position:relative; background:var(--bg); color:var(--fg); }
.section > .wrap > .reveal[style*="margin-bottom"]{ margin-bottom:clamp(1.6rem,3vw,2.4rem) !important; }
.rule{ height:1px; background:var(--line-soft); border:0; }
.statement .grid > *, .walls-grid > *, .practice > *, .practice-copy, .practice-list li,
.steps > *, .footer-grid > *, .gallery > *, .proofrow > *, .roomgrid > *, .statband > *,
.tl, .form-grid > *{ min-width:0; }

/* ---------- buttons ---------- */
.btn{
  --pad-y:0.95rem; --pad-x:1.7rem;
  display:inline-flex; align-items:center; gap:0.7em;
  padding:var(--pad-y) var(--pad-x);
  font-family:var(--mono); font-size:0.76rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--btn-fg); background:var(--btn-bg); border:1px solid var(--btn-bg); border-radius:2px;
  transition:transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.btn:hover{ transform:translateY(-2px); box-shadow:0 12px 30px -12px rgba(12,30,54,0.45); }
.night .btn:hover{ box-shadow:0 14px 36px -14px rgba(127,182,224,0.5); }
.btn .arr{ transition:transform .4s var(--ease); }
.btn:hover .arr{ transform:translateX(3px); }
.btn--ghost{ background:transparent; color:var(--fg); border-color:var(--line); }
.btn--ghost:hover{ border-color:var(--accent); color:var(--accent); box-shadow:none; }

.tlink{
  display:inline-flex; align-items:center; gap:0.55em;
  font-family:var(--mono); font-size:0.76rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--fg); position:relative; padding-bottom:3px;
}
.tlink::after{ content:""; position:absolute; left:0; bottom:0; height:1px; width:100%; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform .5s var(--ease); }
.tlink:hover{ color:var(--accent); }
.tlink:hover::after{ transform:scaleX(1); }
.tlink .arr{ color:var(--accent); transition:transform .4s var(--ease); }
.tlink:hover .arr{ transform:translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:fixed; inset:0 0 auto 0; z-index:90;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.05rem var(--gut);
  transition:background .5s var(--ease), border-color .5s var(--ease), padding .4s var(--ease), color .4s var(--ease);
  border-bottom:1px solid transparent; color:var(--fg);
}
.nav.scrolled{ background:color-mix(in srgb, var(--bg) 80%, transparent); backdrop-filter:saturate(140%) blur(16px); -webkit-backdrop-filter:saturate(140%) blur(16px); border-bottom-color:var(--line-soft); padding-block:0.7rem; }
.brand{ display:flex; align-items:baseline; gap:0.55rem; z-index:101; color:var(--fg); }
.brand .mark{ font-family:var(--display); font-weight:600; font-size:1.4rem; letter-spacing:0; line-height:1; }
.brand .co{ font-family:var(--mono); font-size:0.6rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--fg-faint); align-self:center; padding-left:0.65rem; border-left:1px solid var(--line); }
/* image wordmark: dark version shown by default (covers scrolled, light bg + 404); white swaps in over dark photo heroes */
.brand-logo{ height:clamp(26px, 1.5rem + 0.5vw, 34px); width:auto; display:block; }
.brand-logo--light{ display:none; }
.nav-links{ display:flex; align-items:center; gap:1.9rem; }
.nav-links a:not(.btn){ font-family:var(--mono); font-size:0.74rem; font-weight:600; letter-spacing:0.07em; text-transform:uppercase; color:var(--fg-dim); position:relative; transition:color .35s var(--ease); white-space:nowrap; }
.nav-links a:not(.btn)::after{ content:""; position:absolute; left:0; bottom:-6px; height:1px; width:100%; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform .45s var(--ease); }
.nav-links a:not(.btn):hover{ color:var(--fg); }
.nav-links a:not(.btn):hover::after, .nav-links a.active::after{ transform:scaleX(1); }
.nav-links a.active{ color:var(--fg); }
.nav .btn{ --pad-y:0.65rem; --pad-x:1.1rem; font-size:0.68rem; }

.nav-toggle{ display:none; z-index:101; width:30px; height:16px; position:relative; }
.nav-toggle span{ position:absolute; left:0; height:1.5px; width:100%; background:var(--fg); transition:transform .45s var(--ease), opacity .3s var(--ease); }
.nav-toggle span:nth-child(1){ top:0; } .nav-toggle span:nth-child(2){ top:50%; transform:translateY(-50%); } .nav-toggle span:nth-child(3){ bottom:0; }
body.menu-open .nav-toggle span:nth-child(1){ top:50%; transform:translateY(-50%) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2){ opacity:0; }
body.menu-open .nav-toggle span:nth-child(3){ bottom:auto; top:50%; transform:translateY(-50%) rotate(-45deg); }

.mobile-menu{ position:fixed; inset:0; z-index:95; background:var(--ink); color:var(--paper); display:flex; flex-direction:column; justify-content:center; padding:var(--gut); gap:0.1rem; transform:translateY(-100%); transition:transform .6s var(--ease); pointer-events:none; }
body.menu-open .mobile-menu{ transform:translateY(0); pointer-events:auto; }
.mobile-menu a{ font-family:var(--display); font-weight:600; font-size:clamp(2.1rem,9vw,3.4rem); color:var(--paper); padding-block:0.3rem; letter-spacing:-0.01em; opacity:0; transform:translateY(14px); transition:opacity .5s var(--ease), transform .5s var(--ease), color .3s var(--ease); }
.mobile-menu a:hover{ color:var(--azure); }
body.menu-open .mobile-menu a{ opacity:1; transform:translateY(0); }
body.menu-open .mobile-menu a:nth-child(1){ transition-delay:.1s; } body.menu-open .mobile-menu a:nth-child(2){ transition-delay:.16s; } body.menu-open .mobile-menu a:nth-child(3){ transition-delay:.22s; } body.menu-open .mobile-menu a:nth-child(4){ transition-delay:.28s; } body.menu-open .mobile-menu a:nth-child(5){ transition-delay:.34s; }
.mobile-menu .mm-foot{ margin-top:2.5rem; font-family:var(--mono); font-size:0.74rem; letter-spacing:0.04em; color:#8197b0; display:flex; flex-direction:column; gap:0.4rem; opacity:0; transition:opacity .6s .4s var(--ease); }
body.menu-open .mobile-menu .mm-foot{ opacity:1; }

/* ============================================================
   FILM GRAIN + TOPO MOTIF (atmosphere)
   ============================================================ */
.grain::before{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none; opacity:var(--grain);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}
.topo{ position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.topo svg{ position:absolute; width:140%; height:140%; }
.topo path{ fill:none; stroke:#9aa6b5; stroke-width:1; opacity:0.12; }
.night .topo path{ stroke:var(--azure); opacity:0.18; }

/* ============================================================
   HERO - Pacific day, letterboxed cinema frame, waveform
   ============================================================ */
.hero{ position:relative; padding-top:clamp(7rem,15vh,10rem); padding-bottom:clamp(3rem,7vh,5rem); overflow:hidden; isolation:isolate; background:var(--bg); }
.hero-grid{ display:grid; grid-template-columns:1fr; gap:clamp(2rem,5vw,3.5rem); align-items:end; position:relative; z-index:2; }
.hero-kicker{ margin-bottom:1.4rem; }
.hero h1{ font-family:var(--display); font-weight:600; font-size:clamp(3.2rem,11vw,9rem); line-height:0.92; letter-spacing:-0.02em; max-width:16ch; }
.hero h1 .em{ font-style:italic; font-weight:500; color:var(--pacific); }
.night .hero h1 .em{ color:var(--azure); }
.hero-sub{ margin-top:1.6rem; max-width:46ch; font-size:clamp(1.05rem,0.96rem+0.5vw,1.28rem); line-height:1.5; color:var(--fg); }
.hero-sub b{ font-weight:600; }
.hero-actions{ margin-top:2.2rem; display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap; }

/* cinema frame */
.cineframe{ position:relative; width:100%; border:1px solid var(--line); background:#000; overflow:hidden; box-shadow:0 40px 80px -40px rgba(12,30,54,0.45); }
.cineframe .ratio{ position:relative; aspect-ratio:2.39/1; }
.cineframe img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 46%; animation:cineIn 1.4s var(--ease-out) both; }
@keyframes cineIn{ from{ transform:scale(1.06); opacity:0; } to{ transform:scale(1); opacity:1; } }
.cineframe .bars{ position:absolute; left:0; right:0; height:7%; background:#000; z-index:2; }
.cineframe .bars.top{ top:0; } .cineframe .bars.bot{ bottom:0; }
.cineframe .cf-meta{ position:absolute; left:1rem; bottom:calc(7% + 0.7rem); z-index:3; font-family:var(--mono); font-size:0.64rem; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.82); }
.cineframe .cf-rec{ position:absolute; right:1rem; top:calc(7% + 0.7rem); z-index:3; display:inline-flex; align-items:center; gap:0.5em; font-family:var(--mono); font-size:0.62rem; letter-spacing:0.1em; color:rgba(255,255,255,0.82); text-transform:uppercase; }
.cineframe .cf-rec::before{ content:""; width:7px; height:7px; border-radius:50%; background:#e0654f; box-shadow:0 0 8px #e0654f; animation:rec 1.6s steps(1) infinite; }
@keyframes rec{ 50%{ opacity:0.25; } }

/* waveform */
.wave{ width:100%; height:46px; margin-top:1.6rem; overflow:visible; }
.wave path{ fill:none; stroke:var(--accent); stroke-width:2; stroke-linecap:round; }
.wave .flat{ stroke:var(--line); }

.hero-meta{ margin-top:clamp(2.5rem,5vw,3.5rem); display:flex; justify-content:space-between; align-items:center; gap:1rem; border-top:1px solid var(--line-soft); padding-top:1.1rem; font-family:var(--mono); font-size:0.7rem; letter-spacing:0.04em; color:var(--fg-faint); text-transform:uppercase; position:relative; z-index:2; }

@media (min-width:980px){
  .hero-grid{ grid-template-columns:1.02fr 1.18fr; gap:clamp(2.5rem,5vw,5rem); }
  .hero h1{ font-size:clamp(3.6rem,7vw,7.6rem); }
}

/* ============================================================
   STATEMENT
   ============================================================ */
.statement .grid{ display:grid; grid-template-columns:1fr; gap:clamp(2rem,5vw,4rem); }
.statement-head{ font-family:var(--display); font-weight:560; font-size:clamp(2.1rem,1.3rem+3.2vw,3.9rem); line-height:1.02; letter-spacing:-0.016em; max-width:min(16ch,100%); overflow-wrap:break-word; }
.statement-head .em{ font-style:italic; color:var(--accent); }
.statement-body{ max-width:74ch; }
.statement-body p + p{ margin-top:1.1rem; }
@media (min-width:900px){ .statement .grid{ grid-template-columns:0.78fr 1.12fr; align-items:start; gap:clamp(2.5rem,5vw,5rem); } }

/* ============ WHO WE ARE - editorial two-column + service row ============ */
.who{ background:#FCFBF8; padding-block:clamp(4rem,3rem+5vw,8rem); }
.who-eyebrow{ display:inline-flex; margin-bottom:clamp(1.6rem,3vw,2.6rem); }
.who-eyebrow::before{ width:2.4rem; }
.who-cols{ display:grid; grid-template-columns:1fr; gap:clamp(1.8rem,4vw,2.8rem); }
.who-h{
  font-family:var(--display); font-weight:480;
  font-size:clamp(31px, 12px + 3.6vw, 66px);
  line-height:1.05; letter-spacing:-0.02em; color:var(--ink);
  max-width:21ch; text-wrap:balance;
}
.who-h .em{ font-style:italic; font-weight:450; color:var(--pacific); }
.who-body{ max-width:44ch; }
.who-body p{ font-family:var(--sans); color:var(--fg-dim); font-size:clamp(1rem,0.93rem+0.34vw,1.26rem); line-height:1.6; }
.who-body p + p{ margin-top:1.3rem; }
.who-cta{ margin-top:clamp(1.9rem,2.6vw,2.8rem); color:var(--accent); }
.who-services{ margin-top:clamp(3rem,5vw,5.5rem); border-top:1px solid rgba(13,27,45,0.10); display:grid; grid-template-columns:1fr; }
.who-service{ padding:clamp(1.5rem,4vw,2rem) 0; }
.who-service + .who-service{ border-top:1px solid rgba(13,27,45,0.07); }
.who-n{ display:block; font-family:var(--display); font-style:italic; font-weight:430; font-size:clamp(26px, 16px + 1.1vw, 42px); line-height:1; letter-spacing:-0.01em; color:var(--pacific); }
.who-service h3{ font-family:var(--sans); font-weight:600; font-size:clamp(1.06rem,1rem+0.25vw,1.24rem); letter-spacing:-0.005em; color:var(--ink); margin-top:0.95rem; }
.who-service p{ font-family:var(--sans); color:var(--fg-faint); font-size:clamp(0.94rem,0.9rem+0.16vw,1.06rem); line-height:1.5; margin-top:0.5rem; max-width:34ch; }
@media (min-width:900px){
  .who-cols{ grid-template-columns:1.25fr 0.85fr; gap:clamp(2.6rem,2.8vw,4.4rem); align-items:start; }
  .who-h{ max-width:none; }
  .who-body{ max-width:none; }
}
@media (min-width:1280px){
  .who-cols{ grid-template-columns:1.3fr 0.82fr; gap:clamp(2.8rem,2.6vw,4.6rem); }
}
@media (min-width:680px){
  .who-services{ grid-template-columns:repeat(3,1fr); }
  .who-service{ padding:clamp(2.2rem,3.5vw,3.2rem) clamp(1.8rem,3vw,3.2rem) 0; border-left:1px solid rgba(13,27,45,0.10); }
  .who-service + .who-service{ border-top:0; }
  .who-service:first-child{ padding-left:0; border-left:0; }
  .who-service:last-child{ padding-right:0; }
}

/* ============ IN GOOD COMPANY - navy roster, promoted credits ============ */
/* .company drops the cream bg; .night supplies --bg so the section reads as a cinematic navy moment */
.company .wrap{ max-width:min(1320px,100%); margin-inline:auto; }
.company-top{ display:grid; grid-template-columns:1fr; gap:clamp(1.4rem,3vw,2rem); margin-bottom:clamp(2.8rem,5vw,4.6rem); }
.company-eyebrow{ display:inline-flex; margin-bottom:clamp(1.2rem,2.4vw,1.8rem); }
.company-eyebrow::before{ width:2.4rem; }
.company-h{ font-family:var(--display); font-weight:480; font-size:clamp(28px, 22px + 1.9vw, 52px); line-height:1.07; letter-spacing:-0.018em; color:var(--fg); max-width:20ch; text-wrap:balance; }
.company-h .em{ font-style:italic; font-weight:450; color:var(--accent); }
.company-intro{ font-family:var(--sans); color:var(--fg-dim); font-size:clamp(1rem,0.97rem+0.2vw,1.12rem); line-height:1.6; max-width:44ch; }
@media (min-width:860px){
  .company-top{ grid-template-columns:1.5fr 1fr; gap:clamp(2.5rem,4vw,4rem); align-items:start; }
  .company-intro{ border-left:1px solid var(--line); padding-left:clamp(2rem,3vw,3.2rem); max-width:36ch; }
}
/* grid: hairline gaps over the navy; capped wrap, centered on ultrawide; never crowds at 360px */
.company-grid{ list-style:none; margin:0; padding:0; display:grid; grid-template-columns:1fr; gap:1px; background:var(--line); border-top:1px solid var(--line); }
.cc{ position:relative; background:var(--bg); padding:clamp(1.7rem,4vw,2.3rem); display:flex; flex-direction:column; transition:background .4s var(--ease); }
.cc::after{ content:""; position:absolute; top:0; left:0; right:0; height:2px; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform .45s var(--ease); }
.cc:hover::after, .cc:focus-within::after{ transform:scaleX(1); }
/* small mono marker, dropped to the foot of the card */
.cc-num{ display:block; order:3; margin-top:1.1rem; font-family:var(--mono); font-size:0.7rem; font-weight:500; letter-spacing:0.08em; color:color-mix(in srgb, var(--azure) 42%, transparent); }
/* PROMOTED credit: the highlight, ordered above the name */
.cc-role{ display:block; order:1; font-family:var(--mono); font-size:0.72rem; font-weight:500; letter-spacing:0.13em; text-transform:uppercase; color:var(--azure); line-height:1.35; }
/* big cream anchor */
.cc-name{ display:block; order:2; margin-top:0.55rem; font-family:var(--display); font-weight:560; font-size:clamp(1.35rem, 1.1rem + 0.9vw, 1.9rem); line-height:1.1; letter-spacing:-0.014em; color:var(--fg); overflow-wrap:break-word; }
.cc:hover .cc-num, .cc:focus-within .cc-num{ color:color-mix(in srgb, var(--azure) 72%, transparent); }
@media (min-width:600px){ .company-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1080px){ .company-grid{ grid-template-columns:repeat(4,1fr); } }

/* ============ commercial salon showcase (residential page) ============ */
.cs-gallery{ margin:clamp(2.4rem,5vw,3.6rem) 0 0; display:grid; gap:clamp(0.6rem,1.4vw,0.9rem); grid-template-columns:1fr; }
.cs-shot{ position:relative; display:block; margin:0; padding:0; border:0; background:none; cursor:pointer; overflow:hidden; border-radius:3px; aspect-ratio:4 / 3; }
.cs-shot picture, .cs-shot img{ display:block; width:100%; height:100%; object-fit:cover; }
.cs-shot img{ transition:transform .7s var(--ease-out); }
.cs-shot:hover img, .cs-shot:focus-visible img{ transform:scale(1.045); }
.cs-shot:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; }
.cs-cap{ position:absolute; left:0; right:0; bottom:0; padding:0.9rem 1rem 0.7rem; font-family:var(--sans); font-weight:600; font-size:0.82rem; letter-spacing:-0.005em; color:#fff; background:linear-gradient(to top, rgba(8,15,27,0.62), rgba(8,15,27,0)); pointer-events:none; }
.cs-figcap{ font-family:var(--mono); font-size:0.72rem; letter-spacing:0.06em; text-transform:uppercase; color:var(--fg-faint); margin-top:0.55rem; }
@media (min-width:760px){
  .cs-gallery{ grid-template-columns:1.5fr 1fr; }
  .cs-shot--lead{ grid-row:1 / span 2; aspect-ratio:auto; }
  .cs-figcap{ grid-column:1 / -1; }
}

/* ============ INSIDE THE WALL - anatomy of quiet (image feature) ============ */
.section.iw{ background:#04080e; padding-block:clamp(3.5rem, 2.4rem + 5vw, 7.5rem); overflow:hidden; }
.iw-figure{ position:relative; margin-inline:auto; width:min(94vw, 1760px); }
.iw-figure picture{ display:block; }
.iw-img{ display:block; width:100%; height:auto; aspect-ratio:1672 / 941; }
/* feather the image's top/bottom edges into the matched background so it reads seamless, not as a pasted rectangle */
.iw-figure::before, .iw-figure::after{ content:""; position:absolute; left:0; right:0; pointer-events:none; z-index:2; }
.iw-figure::before{ top:-1px; height:clamp(16px, 2vw, 38px); background:linear-gradient(to bottom, #04080e 0%, rgba(4,8,14,0) 100%); }
.iw-figure::after{ bottom:-1px; height:clamp(42px, 6vw, 110px); background:linear-gradient(to top, #04080e 0%, rgba(4,8,14,0) 100%); }
/* mobile real-text fallback - visually hidden (but screen-reader accessible) on desktop, shown below the image on smaller screens */
.iw-fallback{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
.iw-fallback .eyebrow{ color:rgba(234,240,248,0.66); margin-bottom:1.4rem; }
.iw-fallback .eyebrow::before{ background:var(--azure); }
.iw-fallback .eyebrow .idx{ color:var(--azure); }
.iw-h{ font-family:var(--display); font-weight:540; font-size:clamp(2rem, 1.4rem + 2.6vw, 2.9rem); line-height:1.07; letter-spacing:-0.016em; color:#EAF0F8; }
.iw-h .em{ font-style:italic; font-weight:480; color:var(--azure); }
.iw-body{ margin-top:1.2rem; max-width:56ch; color:rgba(225,233,243,0.72); font-size:clamp(1rem,0.96rem+0.2vw,1.1rem); line-height:1.62; }
.iw-list{ list-style:none; margin:clamp(2.2rem,5vw,3rem) 0 0; padding:0; }
.iw-li{ display:grid; grid-template-columns:2.4rem 1fr; gap:0 1rem; padding:clamp(1.05rem,3.5vw,1.35rem) 0; border-top:1px solid rgba(234,240,248,0.12); }
.iw-li:first-child{ border-top:0; padding-top:0; }
.iw-n{ font-family:var(--mono); font-size:0.82rem; font-weight:500; letter-spacing:0.04em; color:var(--azure); padding-top:0.2rem; }
.iw-meta{ display:block; }
.iw-name{ display:block; font-family:var(--sans); font-weight:600; font-size:1.04rem; line-height:1.3; color:#fff; letter-spacing:-0.005em; }
.iw-desc{ display:block; margin-top:0.35rem; font-family:var(--sans); font-size:0.92rem; line-height:1.55; color:rgba(225,233,243,0.6); }
@media (max-width:1080px){
  .iw-fallback{ position:static; width:auto; height:auto; margin:clamp(2.6rem,6vw,3.6rem) auto 0; overflow:visible; clip:auto; white-space:normal; max-width:min(92vw,640px); padding-inline:var(--gut); }
}

.sec-h{ font-family:var(--display); font-weight:560; font-size:clamp(2.1rem,1.3rem+3vw,3.7rem); line-height:1.02; letter-spacing:-0.016em; max-width:18ch; overflow-wrap:break-word; }
.sec-h .em{ font-style:italic; color:var(--accent); }

/* proof row */
.proofrow{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; margin-top:clamp(2.5rem,5vw,4rem); background:var(--line-soft); border:1px solid var(--line-soft); }
@media (min-width:760px){ .proofrow{ grid-template-columns:repeat(4,1fr); } }
.proof{ background:var(--bg); padding:1.7rem 1.4rem; }
.proof .n{ font-family:var(--display); font-weight:440; font-size:clamp(2.6rem,1.6rem+3vw,4rem); line-height:0.92; letter-spacing:-0.018em; color:var(--fg); overflow-wrap:break-word; }
.proof .n small{ font-size:0.42em; color:var(--accent); margin-left:0.2em; font-family:var(--mono); }
.proof .l{ margin-top:0.7rem; font-size:0.82rem; letter-spacing:0.01em; color:var(--fg-dim); line-height:1.45; }

/* ============================================================
   PRACTICE BLOCKS
   ============================================================ */
.practice{ display:grid; grid-template-columns:1fr; gap:clamp(1.5rem,4vw,3rem); align-items:center; }
.practice + .practice{ margin-top:clamp(4rem,9vw,8rem); }
.practice-media{ position:relative; overflow:hidden; border-radius:4px; background:var(--card); box-shadow:var(--card-sh); }
.practice-media img{ width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform 1.2s var(--ease); }
.practice:hover .practice-media img{ transform:scale(1.035); }
.practice-media .tag{ position:absolute; left:1rem; top:1rem; font-family:var(--mono); font-size:0.64rem; letter-spacing:0.1em; text-transform:uppercase; color:#fff; background:rgba(8,23,40,0.62); backdrop-filter:blur(8px); padding:0.4rem 0.7rem; border:1px solid rgba(255,255,255,0.18); }
.practice-copy h3{ font-family:var(--display); font-weight:560; font-size:clamp(1.9rem,1.3rem+2.4vw,3rem); line-height:1.03; letter-spacing:-0.012em; margin-bottom:1.1rem; }
.practice-copy p{ max-width:48ch; color:var(--fg-dim); }
.practice-list{ list-style:none; margin:1.5rem 0 1.8rem; border-top:1px solid var(--line-soft); }
.practice-list li{ padding:0.7rem 0; border-bottom:1px solid var(--line-soft); display:flex; gap:0.9rem; align-items:baseline; font-size:0.92rem; color:var(--fg-dim); }
.practice-list li .mono{ color:var(--accent); font-size:0.72rem; }
@media (min-width:920px){
  .practice{ grid-template-columns:1.12fr 1fr; gap:clamp(3rem,6vw,6rem); }
  .practice.flip .practice-media{ order:2; }
  .practice.tall .practice-media img{ aspect-ratio:3/3.6; }
}

/* ============================================================
   INSIDE THE WALLS (cross-section)
   ============================================================ */
.walls-grid{ display:grid; grid-template-columns:1fr; gap:clamp(2.5rem,5vw,4rem); align-items:center; }
@media (min-width:980px){ .walls-grid{ grid-template-columns:0.9fr 1.1fr; gap:clamp(3rem,6vw,6rem); } }
.walls-copy h2{ font-family:var(--display); font-weight:560; font-size:clamp(2rem,1.3rem+3vw,3.6rem); line-height:1.02; letter-spacing:-0.014em; margin-bottom:1.3rem; }
.walls-copy h2 .em{ font-style:italic; color:var(--accent); }
.walls-copy p{ max-width:46ch; color:var(--fg-dim); }
.section-dia{ position:relative; }
.layer{ position:relative; display:flex; align-items:center; gap:1.2rem; padding-block:0.3rem; opacity:0; transform:translateX(24px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.section-dia.in .layer{ opacity:1; transform:translateX(0); }
.section-dia.in .layer:nth-child(2){ transition-delay:.06s; } .section-dia.in .layer:nth-child(3){ transition-delay:.13s; } .section-dia.in .layer:nth-child(4){ transition-delay:.2s; } .section-dia.in .layer:nth-child(5){ transition-delay:.27s; } .section-dia.in .layer:nth-child(6){ transition-delay:.34s; } .section-dia.in .layer:nth-child(7){ transition-delay:.41s; } .section-dia.in .layer:nth-child(8){ transition-delay:.48s; }
.layer .bar{ flex:0 0 auto; width:var(--w,clamp(64px,16vw,120px)); height:var(--h,30px); background:var(--c,rgba(127,182,224,0.12)); border:1px solid var(--line); position:relative; transform:scaleX(0); transform-origin:left; transition:transform .7s var(--ease); }
.section-dia.in .layer .bar{ transform:scaleX(1); }
.layer.decouple .bar::before{ content:''; position:absolute; inset:-3px; border:1px dashed var(--azure); opacity:.55; }
.layer .bar.hatch{ background-image:repeating-linear-gradient(45deg, transparent 0 5px, var(--accent) 5px 5.5px); }
.layer .bar.wool{ background-image:repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 3px, transparent 3px 9px); }
.layer .bar.air{ background:repeating-linear-gradient(to right, transparent 0 7px, var(--line) 7px 8px); border-style:dashed; }
.layer .bar.clip::after{ content:""; position:absolute; right:-7px; top:50%; width:13px; height:13px; transform:translateY(-50%) rotate(45deg); background:var(--accent); }
.layer .meta .nm{ display:block; font-size:0.92rem; color:var(--fg); line-height:1.3; }
.layer .meta .sp{ display:block; font-family:var(--mono); font-size:0.66rem; color:var(--fg-faint); margin-top:0.2rem; line-height:1.4; }
.layer .idx{ font-family:var(--mono); font-size:0.66rem; color:var(--accent); width:1.6rem; flex:0 0 auto; }
.section-dia .roomside, .section-dia .structside{ font-family:var(--mono); font-size:0.66rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--fg-faint); padding-block:0.4rem; display:flex; align-items:center; gap:0.6rem; }
.section-dia .roomside::after, .section-dia .structside::after{ content:""; flex:1; height:1px; background:var(--line-soft); }

/* ============================================================
   GALLERY (keyboard-accessible)
   ============================================================ */
.gallery{ display:grid; grid-template-columns:repeat(12,1fr); gap:clamp(0.6rem,1.2vw,1rem); }
.shot{ position:relative; overflow:hidden; border-radius:4px; background:var(--card); box-shadow:var(--card-sh); grid-column:span 12; padding:0; display:block; width:100%; text-align:left; cursor:pointer; transition:transform .6s var(--ease), box-shadow .6s var(--ease); }
.shot:hover{ transform:translateY(-4px); box-shadow:var(--sh-lg); }
.shot img{ width:100%; height:100%; object-fit:cover; transition:transform 1.1s var(--ease); display:block; }
.shot:hover img{ transform:scale(1.04); }
.shot .cap{ position:absolute; left:0; right:0; bottom:0; padding:1.4rem 1.2rem 1.1rem; background:linear-gradient(to top, rgba(8,23,40,0.86), transparent); display:flex; justify-content:space-between; align-items:flex-end; gap:1rem; transform:translateY(8px); opacity:0; transition:opacity .5s var(--ease), transform .5s var(--ease); }
.shot:hover .cap, .shot:focus-visible .cap{ opacity:1; transform:translateY(0); }
@media (hover:none){ .shot .cap{ opacity:1; transform:none; background:linear-gradient(to top, rgba(8,16,28,0.9), rgba(8,16,28,0.1) 56%, transparent); } }
.shot .cap .t{ font-size:0.92rem; color:#fff; line-height:1.3; }
.shot .cap .m{ font-family:var(--mono); font-size:0.62rem; letter-spacing:0.06em; text-transform:uppercase; color:var(--azure); margin-top:0.25rem; }
.shot .cap .plus{ font-family:var(--mono); color:#fff; font-size:1rem; opacity:0.8; }
.shot.tall img{ aspect-ratio:3/4; } .shot.wide img{ aspect-ratio:16/10; } .shot.sq img{ aspect-ratio:1/1; }
@media (min-width:720px){ .shot.c4{ grid-column:span 4; } .shot.c5{ grid-column:span 5; } .shot.c6{ grid-column:span 6; } .shot.c7{ grid-column:span 7; } .shot.c8{ grid-column:span 8; } }

/* ============================================================
   STEPS / TIMELINE / ROOMS / SPEC / STATBAND
   ============================================================ */
.steps{ display:grid; grid-template-columns:1fr; gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); }
@media (min-width:820px){ .steps{ grid-template-columns:repeat(3,1fr); } }
.step{ background:var(--bg); padding:clamp(1.6rem,3vw,2.4rem); display:flex; flex-direction:column; gap:0.9rem; min-height:15rem; }
.step .si{ font-family:var(--mono); font-size:0.7rem; color:var(--accent); letter-spacing:0.08em; }
.step h3{ font-family:var(--display); font-weight:560; font-size:clamp(1.3rem,1.05rem+1vw,1.7rem); line-height:1.1; letter-spacing:-0.01em; }
.step p{ color:var(--fg-dim); font-size:0.95rem; }
.step .sx{ margin-top:auto; font-family:var(--mono); font-size:0.66rem; color:var(--fg-faint); }

.roomgrid{ display:grid; grid-template-columns:1fr; gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); }
@media (min-width:680px){ .roomgrid{ grid-template-columns:repeat(2,1fr); } }
.room{ background:var(--bg); padding:clamp(1.6rem,3vw,2.4rem); display:flex; flex-direction:column; gap:0.8rem; }
.room .ri{ font-family:var(--mono); font-size:0.7rem; color:var(--accent); letter-spacing:0.08em; }
.room h3{ font-family:var(--display); font-weight:560; font-size:clamp(1.4rem,1.1rem+1.1vw,1.9rem); line-height:1.08; letter-spacing:-0.01em; }
.room p{ color:var(--fg-dim); font-size:0.95rem; max-width:42ch; }
.room .rx{ margin-top:auto; padding-top:0.6rem; font-family:var(--mono); font-size:0.66rem; color:var(--fg-faint); }

.timeline{ border-top:1px solid var(--line-soft); }
.tl{ display:grid; grid-template-columns:auto 1fr; gap:clamp(1rem,3vw,2.4rem); padding:clamp(1.3rem,2.6vw,2rem) 0; border-bottom:1px solid var(--line-soft); align-items:start; }
.tl .tn{ font-family:var(--display); font-weight:560; font-size:clamp(1.6rem,1.1rem+1.6vw,2.6rem); color:var(--accent); line-height:1; min-width:2.4ch; }
.tl .tc h3{ font-family:var(--display); font-weight:560; font-size:clamp(1.2rem,1rem+0.8vw,1.55rem); line-height:1.12; margin-bottom:0.5rem; }
.tl .tc p{ color:var(--fg-dim); max-width:54ch; font-size:0.96rem; }
.tl .tc .tmeta{ margin-top:0.7rem; font-family:var(--mono); font-size:0.66rem; color:var(--fg-faint); letter-spacing:0.03em; text-transform:uppercase; }
.tl .tweek{ display:none; }
@media (min-width:760px){ .tl{ grid-template-columns:auto minmax(0,1fr) auto; } .tl .tweek{ display:block; font-family:var(--mono); font-size:0.68rem; color:var(--fg-faint); letter-spacing:0.04em; text-transform:uppercase; text-align:right; white-space:nowrap; padding-top:0.5rem; } }

.spec-table{ width:100%; border-collapse:collapse; }
.spec-table tr{ border-bottom:1px solid var(--line-soft); }
.spec-table td{ padding:0.95rem 0; vertical-align:baseline; }
.spec-table td:first-child{ color:var(--fg); font-size:0.98rem; padding-right:1.5rem; }
.spec-table td:last-child{ text-align:right; font-family:var(--mono); font-size:0.86rem; color:var(--accent); white-space:nowrap; }
@media (max-width:560px){ .spec-table td:last-child{ white-space:normal; } }
.spec-note{ margin-top:1.1rem; font-family:var(--mono); font-size:0.66rem; color:var(--fg-faint); }

.statband{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); }
@media (min-width:820px){ .statband{ grid-template-columns:repeat(4,1fr); } }
.statband .st{ background:var(--bg); padding:clamp(1.8rem,3vw,2.6rem) 1.4rem; }
.statband .st .v{ font-family:var(--display); font-weight:560; font-size:clamp(2.2rem,1.4rem+2.6vw,3.4rem); line-height:0.95; letter-spacing:-0.015em; color:var(--fg); }
.statband .st .v small{ font-size:0.4em; color:var(--accent); margin-left:0.15em; font-family:var(--mono); }
.statband .st .vl{ margin-top:0.7rem; font-size:0.8rem; color:var(--fg-faint); line-height:1.45; }

/* filter bar */
.filter-bar{ display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:clamp(2rem,4vw,3rem); }
.filter-bar button{ font-family:var(--mono); font-size:0.72rem; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; color:var(--fg-dim); padding:0.6rem 1.1rem; border:1px solid var(--line); border-radius:2px; transition:all .35s var(--ease); }
.filter-bar button:hover{ color:var(--fg); border-color:var(--accent); }
.filter-bar button.active{ color:var(--btn-fg); background:var(--btn-bg); border-color:var(--btn-bg); }

/* form */
.form-grid{ display:grid; grid-template-columns:1fr; gap:1.3rem; }
@media (min-width:620px){ .form-grid{ grid-template-columns:1fr 1fr; } .form-grid .full{ grid-column:1 / -1; } }
.field{ display:flex; flex-direction:column; gap:0.5rem; }
.field label{ font-family:var(--mono); font-size:0.7rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:var(--fg-dim); }
.field input, .field select, .field textarea{ font-family:var(--sans); font-size:1rem; color:var(--fg); background:var(--card); border:1px solid var(--line); border-radius:2px; padding:0.9rem 1rem; width:100%; transition:border-color .3s var(--ease); }
.field textarea{ min-height:9rem; resize:vertical; line-height:1.5; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:2px solid var(--accent); outline-offset:1px; border-color:var(--accent); }
.field input::placeholder, .field textarea::placeholder{ color:var(--fg-faint); }
.field select{ appearance:none; -webkit-appearance:none; background-image:linear-gradient(45deg,transparent 50%,var(--accent) 50%),linear-gradient(135deg,var(--accent) 50%,transparent 50%); background-position:calc(100% - 18px) 1.35rem, calc(100% - 12px) 1.35rem; background-size:6px 6px,6px 6px; background-repeat:no-repeat; }
.form-actions{ margin-top:1.8rem; display:flex; align-items:center; gap:1.4rem; flex-wrap:wrap; }
.form button[type=submit]{ --pad-y:1rem; --pad-x:2rem; }
.form-note{ font-family:var(--mono); font-size:0.68rem; color:var(--fg-faint); }

.contact-detail{ border-top:1px solid var(--line-soft); }
.contact-detail .cd{ padding:1.3rem 0; border-bottom:1px solid var(--line-soft); }
.contact-detail .cd .cl{ font-family:var(--mono); font-size:0.7rem; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--fg-faint); margin-bottom:0.5rem; }
.contact-detail .cd .cv{ font-size:1.05rem; color:var(--fg); }
.contact-detail .cd .cv a:hover{ color:var(--accent); }
.contact-detail .cd .cv.ph, .ph{ color:var(--pacific-deep); opacity:1; }
.night .cv.ph, .night .ph{ color:var(--azure); }

.credlist{ list-style:none; border-top:1px solid var(--line-soft); }
.credlist li{ display:grid; grid-template-columns:1fr; gap:0.3rem; padding:1.2rem 0; border-bottom:1px solid var(--line-soft); }
@media (min-width:680px){ .credlist li{ grid-template-columns:14rem 1fr; gap:2rem; } }
.credlist li .ck{ font-family:var(--mono); font-size:0.72rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:var(--fg-faint); padding-top:0.15rem; }
.credlist li .cvv{ color:var(--fg-dim); } .credlist li .cvv b{ color:var(--fg); font-weight:560; }

/* marquee */
.marquee{ overflow:hidden; border-block:1px solid var(--line); padding-block:1.1rem; white-space:nowrap; }
.marquee .track{ display:inline-flex; gap:2.5rem; animation:marq 38s linear infinite; }
.marquee .track span{ font-family:var(--display); font-style:italic; font-size:clamp(1.3rem,1rem+1.4vw,2rem); color:var(--fg); }
.marquee .track .dot{ color:var(--accent); font-style:normal; }
@keyframes marq{ to{ transform:translateX(-50%); } }

/* quote */
.quote{ text-align:center; }
.quote blockquote{ font-family:var(--display); font-weight:560; font-size:clamp(1.7rem,1.1rem+3vw,3.2rem); line-height:1.16; letter-spacing:-0.01em; max-width:24ch; margin-inline:auto; color:var(--fg); }
.quote blockquote .em{ font-style:italic; color:var(--accent); }
.quote .src{ margin-top:2rem; font-family:var(--mono); font-size:0.72rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--fg-faint); }

/* CTA */
.cta .eyebrow{ justify-content:center; }
.cta-inner{ text-align:center; display:flex; flex-direction:column; align-items:center; gap:1.6rem; }
.cta h2{ font-family:var(--display); font-weight:560; font-size:clamp(2.6rem,1.6rem+5vw,6.5rem); line-height:0.98; letter-spacing:-0.018em; max-width:16ch; }
.cta h2 .em{ font-style:italic; color:var(--accent); }
.cta .audiences{ display:flex; gap:0.9rem 1.4rem; flex-wrap:wrap; justify-content:center; font-family:var(--mono); font-size:0.72rem; letter-spacing:0.06em; text-transform:uppercase; color:var(--fg-faint); }
.cta .audiences span{ display:inline-flex; align-items:center; gap:0.6rem; }
.cta .audiences span::before{ content:""; width:5px; height:5px; background:var(--accent); transform:rotate(45deg); }

/* page hero (interior) */
.phero{ padding-top:clamp(8rem,16vh,11rem); padding-bottom:clamp(2.5rem,5vw,4rem); border-bottom:1px solid var(--line-soft); position:relative; overflow:hidden; }
.phero h1{ font-family:var(--display); font-weight:560; font-size:clamp(3.1rem,2rem+6vw,7.4rem); line-height:0.94; letter-spacing:-0.02em; max-width:17ch; margin-top:1.3rem; position:relative; z-index:2; }
.phero h1 .em{ font-style:italic; color:var(--accent); }
.phero .lede{ margin-top:1.6rem; max-width:54ch; position:relative; z-index:2; }
.phero-meta{ margin-top:2.4rem; display:flex; flex-wrap:wrap; gap:1.4rem 2.5rem; font-family:var(--mono); font-size:0.72rem; letter-spacing:0.04em; text-transform:uppercase; color:var(--fg-faint); position:relative; z-index:2; }
.phero-meta b{ color:var(--fg); font-weight:400; display:block; margin-top:0.3rem; font-size:0.86rem; }

/* footer */
.footer{ background:var(--ink-2); color:#EEF1F5; --fg:#EEF1F5; --fg-dim:#A9BBD0; --fg-faint:#8197b0; --line:rgba(233,238,245,0.14); --line-soft:rgba(233,238,245,0.08); --accent:var(--azure); border-top:1px solid rgba(233,238,245,0.12); padding-block:clamp(3.5rem,7vw,5.5rem) 2.5rem; }
.footer-grid{ display:grid; grid-template-columns:1fr; gap:2.5rem; }
@media (min-width:820px){ .footer-grid{ grid-template-columns:1.6fr 1fr 1fr; gap:3rem; } }
.footer .fbrand .mark{ font-family:var(--display); font-size:1.8rem; font-weight:600; }
.footer-logo-link{ display:inline-block; }
.footer-logo{ height:clamp(30px, 2rem + 0.4vw, 42px); width:auto; display:block; }
.footer .fbrand p{ margin-top:1rem; max-width:34ch; color:var(--fg-dim); font-size:0.95rem; }
.footer .fcol h2{ font-family:var(--mono); font-size:0.7rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--fg-faint); margin-bottom:1.1rem; font-weight:500; }
.footer .fcol a, .footer .fcol p{ display:block; color:var(--fg-dim); font-size:0.95rem; padding:0.28rem 0; transition:color .3s var(--ease); }
.footer .fcol a:hover{ color:var(--azure); }
.footer-base{ margin-top:3.5rem; padding-top:1.5rem; border-top:1px solid var(--line-soft); display:flex; flex-wrap:wrap; gap:0.6rem 1.5rem; justify-content:space-between; align-items:center; font-family:var(--mono); font-size:0.68rem; letter-spacing:0.04em; color:var(--fg-faint); text-transform:uppercase; }

/* ============================================================
   LIGHTBOX (dialog)
   ============================================================ */
.lightbox{ position:fixed; inset:0; z-index:200; background:rgba(8,16,28,0.96); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center; padding:clamp(1rem,4vw,3rem); opacity:0; pointer-events:none; transition:opacity .4s var(--ease); }
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-width:100%; max-height:82vh; object-fit:contain; border:1px solid rgba(255,255,255,0.12); transform:scale(0.98); transition:transform .5s var(--ease); }
.lightbox.open img{ transform:scale(1); }
.lightbox .lb-cap{ position:absolute; left:0; right:0; bottom:clamp(1rem,3vw,2rem); text-align:center; font-family:var(--mono); font-size:0.72rem; letter-spacing:0.06em; text-transform:uppercase; color:#cdd7e3; }
.lightbox .lb-cap b{ color:var(--azure); font-weight:400; }
.lb-close{ position:absolute; top:clamp(1rem,3vw,1.8rem); right:clamp(1rem,3vw,1.8rem); width:44px; height:44px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,0.2); border-radius:50%; color:#fff; }
.lb-close:hover{ border-color:var(--azure); color:var(--azure); }
.lb-nav{ position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,0.2); border-radius:50%; color:#fff; font-family:var(--mono); }
.lb-nav:hover{ border-color:var(--azure); color:var(--azure); }
.lb-prev{ left:clamp(0.5rem,2vw,1.5rem); } .lb-next{ right:clamp(0.5rem,2vw,1.5rem); }
@media (max-width:640px){ .lb-nav{ display:none; } }

/* reveal */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal.d1{ transition-delay:.08s; } .reveal.d2{ transition-delay:.16s; } .reveal.d3{ transition-delay:.24s; }

/* utility */
.center{ text-align:center; }
.mt-s{ margin-top:1rem; } .mt-m{ margin-top:1.5rem; } .mt-l{ margin-top:clamp(1.6rem,3vw,2.6rem); }

/* responsive nav: hamburger before crowding */
@media (max-width:1024px){ .nav-links{ display:none; } .nav-toggle{ display:block; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal, .layer{ opacity:1 !important; transform:none !important; transition:none; }
  .cineframe img{ animation:none; }
  .cineframe .cf-rec::before{ animation:none; }
  .marquee .track{ animation:none; }
  .wave path{ animation:none !important; }
  .hero-scroll .ln::after{ animation:none; }
}

/* ============================================================
   v3 - immersive photo hero, stats, three divisions, values, faq
   (matches the reference aesthetic; elevated)
   ============================================================ */

/* full-bleed photo hero */
.hero--img{ position:relative; min-height:92svh; display:flex; align-items:center; overflow:hidden; isolation:isolate; padding-top:5rem; }
.hero--img .hero-bg, .hero--img .hero-rot{ position:absolute; inset:0; z-index:0; }
.hero--img .hero-rot{ opacity:0; }
.hero--img .hero-bg picture, .hero--img .hero-bg img, .hero--img .hero-rot picture, .hero--img .hero-bg img{ animation:kenburns 18s var(--ease-out) both; }
@keyframes kenburns{ from{ transform:scale(1.07); } to{ transform:scale(1); } }
.hero--img::after{ content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(100deg, rgba(8,15,27,0.95) 0%, rgba(8,15,27,0.86) 24%, rgba(8,15,27,0.52) 50%, rgba(8,15,27,0.34) 74%, rgba(8,15,27,0.52) 100%),
             linear-gradient(to top, rgba(8,15,27,0.72), transparent 40%),
             linear-gradient(to bottom, rgba(8,15,27,0.45), transparent 20%); }
.hero--img .hero-inner{ width:100%; max-width:clamp(1600px, 92vw, 2080px); margin-inline:auto; padding-inline:var(--gut); color:#fff; position:relative; z-index:2; }
.hero--img .eyebrow{ color:rgba(234,240,248,0.82); }
.hero--img .eyebrow::before{ background:var(--azure); }
.hero--img h1{ font-family:var(--display); font-weight:540; font-size:clamp(3.3rem,2.4rem+4vw,7rem); line-height:0.95; letter-spacing:-0.022em; max-width:14ch; margin-top:1.2rem; color:#fff; text-shadow:0 2px 34px rgba(8,16,28,0.42); }
.hero--img h1 .em{ font-style:italic; font-weight:480; color:#d6e6f6; }
.hero--img .hero-sub{ margin-top:1.5rem; max-width:46ch; color:rgba(234,240,248,0.92); font-size:clamp(1.05rem,0.96rem+0.5vw,1.28rem); line-height:1.5; }
.hero--img .hero-sub b{ color:#fff; font-weight:600; }
.hero--img .hero-actions{ margin-top:2.2rem; display:flex; align-items:center; gap:1.2rem; flex-wrap:wrap; }
.hero--img .btn--ghost{ color:#fff; border-color:rgba(255,255,255,0.34); }
.hero--img .btn--ghost:hover{ border-color:#fff; color:#fff; background:rgba(255,255,255,0.08); }
.hero--img .hero-strip{ position:absolute; left:var(--gut); right:var(--gut); bottom:1.6rem; z-index:2; display:flex; gap:1.4rem; align-items:center; border-top:1px solid rgba(234,240,248,0.18); padding-top:1rem; font-family:var(--sans); font-size:0.74rem; letter-spacing:0.04em; text-transform:uppercase; color:rgba(234,240,248,0.7); }
.hero--img .hero-strip .cur{ color:#fff; display:inline-flex; align-items:center; gap:0.5em; }
.hero--img .hero-strip .cur::before{ content:""; width:6px; height:6px; background:var(--azure); }
.hero-dots{ margin-left:auto; display:flex; gap:0.5rem; }
.hero-dots button{ width:26px; height:2px; background:rgba(255,255,255,0.3); border-radius:2px; transition:background .4s var(--ease); }
.hero-dots button.on{ background:#fff; }

/* --- homepage hero: clean full-bleed photo, shown exactly as provided (no wash, no overlay text) --- */
.hero--img.hero--light::after{ background:none; }
.hero--img.hero--light .hero-bg img{ object-position:center 50%; animation:none; }

/* eyebrow on serif sections needs the sans for v5 match */
.eyebrow{ font-family:var(--sans); font-weight:600; letter-spacing:0.16em; }

/* stat row */
.statrow{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.5rem,4vw,3rem); }
@media (max-width:640px){ .statrow{ grid-template-columns:1fr; gap:1.5rem; } }
.stat .sv{ font-family:var(--display); font-weight:430; font-size:clamp(3.2rem,2rem+4vw,5.2rem); line-height:0.9; letter-spacing:-0.022em; color:var(--ink); }
.stat .sv small{ font-size:0.5em; color:var(--accent); }
.stat .sl{ margin-top:0.6rem; font-size:0.86rem; color:var(--fg-faint); line-height:1.45; max-width:24ch; }

/* three divisions */
.divisions{ display:grid; grid-template-columns:1fr; gap:clamp(1.5rem,3vw,2.2rem); }
.division{ display:grid; grid-template-columns:1fr; gap:1.4rem; align-items:center; }
@media (min-width:860px){ .division{ grid-template-columns:1.05fr 1fr; gap:clamp(2.5rem,5vw,4.5rem); }
  .division.flip .division-media{ order:2; } }
.division-media{ position:relative; overflow:hidden; border-radius:5px; box-shadow:var(--card-sh); background:var(--card); }
.division-media img{ width:100%; aspect-ratio:5/3.4; object-fit:cover; transition:transform 1.1s var(--ease); }
.division:hover .division-media img{ transform:scale(1.04); }
.division-media .tag{ position:absolute; left:0.9rem; bottom:0.9rem; font-family:var(--sans); font-size:0.66rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:#fff; background:rgba(11,21,40,0.6); backdrop-filter:blur(8px); padding:0.4rem 0.7rem; border-radius:2px; }
.division-copy .di{ font-family:var(--sans); font-size:0.72rem; font-weight:600; letter-spacing:0.16em; text-transform:uppercase; color:var(--accent); }
.division-copy h3{ font-family:var(--display); font-weight:520; font-size:clamp(1.9rem,1.4rem+2.2vw,3rem); line-height:1.04; letter-spacing:-0.014em; margin:0.7rem 0 1rem; }
.division-copy p{ color:var(--fg-dim); max-width:46ch; }
.tags{ display:flex; flex-wrap:wrap; gap:0.5rem; margin:1.4rem 0 1.6rem; }
.tags .tag{ font-family:var(--sans); font-size:0.74rem; letter-spacing:0.02em; color:var(--fg-dim); padding:0.42rem 0.85rem; border:1px solid var(--line); border-radius:100px; background:var(--card); }

/* values */
.values{ display:grid; grid-template-columns:1fr; gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); border-radius:4px; overflow:hidden; }
@media (min-width:560px){ .values{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:980px){ .values{ grid-template-columns:repeat(4,1fr); } }
.value{ background:var(--bg); padding:clamp(1.5rem,2.6vw,2.1rem); display:flex; flex-direction:column; gap:0.7rem; min-height:12rem; }
.value .vn{ font-family:var(--mono); font-size:0.7rem; color:var(--accent); }
.value h3{ font-family:var(--display); font-weight:560; font-size:clamp(1.2rem,1rem+0.7vw,1.5rem); line-height:1.1; }
.value p{ color:var(--fg-dim); font-size:0.9rem; }

/* faq */
.faq{ border-top:1px solid var(--line-soft); }
.faq details{ border-bottom:1px solid var(--line-soft); }
.faq summary{ list-style:none; cursor:pointer; padding:1.4rem 0; display:flex; justify-content:space-between; align-items:center; gap:1.5rem; font-family:var(--display); font-weight:520; font-size:clamp(1.15rem,1rem+0.6vw,1.45rem); color:var(--fg); }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary .qm{ flex:0 0 auto; width:24px; height:24px; position:relative; }
.faq summary .qm::before, .faq summary .qm::after{ content:""; position:absolute; background:var(--accent); transition:transform .4s var(--ease); }
.faq summary .qm::before{ left:0; right:0; top:50%; height:1.5px; transform:translateY(-50%); }
.faq summary .qm::after{ top:0; bottom:0; left:50%; width:1.5px; transform:translateX(-50%); }
.faq details[open] summary .qm::after{ transform:translateX(-50%) scaleY(0); }
.faq .fa{ padding:0 0 1.5rem; color:var(--fg-dim); max-width:62ch; }

/* image figure with float shadow (generic) */
.figure-float{ border-radius:5px; overflow:hidden; box-shadow:var(--card-sh); }

/* tighten phero to allow a topo + warmer feel already handled */

/* audit mode (screenshot aid; no effect without ?audit) */
.audit .reveal{ opacity:1 !important; transform:none !important; }
.audit .section-dia .layer{ opacity:1 !important; transform:none !important; }
.audit .cineframe img, .audit .hero-bg img{ animation:none !important; }
.audit .hero--img{ height:760px !important; min-height:0 !important; }
.audit .hero--img .hero-rot{ display:none !important; }

/* ============================================================
   ELEVATION PASS - fixes + craft
   ============================================================ */
/* missing utility: hide secondary content on mobile */
@media (max-width:640px){ .hide-m{ display:none !important; } }
@media (max-width:720px){ .hero--img .eyebrow .ph{ display:none; } }

/* nav must read light while it floats over a photo hero (until scrolled) */
body:has(.hero--img) .nav:not(.scrolled){ color:#fff; }
body:has(.hero--img) .nav:not(.scrolled) .brand,
body:has(.hero--img) .nav:not(.scrolled) .brand .mark{ color:#fff; }
body:has(.hero--img) .nav:not(.scrolled) .brand .co{ color:rgba(255,255,255,0.66); border-left-color:rgba(255,255,255,0.28); }
/* over a dark photo hero, show the white knockout wordmark */
body:has(.hero--img) .nav:not(.scrolled) .brand-logo--dark{ display:none; }
body:has(.hero--img) .nav:not(.scrolled) .brand-logo--light{ display:block; }
body:has(.hero--img) .nav:not(.scrolled) .nav-links a:not(.btn){ color:rgba(255,255,255,0.84); }
body:has(.hero--img) .nav:not(.scrolled) .nav-links a:not(.btn):hover{ color:#fff; }
body:has(.hero--img) .nav:not(.scrolled) .nav-toggle span{ background:#fff; }
body:has(.hero--img) .nav:not(.scrolled) .btn{ background:rgba(255,255,255,0.12); color:#fff; border-color:rgba(255,255,255,0.42); }
body:has(.hero--img) .nav:not(.scrolled) .btn:hover{ background:#fff; color:var(--ink); border-color:#fff; }

/* homepage light hero: nav reads dark navy over the bright photo (until scrolled) */
body:has(.hero--light) .nav:not(.scrolled){ color:var(--ink); }
body:has(.hero--light) .nav:not(.scrolled) .brand,
body:has(.hero--light) .nav:not(.scrolled) .brand .mark{ color:var(--ink); }
body:has(.hero--light) .nav:not(.scrolled) .brand .co{ color:rgba(13,27,45,0.62); border-left-color:rgba(13,27,45,0.22); }
/* force the dark wordmark back over the bright home hero (more specific than the dark-hero rule above) */
body:has(.hero--light) .nav:not(.scrolled) .brand-logo--light{ display:none; }
body:has(.hero--light) .nav:not(.scrolled) .brand-logo--dark{ display:block; }
/* soft top scrim so the top-right links read over the bright photo */
body:has(.hero--light) .nav:not(.scrolled)::before{ content:""; position:absolute; inset:0; z-index:-1; pointer-events:none; background:linear-gradient(to bottom, rgba(255,255,255,0.6), transparent); }
body:has(.hero--light) .nav:not(.scrolled) .nav-links a:not(.btn){ color:rgba(13,27,45,0.92); }
body:has(.hero--light) .nav:not(.scrolled) .nav-links a:not(.btn):hover{ color:var(--ink); }
body:has(.hero--light) .nav:not(.scrolled) .nav-toggle span{ background:var(--ink); }
body:has(.hero--light) .nav:not(.scrolled) .btn{ background:rgba(13,27,45,0.05); color:var(--ink); border-color:rgba(13,27,45,0.30); }
body:has(.hero--light) .nav:not(.scrolled) .btn:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }

/* mobile hero: clear the nav, single-line strip */
@media (max-width:640px){
  .hero--img{ padding-top:6.5rem; }
  .hero--img .hero-inner{ padding-bottom:4.5rem; }
  .hero--img .hero-strip{ gap:0.9rem; font-size:0.7rem; }
}
/* CTA audiences stack cleanly on small screens */
@media (max-width:520px){ .cta .audiences{ flex-direction:column; align-items:center; gap:0.7rem; } }

/* steps 2-col modifier (replaces inline 2-col that broke mobile) */
@media (min-width:760px){ .steps--2{ grid-template-columns:repeat(2,1fr); } }

/* FAQ answer reveal */
.faq .fa{ overflow:hidden; }
.faq details[open] .fa{ animation:faIn .45s var(--ease) both; }
@keyframes faIn{ from{ opacity:0; transform:translateY(-7px); } to{ opacity:1; transform:translateY(0); } }

/* lightbox crossfade on prev/next */
.lightbox img{ transition:opacity .3s var(--ease), transform .5s var(--ease); }
.lightbox img.swapping{ opacity:0; }

/* graceful lazy image load-in (JS-gated so no-JS still shows images) */
html.js img[loading="lazy"]:not(.is-loaded){ opacity:0; }
html.js img[loading="lazy"]{ transition:opacity .7s var(--ease); }
.audit img[loading="lazy"]{ opacity:1 !important; }

/* subtle inner edge to crisp the floating cards (masks softer residential shots) */
.division-media::after, .practice-media::after{ content:""; position:absolute; inset:0; box-shadow:inset 0 0 70px rgba(11,21,40,0.09); pointer-events:none; border-radius:inherit; }

/* keyboard: nav links draw the hover underline on focus */
.nav-links a:not(.btn):focus-visible{ outline:none; }
.nav-links a:not(.btn):focus-visible::after{ transform:scaleX(1); }

/* day↔night seam */
.section.night{ box-shadow:inset 0 1px 0 rgba(95,162,222,0.16); }

/* cross-section signature: room→structure axis + "sound in" cue */
.section-dia{ position:relative; }
.section-dia .axis{ position:absolute; left:calc(1.6rem + 1.2rem - 1px); top:2.4rem; bottom:2.4rem; width:1px; background:linear-gradient(180deg, var(--azure), rgba(95,162,222,0.15)); opacity:.6; }
.section-dia .soundcue{ font-family:var(--mono); font-size:0.62rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--azure); display:flex; align-items:center; gap:0.5rem; padding-bottom:0.4rem; }
.section-dia .soundcue::after{ content:""; height:1px; background:linear-gradient(90deg,var(--azure),transparent); opacity:0; transition:opacity 1s .6s var(--ease); }
.section-dia.in .soundcue::after{ flex:1; opacity:.7; }
.layer.decouple .meta .nm::after{ content:" · sound stops here"; color:var(--azure); font-size:0.78em; }


/* ============================================================
   CUSTOM CURSOR - the "box" follower (desktop, fine pointer only)
   ============================================================ */
@media (hover:hover) and (pointer:fine){
  html.cursor-on{ cursor:none; }
  html.cursor-on a, html.cursor-on button, html.cursor-on summary, html.cursor-on .shot{ cursor:none; }
  html.cursor-on input, html.cursor-on textarea, html.cursor-on select{ cursor:auto; }
  .cur-ring, .cur-dot{ position:fixed; top:0; left:0; z-index:9998; pointer-events:none; will-change:transform; }
  .cur-ring{ width:30px; height:30px; margin:-15px 0 0 -15px; border:1.4px solid var(--accent); border-radius:4px;
    transition:width .28s var(--ease), height .28s var(--ease), margin .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), opacity .3s; mix-blend-mode:normal; }
  .cur-dot{ width:5px; height:5px; margin:-2.5px 0 0 -2.5px; background:var(--accent); border-radius:50%; transition:opacity .3s; }
  html.cursor-on.cur-hover .cur-ring{ width:58px; height:58px; margin:-29px 0 0 -29px; background:rgba(46,107,176,0.10); border-color:var(--accent); }
  html.cursor-on.cur-hover .cur-dot{ opacity:0; }
  html.cursor-on.cur-view .cur-ring{ width:74px; height:74px; margin:-37px 0 0 -37px; background:rgba(13,27,45,0.55); border-color:transparent; backdrop-filter:blur(2px); }
  .cur-ring::after{ content:""; opacity:0; color:#fff; font-family:var(--mono); font-size:0.6rem; letter-spacing:0.12em; text-transform:uppercase; transition:opacity .25s; }
  html.cursor-on.cur-view .cur-ring::after{ content:"View"; opacity:1; }
  html.cursor-on.cur-dark .cur-ring{ border-color:#fff; }
  html.cursor-on.cur-dark .cur-dot{ background:#fff; }
}

/* ============================================================
   CLIENTS - trusted by (social proof)
   ============================================================ */
.clients-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); border-radius:5px; overflow:hidden; }
@media (min-width:680px){ .clients-grid{ grid-template-columns:repeat(4,1fr); } }
.client{ background:var(--bg); padding:clamp(1.5rem,2.6vw,2.1rem) clamp(1.3rem,2vw,1.7rem); display:flex; flex-direction:column; gap:0.35rem; min-height:8.5rem; justify-content:flex-end; transition:background .35s var(--ease); }
.client:hover{ background:var(--paper-2); }
.night .client:hover{ background:var(--ink-3); }
.client .cn{ font-family:var(--display); font-weight:520; font-size:clamp(1.15rem,1rem+0.6vw,1.5rem); line-height:1.08; letter-spacing:-0.01em; color:var(--fg); }
.client .cr{ font-family:var(--mono); font-size:0.64rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--accent); }
.client .cr.muted{ color:var(--fg-faint); }

/* hero text entrance */
.hero--img .hero-inner > *{ animation:heroIn .85s var(--ease) both; }
.hero--img .hero-inner > *:nth-child(1){ animation-delay:.04s; }
.hero--img .hero-inner > *:nth-child(2){ animation-delay:.12s; }
.hero--img .hero-inner > *:nth-child(3){ animation-delay:.20s; }
.hero--img .hero-inner > *:nth-child(4){ animation-delay:.28s; }
.hero--img .hero-inner > *:nth-child(5){ animation-delay:.36s; }
@keyframes heroIn{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce){ .hero--img .hero-inner > *{ animation:none; } .cur-ring,.cur-dot{ transition:none; } }
.audit .hero--img .hero-inner > *{ animation:none !important; }


/* ============================================================
   SCALE AUDIT - mobile + micro-label fixes
   ============================================================ */
/* cross-section reflows on phones (was voided/left-pinned) */
@media (max-width:600px){
  .section-dia .layer{ gap:0.8rem; align-items:center; }
  .layer .bar{ --w:clamp(40px,11vw,64px) !important; }
  .layer .meta{ flex:1; }
  .section-dia .axis{ left:calc(var(--gut) + 0.8rem); }
}
/* mono micro-labels never below ~10.5px on phones */
.shot .cap .m{ font-size:clamp(0.66rem,0.6rem+0.2vw,0.7rem); }
.cineframe .cf-meta, .cineframe .cf-rec{ font-size:clamp(0.64rem,0.58rem+0.2vw,0.68rem); }
.layer .meta .sp{ font-size:0.7rem; }
/* mobile hero strip flows in document order (no overlap) */
@media (max-width:640px){
  .hero--img .hero-strip{ position:static; margin-top:1.4rem; flex-wrap:wrap; }
  .hero--img .hero-inner{ padding-bottom:2.5rem; }
}


/* skip link (keyboard a11y) */
.skip-link{ position:absolute; left:-999px; top:0; z-index:200; background:var(--ink); color:#fff;
  font-family:var(--mono); font-size:0.8rem; padding:0.7rem 1.1rem; border-radius:0 0 3px 0; }
.skip-link:focus{ left:0; outline:2px solid var(--azure); outline-offset:2px; }
#main{ scroll-margin-top:6rem; }
/* any anchored section clears the fixed nav (e.g. #studios) */
section[id]{ scroll-margin-top:clamp(4.5rem, 8vh, 6rem); }

/* contact form confirmation */
.form-sent{ margin-top:1.4rem; padding:1.1rem 1.3rem; border:1px solid var(--accent); border-radius:3px;
  background:rgba(46,107,176,0.06); color:var(--fg); font-size:0.96rem; display:none; }
.form-sent.show{ display:block; }
.form-sent a{ color:var(--accent); text-decoration:underline; }
.form-sent.is-error{ border-color:#C0392B; background:rgba(192,57,43,0.06); }

/* ============================================================
   REFINEMENTS - stat band, build-sequence "so what", client cards
   ============================================================ */
/* stat band: ruled, with a Pacific accent tick (data-sheet feel) */
.statrow .stat{ position:relative; padding-top:1.1rem; border-top:1.5px solid var(--line); }
.statrow .stat::before{ content:""; position:absolute; top:-1.5px; left:0; width:2.6rem; height:1.5px; background:var(--accent); }
.statrow{ gap:clamp(1.5rem,4vw,3.5rem); }
.stat .sv{ font-variant-numeric:tabular-nums; }

/* build-sequence: the punchy "so what" line */
.tl .tc .twhy{ margin-top:0.6rem; font-size:0.95rem; line-height:1.4; color:var(--accent); font-weight:500; max-width:56ch; }
.tl .tc .twhy::before{ content:"\2192\00a0"; opacity:0.65; }
.tl .tweek{ opacity:0.7; }

/* client cards: index + hover top-accent */
.client{ position:relative; padding-top:1.5rem; }
.client .ci{ font-family:var(--mono); font-size:0.64rem; letter-spacing:0.06em; color:var(--fg-faint); margin-bottom:auto; }
.client .cn{ margin-top:0.3rem; }
.client::after{ content:""; position:absolute; top:0; left:0; right:0; height:2px; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform .45s var(--ease); }
.client:hover::after{ transform:scaleX(1); }

/* hero images: authoritative fill + crop (subject-forward, not ceiling) */
.hero--img .hero-bg img, .hero--img .hero-rot img{ width:100%; height:100%; object-fit:cover; object-position:center 58%; }

/* ===== 6/22 GO-LIVE PASS ===== */
/* (1) Logo bigger + crisp */
.brand-logo{ height:clamp(34px, 1.9rem + 0.9vw, 50px); }
.footer-logo{ height:clamp(34px, 2.1rem + 0.5vw, 46px); }

/* (2) Gallery caption no-overlap (PDF p4 - title + azure meta were colliding) */
.shot .cap > span:first-child{ display:flex; flex-direction:column; gap:0.3rem; min-width:0; }
.shot .cap .t, .shot .cap .m{ display:block; }
.shot .cap .m{ margin-top:0; }

/* (3) RC "01 The same standard" - normalize the two paragraphs + grid balance (scoped to .rc-standard) */
.rc-standard .statement-body{ max-width:62ch; }
.rc-standard .statement-body p.lede, .rc-standard .statement-body p.dim{ font-size:clamp(1.08rem, 1rem + 0.55vw, 1.34rem); line-height:1.58; color:var(--fg-dim); font-weight:430; }
.rc-standard .statement-body p + p{ margin-top:1.15rem; }
@media (min-width:900px){ .rc-standard .grid{ grid-template-columns:0.85fr 1.15fr; gap:clamp(2.5rem,4vw,4rem); } }

/* (4) RC 03 city on its own line (works with the <br>) */
.sec-h .em{ display:inline-block; }

/* (5) About page - refined editorial layout matching the reference mockup:
   moderate elegant headline, top-aligned two columns, comfortable body measure, strong whitespace */
.about-firm{ padding-top:clamp(6rem, 4rem + 4vw, 8.5rem); }
.about-firm .grid > div:first-child{ max-width:none; }
.about-firm .statement-head{ font-size:clamp(1.9rem, 1.3rem + 1.5vw, 2.9rem); line-height:1.1; letter-spacing:-0.02em; }
@media (min-width:900px){
  .about-firm .grid{ grid-template-columns:0.85fr 1.15fr; align-items:start; gap:clamp(3rem,5.5vw,6.5rem); }
}
.about-firm .statement-body{ max-width:50ch; }
.about-firm .statement-body p{ color:var(--fg); font-size:clamp(0.98rem, 0.94rem + 0.22vw, 1.06rem); line-height:1.65; }
.about-firm .statement-body p + p{ margin-top:1.3rem; }
.about-quote{ font-family:var(--display); font-weight:540; font-size:clamp(1.7rem, 1.1rem + 2.7vw, 2.9rem); line-height:1.16; letter-spacing:-0.01em; color:var(--fg); max-width:26ch; margin-block:clamp(2.8rem,6vw,4.6rem); }
.about-quote .em{ font-style:italic; color:var(--accent); }
.about-cred{ margin-top:clamp(1.6rem,3vw,2.4rem); }

/* (6) Contact centered single column */
.contact-solo{ max-width:680px; margin-inline:auto; }
.contact-solo .contact-intro{ text-align:center; margin-bottom:clamp(2rem,4vw,3rem); }
.contact-solo .contact-intro .eyebrow{ justify-content:center; }
.contact-solo .form-actions{ flex-direction:column; align-items:center; text-align:center; gap:0.9rem; }

/* (7) Required asterisk */
.field label .req{ color:#C0392B; margin-left:0.12em; font-weight:600; }

/* (8) Contact hero a touch bigger (PDF p9) */
.phero h1{ font-size:clamp(3.3rem, 2.2rem + 6.2vw, 8rem); }

/* (9) Roster name stacking (keep existing .cc-name font/size/color) */
.cc-name{ display:flex; flex-direction:column; }
.cc-fn, .cc-ln{ display:block; }
