/* ===================================================================
   SOUND DEVICES — concept site design system
   Concept by Boring Stories. Cobalt as emitted light, near-black base,
   warm paper ivory. Editorial documentary register.
   Display: Clash Display · Body: Switzer · Spec: Space Mono.
   =================================================================== */

:root {
  /* --- ink (near-black, faint blue undertone) --- */
  --ink:       #0C0E12;
  --ink-1:     #10131A;
  --ink-2:     #161A23;
  --ink-3:     #1C212B;
  --ink-card:  #141822;

  /* --- brand --- */
  --accent:      #1B4DC8;   /* Sound Devices cobalt — emitted, never a fill */
  --accent-lift: #4C82F0;   /* brightened cobalt, interactive on dark (AA) */
  --accent-btn:  #2A5BCF;   /* darker cobalt for white-on-fill buttons (AA 4.5+) */
  --secondary:   #98A1B1;   /* cool steel gray — captions, metadata, dividers (AA) */
  --signal:      #C9462C;   /* restrained recorder-red — REC/peak, used twice total */

  /* --- paper (light) --- */
  --paper:    #F4F1EA;      /* warm paper ivory */
  --paper-2:  #ECE8DE;
  --paper-3:  #E2DDD1;

  /* --- type colors --- */
  --on-ink:        #ECEEF3;
  --on-ink-soft:   rgba(236,238,243,.78);
  --on-ink-faint:  rgba(236,238,243,.40);
  --on-ink-meta:   rgba(236,238,243,.66);
  --on-paper:      #14171D;
  --on-paper-soft: #565C66;

  /* --- lines (no 1px solid gray anywhere) --- */
  --hair-ink:    rgba(236,238,243,.10);
  --hair-ink-2:  rgba(236,238,243,.055);
  --hair-paper:  rgba(20,23,29,.12);
  --hair-paper-2:rgba(20,23,29,.06);

  /* --- type --- */
  --display: "Clash Display", "Switzer", system-ui, sans-serif;
  --body:    "Switzer", system-ui, -apple-system, sans-serif;
  --mono:    "Space Mono", ui-monospace, "SF Mono", monospace;

  /* --- motion (custom cubic-bezier only) --- */
  --ease:      cubic-bezier(.22,.61,.36,1);   /* settled entrance */
  --ease-soft: cubic-bezier(.4,.08,.1,1);

  /* --- rhythm --- */
  --gutter: clamp(20px, 5vw, 64px);
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--on-ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent-lift); color: #fff; }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(6rem, 12vh, 10rem); position: relative; }
.section-paper   { background: var(--paper);   color: var(--on-paper); }
.section-paper-2 { background: var(--paper-2); color: var(--on-paper); }
.section-ink-1   { background: var(--ink-1); }
.section-ink-2   { background: var(--ink-2); }

/* ---------- type ---------- */
.display, .h1, h1.display {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.4rem, 6.4vw, 5.4rem);
  line-height: .98; letter-spacing: -.018em; margin: 0;
}
h1, h2, h3, h4 { font-family: var(--display); margin: 0; font-weight: 600; line-height: 1.04; letter-spacing: -.015em; }
.h2 { font-size: clamp(1.9rem, 4.4vw, 3.3rem); line-height: 1.04; letter-spacing: -.018em; font-weight: 600; }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.85rem); letter-spacing: -.012em; font-weight: 500; }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.3rem); line-height: 1.58; color: var(--on-ink-soft); max-width: 56ch; }
.section-paper .lead, .section-paper-2 .lead { color: var(--on-paper-soft); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* eyebrow — quiet mono label, no pill, no dot */
.eyebrow {
  display: inline-block;
  font-family: var(--mono); font-size: 11.5px; font-weight: 400;
  text-transform: uppercase; letter-spacing: .24em;
  color: var(--secondary);
}
.section-paper .eyebrow, .section-paper-2 .eyebrow { color: var(--on-paper-soft); }
.eyebrow.accent { color: var(--accent-lift); }
.section-paper .eyebrow.accent { color: var(--accent); }
.eyebrow.signal { color: var(--signal); }

.mono-label { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--on-ink-faint); text-transform: uppercase; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .85em;
  font-family: var(--body); font-weight: 500; font-size: 15px;
  padding: 13px 16px 13px 24px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .55s var(--ease), background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(.975); }
.btn .ico {
  width: 30px; height: 30px; border-radius: 999px;
  display: grid; place-items: center; flex: none;
  transition: transform .55s var(--ease), background .45s var(--ease);
}
.btn .ico svg { width: 14px; height: 14px; }
.btn:hover .ico { transform: translate(3px,-1px); }

.btn-primary { background: var(--accent-btn); color: #fff; }
.btn-primary .ico { background: rgba(255,255,255,.18); }
.btn-primary:hover { background: var(--accent-lift); }
.btn-ghost { background: rgba(236,238,243,.03); color: var(--on-ink); border-color: var(--hair-ink); }
.btn-ghost .ico { background: rgba(236,238,243,.07); }
.btn-ghost:hover { background: rgba(236,238,243,.07); }
.section-paper .btn-ghost, .section-paper-2 .btn-ghost { color: var(--on-paper); border-color: var(--hair-paper); background: rgba(20,23,29,.02); }
.section-paper .btn-ghost:hover, .section-paper-2 .btn-ghost:hover { background: rgba(20,23,29,.05); }

.textlink { display:inline-flex; align-items:center; gap:.5em; font-weight:500; color: var(--accent-lift); transition: gap .45s var(--ease); }
.section-paper .textlink, .section-paper-2 .textlink { color: var(--accent); }
.textlink:hover { gap: .85em; }
.textlink svg { transition: transform .45s var(--ease); }

/* ---------- double-bezel card ---------- */
.shell {
  background: rgba(236,238,243,.035);
  border: 1px solid var(--hair-ink);
  border-radius: 26px; padding: 7px;
  box-shadow: 0 1px 2px rgba(12,14,18,.04), 0 18px 50px -34px rgba(12,14,18,.9);
}
.shell > .core {
  background: var(--ink-card);
  border-radius: 20px;
  box-shadow: inset 0 1px 1px rgba(236,238,243,.05);
  overflow: hidden; height: 100%;
}
.section-paper .shell, .section-paper-2 .shell {
  background: rgba(20,23,29,.035); border-color: var(--hair-paper);
  box-shadow: 0 1px 2px rgba(12,14,18,.04), 0 18px 48px -34px rgba(12,14,18,.28);
}
.section-paper .shell > .core, .section-paper-2 .shell > .core { background: #FBFAF5; box-shadow: inset 0 1px 1px rgba(255,255,255,.7); }

/* ---------- image figure with CSS fallback (reads before photos land) ---------- */
.figure { position: relative; overflow: hidden; }
.figure::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 100% at 18% 18%, rgba(27,77,200,.30), transparent 58%),
    linear-gradient(150deg, var(--ink-2), var(--ink) 72%);
}
.figure.paper::before {
  background:
    radial-gradient(120% 100% at 80% 16%, rgba(124,133,151,.26), transparent 60%),
    linear-gradient(150deg, var(--paper-3), var(--paper-2) 70%);
}
.figure.signal::before {
  background:
    radial-gradient(120% 100% at 80% 90%, rgba(201,70,44,.26), transparent 58%),
    linear-gradient(150deg, var(--ink-2), var(--ink) 74%);
}
.figure img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }

/* ---------- nav (fluid island) ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  display: flex; justify-content: center;
  padding: 18px var(--gutter); pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: 100%; max-width: var(--maxw);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 11px 11px 11px 22px; border-radius: 999px;
  background: rgba(12,14,18,.55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--hair-ink);
  transition: background .55s var(--ease), border-color .55s var(--ease), box-shadow .55s var(--ease);
}
.nav.scrolled .nav-inner { background: rgba(10,12,16,.84); box-shadow: 0 18px 50px -28px rgba(0,0,0,.9); }
.brand { display:flex; align-items:center; gap: 11px; flex: none; }
.wordmark {
  font-family: var(--display); font-weight: 600; font-size: 16.5px;
  text-transform: uppercase; letter-spacing: .14em; color: var(--on-ink);
  display: inline-flex; align-items: center; gap: 9px;
}
.wordmark .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent-lift); box-shadow: 0 0 10px 1px rgba(76,130,240,.7); flex: none; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; color: var(--on-ink-soft); font-weight: 500;
  padding: 9px 14px; border-radius: 999px;
  transition: color .4s var(--ease), background .4s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--on-ink); background: rgba(236,238,243,.06); }
.nav-cta { display:flex; align-items:center; gap: 8px; flex: none; }
.nav-cta .btn { padding: 10px 12px 10px 18px; font-size: 14px; }

.burger { display:none; width: 44px; height: 44px; border:1px solid var(--hair-ink); border-radius:999px; background:rgba(236,238,243,.03); cursor:pointer; position:relative; flex:none; }
.burger span { position:absolute; left:13px; right:13px; height:1.5px; background: var(--on-ink); transition: transform .55s var(--ease), opacity .3s var(--ease); }
.burger span:nth-child(1){ top:17px; } .burger span:nth-child(2){ top:25px; }
body.menu-open .burger span:nth-child(1){ transform: translateY(4px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ transform: translateY(-3px) rotate(-45deg); }

/* mobile overlay */
.menu {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(10,12,16,.94);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity .55s var(--ease), visibility .55s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu a {
  font-family: var(--display); font-size: clamp(2rem,9vw,3.2rem); font-weight: 600;
  letter-spacing:-.02em; padding: 12px 0; color: var(--on-ink);
  border-bottom: 1px solid var(--hair-ink-2);
  transform: translateY(28px); opacity: 0;
  transition: transform .65s var(--ease), opacity .65s var(--ease), color .3s;
}
.menu a:hover { color: var(--accent-lift); }
body.menu-open .menu a { transform: translateY(0); opacity: 1; }
body.menu-open .menu a:nth-child(1){ transition-delay:.08s; }
body.menu-open .menu a:nth-child(2){ transition-delay:.13s; }
body.menu-open .menu a:nth-child(3){ transition-delay:.18s; }
body.menu-open .menu a:nth-child(4){ transition-delay:.23s; }
body.menu-open .menu a:nth-child(5){ transition-delay:.28s; }
body.menu-open .menu a:nth-child(6){ transition-delay:.33s; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(6px); transition: opacity .7s var(--ease), transform .8s var(--ease), filter .35s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: .09s; } .reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; } .reveal.d4 { transition-delay: .36s; }

/* ---------- hero ---------- */
.hero { min-height: 100dvh; display: flex; align-items: flex-end; position: relative; overflow: hidden; padding-bottom: clamp(48px, 7vw, 104px); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media .figure { position: absolute; inset: 0; }
.hero-media img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; object-position: center 44%; }
.hero-media::after {
  content:""; position:absolute; inset:0; z-index:2;
  background:
    linear-gradient(to top, rgba(12,14,18,.97) 3%, rgba(12,14,18,.50) 40%, rgba(12,14,18,.30) 66%, rgba(12,14,18,.62) 100%),
    radial-gradient(120% 80% at 12% 112%, rgba(27,77,200,.34), transparent 58%);
}
.hero-content { position: relative; z-index: 3; width: 100%; }
.hero h1 { max-width: 17ch; margin-top: 26px; }
.hero .lead { margin-top: 24px; color: rgba(236,238,243,.80); max-width: 52ch; }
.hero-cta { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 36px; }
.hero-meta { display:flex; flex-wrap:wrap; gap: 34px; margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--hair-ink); }
.hero-meta .item { display:flex; flex-direction:column; gap:5px; }
.hero-meta .n { font-family: var(--display); font-size: 1.7rem; font-weight: 600; letter-spacing:-.02em; }
.hero-meta .l { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing:.16em; color: var(--on-ink-meta); }

/* meter motif — tiny cobalt level bars */
.meter { display:flex; align-items:flex-end; gap: 4px; height: 26px; }
.meter span { width: 4px; border-radius: 2px; background: var(--accent-lift); opacity: .9; box-shadow: 0 0 8px rgba(76,130,240,.55); }
.meter span:nth-child(1){ height: 30%; } .meter span:nth-child(2){ height: 55%; }
.meter span:nth-child(3){ height: 78%; } .meter span:nth-child(4){ height: 100%; opacity:1; }
.meter span:nth-child(5){ height: 64%; } .meter span:nth-child(6){ height: 38%; opacity:.7; }

/* ---------- grids ---------- */
.grid { display: grid; gap: clamp(16px, 1.8vw, 24px); }
.g-2 { grid-template-columns: repeat(2,1fr); }
.g-3 { grid-template-columns: repeat(3,1fr); }
.g-4 { grid-template-columns: repeat(4,1fr); }
.split { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,68px); align-items:center; }
.split.tight { align-items: flex-start; }
.split.wide-left { grid-template-columns: 1.25fr .75fr; }
.split.wide-right { grid-template-columns: .8fr 1.2fr; }
.section-head { max-width: 64ch; margin-bottom: clamp(32px,4vw,56px); }
.section-head .h2 { margin-top: 18px; }
.section-head.center { margin-inline:auto; text-align:center; }

/* ---------- pillar / story card ---------- */
.story { display:flex; flex-direction:column; height:100%; }
.story .pic { aspect-ratio: 4/5; overflow:hidden; }
.story .pic.wide { aspect-ratio: 3/2; }
.story .pic img { width:100%; height:100%; object-fit:cover; transition: transform 1.1s var(--ease); }
.story:hover .pic img { transform: scale(1.045); }
.story .body { padding: 26px 26px 30px; display:flex; flex-direction:column; gap:11px; flex:1; }
.story .kicker { font-family: var(--mono); font-size: 10.5px; letter-spacing:.18em; text-transform:uppercase; color: var(--secondary); }
.story h3 { font-size: clamp(1.4rem,2.2vw,1.75rem); line-height: 1.04; }
.story p { color: var(--on-ink-soft); font-size: 15px; margin:0; }
.story .more { margin-top: auto; padding-top: 14px; }
/* story cards sit on the #FBFAF5 paper core — force dark ink so body + kicker clear AA (no ghost text) */
.section-paper .story p, .section-paper-2 .story p { color: #41464F; }
.section-paper .story .kicker, .section-paper-2 .story .kicker { color: #4B515B; }

/* ---------- full-bleed cinematic band ---------- */
section.cine { padding: 0; }
.cine { position: relative; min-height: clamp(460px, 66vh, 720px); display: flex; align-items: flex-end; overflow: hidden; }
.cine .figure { position: absolute; inset: 0; z-index: 0; }
.cine .figure img { transform: scale(1.04); }
.cine::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,14,18,.95) 2%, rgba(12,14,18,.30) 52%, rgba(12,14,18,.55) 100%); }
.cine .cine-in { position: relative; z-index: 2; width: 100%; padding-block: clamp(44px,6vw,84px); }
.cine .cine-in .h2 { max-width: 19ch; }
.cine .cine-in .lead { margin-top: 18px; color: rgba(236,238,243,.84); }

/* ---------- feature / numbered cards ---------- */
.feature { padding: 32px; display:flex; flex-direction:column; gap: 14px; height:100%; }
.feature .num { font-family: var(--mono); font-size: 12px; color: var(--accent-lift); letter-spacing:.1em; }
.feature h3 { font-size: 1.55rem; }
.feature p { color: var(--on-ink-soft); font-size: 15.5px; margin:0; }
.section-paper .feature p, .section-paper-2 .feature p { color: var(--on-paper-soft); }
.section-paper .feature .num, .section-paper-2 .feature .num { color: var(--accent); }
.feature .bullets { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.feature .bullets li { position: relative; padding-left: 20px; color: var(--on-ink-soft); font-size: 14.5px; line-height: 1.5; }
.feature .bullets li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-lift); }
.section-paper .feature .bullets li, .section-paper-2 .feature .bullets li { color: var(--on-paper-soft); }
.section-paper .feature .bullets li::before, .section-paper-2 .feature .bullets li::before { background: var(--accent); }

/* ---------- stat band ---------- */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(18px,2.4vw,32px); }
.stat .n { font-family: var(--display); font-size: clamp(2.4rem,4.6vw,3.6rem); font-weight: 600; letter-spacing:-.02em; line-height:1; }
.stat .n .u { color: var(--accent-lift); margin-left: .1em; }
.stat .l { font-family: var(--mono); font-size: 11px; letter-spacing:.12em; text-transform:uppercase; color: var(--on-ink-faint); margin-top:14px; line-height:1.4; }
.section-paper .stat .l, .section-paper-2 .stat .l { color: var(--on-paper-soft); }
.section-paper .stat .n .u, .section-paper-2 .stat .n .u { color: var(--accent); }

/* ---------- timeline ---------- */
.timeline { border-left: 1px solid var(--hair-ink); margin-left: 6px; }
.section-paper .timeline { border-color: var(--hair-paper); }
.tl-item { position:relative; padding: 0 0 46px 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content:""; position:absolute; left:-5px; top:7px; width:9px; height:9px; border-radius:999px; background: var(--accent-lift); box-shadow: 0 0 0 4px rgba(76,130,240,.16); }
.tl-item .yr { font-family: var(--mono); font-size: 13px; letter-spacing:.06em; color: var(--accent-lift); }
.section-paper .tl-item .yr { color: var(--accent); }
.tl-item h4 { font-size: 1.3rem; margin: 8px 0 8px; }
.tl-item p { color: var(--on-ink-soft); margin:0; font-size: 15px; }
.section-paper .tl-item p { color: var(--on-paper-soft); }

/* ---------- pull quote ---------- */
.pullquote { font-family: var(--display); font-weight: 500; font-size: clamp(1.6rem,3.6vw,2.9rem); line-height: 1.14; letter-spacing:-.018em; max-width: 22ch; }
.pullquote .by { display:block; font-family: var(--mono); font-size: 12px; letter-spacing:.1em; text-transform:uppercase; color: var(--on-ink-faint); margin-top: 26px; font-weight:400; }
.section-paper .pullquote .by, .section-paper-2 .pullquote .by { color: var(--on-paper-soft); }

/* ---------- offer tiers ---------- */
.tier { display:flex; flex-direction:column; height:100%; }
.tier .core { padding: 32px 30px 34px; display:flex; flex-direction:column; gap: 14px; height:100%; }
.tier .step { font-family: var(--mono); font-size: 10.5px; letter-spacing:.18em; text-transform:uppercase; color: var(--secondary); }
.tier.feature-tier .step { color: var(--accent-lift); }
.tier h3 { font-size: clamp(1.5rem,2.4vw,2rem); }
.tier .price { font-family: var(--mono); font-size: 15px; color: var(--on-ink); letter-spacing:.02em; }
.section-paper .tier .price, .section-paper-2 .tier .price { color: var(--on-paper); }
.tier .what { color: var(--on-ink-soft); font-size: 15px; }
.section-paper .tier .what, .section-paper-2 .tier .what { color: var(--on-paper-soft); }
.tier .gets { list-style:none; margin: 6px 0 0; padding: 0; display:flex; flex-direction:column; gap: 11px; }
.tier .gets li { position:relative; padding-left: 20px; font-size: 14.5px; color: var(--on-ink-soft); line-height:1.5; }
.tier .gets li::before { content:""; position:absolute; left:0; top:8px; width:6px; height:6px; border-radius:50%; background: var(--accent-lift); }
.section-paper .tier .gets li, .section-paper-2 .tier .gets li { color: var(--on-paper-soft); }
.section-paper .tier .gets li::before, .section-paper-2 .tier .gets li::before { background: var(--accent); }
.tier.feature-tier { box-shadow: 0 1px 2px rgba(12,14,18,.04), 0 28px 70px -36px rgba(27,77,200,.55); }
.tier.feature-tier > .core { box-shadow: inset 0 0 0 1px rgba(76,130,240,.28), inset 0 1px 1px rgba(236,238,243,.05); }
.tier .more { margin-top: auto; padding-top: 16px; }

/* ---------- CTA band ---------- */
.cta-band { text-align:center; }
.cta-band .h2 { max-width: 20ch; margin-inline:auto; }
.cta-band .lead { margin-inline:auto; margin-top: 18px; }
.cta-band .row { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top: 34px; }

/* ---------- contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px,5vw,72px); align-items:start; }
.contact-line { display:flex; flex-direction:column; gap: 6px; padding: 22px 0; border-bottom: 1px solid var(--hair-ink); }
.contact-line:first-child { border-top: 1px solid var(--hair-ink); }
.contact-line .k { font-family: var(--mono); font-size: 11px; letter-spacing:.14em; text-transform:uppercase; color: var(--on-ink-faint); }
.contact-line .v { font-size: clamp(1.05rem,1.8vw,1.3rem); }
.contact-line a.v { color: var(--accent-lift); transition: color .3s; }
.contact-line a.v:hover { color: #6c9af6; }

/* ---------- page hero (interior) ---------- */
.page-hero { padding-top: clamp(128px, 14vw, 184px); padding-bottom: clamp(40px,5vw,64px); }
.page-hero .display { font-size: clamp(2.5rem, 6vw, 4.8rem); max-width: 18ch; }
.page-hero .lead { margin-top: 26px; max-width: 56ch; }
.breadcrumb { font-family: var(--mono); font-size: 11px; letter-spacing:.16em; text-transform:uppercase; color: var(--on-ink-meta); margin-bottom: 24px; }
.breadcrumb a { color: var(--secondary); } .breadcrumb a:hover { color: var(--on-ink); }

/* ---------- footer ---------- */
.footer { background: #090B0F; border-top: 1px solid var(--hair-ink); padding-block: clamp(56px,7vw,92px) 40px; }
.footer-top { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.footer .f-brand { margin-bottom: 18px; }
.footer .f-brand .wordmark { font-size: 20px; }
.footer .blurb { color: var(--on-ink-soft); font-size: 14.5px; max-width: 38ch; }
.footer h5 { font-family: var(--mono); font-size: 11px; letter-spacing:.16em; text-transform:uppercase; color: var(--on-ink-meta); margin: 0 0 18px; font-weight:400; }
.footer ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap: 12px; }
.footer ul a { font-size: 14.5px; color: var(--on-ink-soft); transition: color .3s; }
.footer ul a:hover { color: var(--on-ink); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap: 16px; flex-wrap:wrap; margin-top: clamp(44px,5vw,68px); padding-top: 28px; border-top: 1px solid var(--hair-ink-2); }
.footer-bottom .small { font-family: var(--mono); font-size: 11px; letter-spacing:.04em; color: var(--on-ink-meta); }
.concept-mark { font-family: var(--mono); font-size: 11px; letter-spacing:.06em; color: var(--on-ink-meta); }
.concept-mark a { color: var(--secondary); transition: color .3s; }
.concept-mark a:hover { color: var(--on-ink); }

/* ---------- misc ---------- */
.divider { height:1px; background: var(--hair-ink); border:0; margin:0; }
.skip { position:absolute; left:-999px; top:0; z-index:200; background:#fff; color:#000; padding:12px 18px; border-radius:0 0 10px 0; }
.skip:focus { left:0; }
.muted { color: var(--on-ink-soft); }
.center { text-align:center; }
.mt-s{margin-top:14px} .mt-m{margin-top:26px} .mt-l{margin-top:46px}
.aspect-cine { aspect-ratio: 2.39 / 1; }
.aspect-45 { aspect-ratio: 4 / 5; }
.aspect-32 { aspect-ratio: 3 / 2; }
.aspect-11 { aspect-ratio: 1 / 1; }
.lede-col { max-width: 60ch; }

/* ---------- responsive ---------- */
@media (max-width: 1000px){
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
  .g-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px){
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
}
@media (max-width: 768px){
  .split, .split.wide-left, .split.wide-right { grid-template-columns: 1fr; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); row-gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pullquote { max-width: none; }
}
@media (max-width: 480px){
  .footer-top { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
