/* ===================================================================
   RUPERT NEVE DESIGNS — concept site design system
   Concept by Boring Stories. Palette built on RND's own identity:
   Ink #16171A · Paper #F4F1EA · Slate #5A5F66 · Silk Red #B23A33 ·
   Silk Blue #2E4A66 · Brass #9A7B4F. Cinematic editorial register.
   Display: Clash Display · Body/UI: Switzer. No Inter / Bricolage / Arial.
   =================================================================== */

:root {
  /* --- ink (warm near-black, like a dark room) --- */
  --ink:        #16171A;
  --ink-1:      #1B1D21;
  --ink-2:      #202327;
  --ink-card:   #1E2125;
  --ink-deep:   #0F1012;

  /* --- paper (warm ivory, reads analog) --- */
  --paper:      #F4F1EA;
  --paper-2:    #ECE7DD;
  --paper-3:    #E3DDD0;

  /* --- brand --- */
  --slate:      #5A5F66;   /* RND signature gray (décor/lines) */
  --slate-text: #4A4E54;   /* slate that clears 4.5:1 on paper */
  --slate-lift: #9499A1;   /* slate readable on ink */
  --red:        #B23A33;   /* Silk Red — a signal, never décor */
  --red-soft:   #C75B53;   /* red readable on ink */
  --blue:       #2E4A66;   /* Silk Blue — grounds heavy sections */
  --blue-lift:  #5E83A8;   /* blue readable on ink */
  --brass:      #796240;   /* brass that clears 4.5:1 on paper / paper-2 */
  --brass-line: #9A7B4F;   /* knob-and-transformer warmth, hairline only */
  --brass-glow: #D2B585;   /* brass that clears 4.5:1 on ink */

  /* --- type colors --- */
  --on-ink:        #EDEAE2;
  --on-ink-soft:   rgba(237,234,226,.72);
  --on-ink-faint:  #9CA0A6;
  --on-paper:      #1A1B1E;
  --on-paper-soft: #4C5056;

  /* --- lines (no flat 1px gray) --- */
  --hair-ink:    rgba(237,234,226,.11);
  --hair-ink-2:  rgba(237,234,226,.06);
  --hair-paper:  rgba(22,23,26,.12);
  --hair-paper-2:rgba(22,23,26,.06);

  /* --- soft layered shadow (never a hard drop) --- */
  --shadow-card: 0 1px 2px rgba(22,23,26,.04), 0 12px 40px rgba(22,23,26,.10);
  --shadow-lift: 0 2px 6px rgba(22,23,26,.06), 0 28px 70px -28px rgba(22,23,26,.45);

  /* --- type --- */
  --display: "Clash Display", Georgia, serif;
  --body:    "Switzer", system-ui, -apple-system, sans-serif;

  /* --- motion (custom cubic-bezier only) --- */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0.1, 0.1, 1);

  /* --- rhythm --- */
  --gutter: clamp(20px, 5vw, 64px);
  --maxw:   1240px;
  --pad-sec: clamp(6rem, 12vh, 10rem);
}

* { 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;
  font-feature-settings: "ss01","cv01","tnum" 0;
  -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(--red); color: #fff; }

/* ---------- film grain (fixed, perf-safe) ---------- */
.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='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' 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: var(--pad-sec); position: relative; }
.section-paper   { background: var(--paper);   color: var(--on-paper); }
.section-paper-2 { background: var(--paper-2); color: var(--on-paper); }
.section-ink     { background: var(--ink); }
.section-ink-2   { background: var(--ink-1); }
.section-blue    { background: var(--blue); }
.section-blue .lead, .section-blue p { color: rgba(237,234,226,.78); }
.section-tight   { padding-block: clamp(3.4rem, 6vh, 5.5rem); }

/* ---------- type ---------- */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; line-height: 1.02; letter-spacing: -.01em; margin: 0; }
.display {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.5rem, 6.4vw, 5.4rem);
  line-height: .98; letter-spacing: -.018em;
}
.h2 { font-size: clamp(1.85rem, 4.2vw, 3.1rem); font-weight: 600; line-height: 1.04; letter-spacing: -.014em; }
.h3 { font-size: clamp(1.25rem, 2.3vw, 1.75rem); font-weight: 600; letter-spacing: -.012em; }
.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.15em; }
.prose p { max-width: 62ch; }
strong, b { font-weight: 600; }

/* the one Silk-red emphasis word, used sparingly */
.silk { color: var(--red); }
.section-ink .silk, .section-ink-2 .silk, .section-blue .silk, .hero .silk, .cine .silk { color: var(--red-soft); }

/* eyebrow: a quiet typographic label. No pill, no glowing dot. */
.eyebrow {
  display: inline-block;
  font-family: var(--body); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--slate-lift);
}
.section-paper .eyebrow, .section-paper-2 .eyebrow { color: var(--slate-text); }

/* section numeral — film-chapter / console-channel marker */
.numeral {
  font-family: var(--body); font-weight: 500; font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--brass-glow);
  font-variant-numeric: tabular-nums;
}
.section-paper .numeral, .section-paper-2 .numeral { color: var(--brass); }

/* spec-sheet caption / timecode */
.caption {
  font-family: var(--body); font-weight: 500; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--on-ink-faint);
  font-variant-numeric: tabular-nums;
}
.section-paper .caption, .section-paper-2 .caption { color: var(--on-paper-soft); }

/* ---------- buttons (island + button-in-button) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .8em;
  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 .5s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s 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 .5s var(--ease), background .4s var(--ease);
}
.btn .ico svg { width: 14px; height: 14px; }
.btn:hover .ico { transform: translate(3px,-1px); }

.btn-primary { background: var(--paper); color: var(--ink); }
.btn-primary .ico { background: rgba(22,23,26,.10); }
.btn-primary:hover { background: #fff; }
.btn-ghost { background: rgba(237,234,226,.03); color: var(--on-ink); border-color: var(--hair-ink); }
.btn-ghost .ico { background: rgba(237,234,226,.07); }
.btn-ghost:hover { background: rgba(237,234,226,.07); }
.section-paper .btn-primary, .section-paper-2 .btn-primary { background: var(--ink); color: var(--on-ink); }
.section-paper .btn-primary:hover, .section-paper-2 .btn-primary:hover { background: var(--ink-1); }
.section-paper .btn-ghost, .section-paper-2 .btn-ghost { color: var(--on-paper); border-color: var(--hair-paper); background: rgba(22,23,26,.02); }
.section-paper .btn-ghost:hover, .section-paper-2 .btn-ghost:hover { background: rgba(22,23,26,.05); }

.textlink { display:inline-flex; align-items:center; gap:.5em; font-weight:500; color: var(--on-ink); border-bottom: 1px solid var(--red); padding-bottom: 2px; transition: gap .4s var(--ease), border-color .4s var(--ease); }
.section-paper .textlink, .section-paper-2 .textlink { color: var(--on-paper); }
.textlink svg { transition: transform .4s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- double-bezel card (Neve faceplate in a rack) ---------- */
.shell {
  background: rgba(237,234,226,.04);
  border: 1px solid var(--hair-ink);
  border-radius: 22px; padding: 7px;
  box-shadow: var(--shadow-card);
  transition: transform .6s var(--ease), border-color .5s var(--ease);
}
a.shell:hover, .shell.hoverable:hover { transform: translateY(-3px); border-color: rgba(237,234,226,.2); }
.shell > .core {
  background: var(--ink-card);
  border-radius: 16px;
  box-shadow: inset 0 1px 1px rgba(237,234,226,.05);
  overflow: hidden; height: 100%;
}
.section-paper .shell, .section-paper-2 .shell { background: rgba(22,23,26,.025); border-color: var(--hair-paper); }
.section-paper .shell > .core, .section-paper-2 .shell > .core { background: var(--paper); box-shadow: inset 0 1px 1px rgba(255,255,255,.5); }
.section-blue .shell { background: rgba(237,234,226,.05); border-color: rgba(237,234,226,.14); }
.section-blue .shell > .core { background: rgba(15,16,18,.4); }

/* ---------- image frame with brand fallback (reads intentional pre-photo) ---------- */
.frame { position: relative; overflow: hidden; background: var(--ink-1); }
.frame img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
/* duotone / brand-gradient fallback painted behind every photo */
.frame::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 22% 14%, rgba(154,123,79,.30), transparent 56%),
    radial-gradient(110% 90% at 84% 96%, rgba(46,74,102,.42), transparent 60%),
    linear-gradient(150deg, var(--ink-2) 0%, var(--ink-deep) 100%);
}
.frame.warm::before {
  background:
    radial-gradient(120% 100% at 30% 18%, rgba(194,160,107,.34), transparent 58%),
    radial-gradient(120% 100% at 80% 100%, rgba(178,58,51,.22), transparent 62%),
    linear-gradient(155deg, #20211f 0%, #121110 100%);
}
.frame.cool::before {
  background:
    radial-gradient(120% 100% at 24% 22%, rgba(94,131,168,.40), transparent 58%),
    linear-gradient(155deg, #1a1e23 0%, #0e1013 100%);
}
.frame.paper-fb { background: var(--paper-2); }
.frame.paper-fb::before {
  background:
    radial-gradient(120% 100% at 28% 18%, rgba(154,123,79,.22), transparent 60%),
    linear-gradient(155deg, var(--paper-2) 0%, var(--paper-3) 100%);
}

/* ---------- 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(22,23,26,.55);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--hair-ink);
  transition: background .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.nav.scrolled .nav-inner { background: rgba(15,16,18,.82); box-shadow: 0 18px 50px -28px rgba(0,0,0,.8); }
.brand { display:flex; align-items:baseline; gap: 9px; flex: none; }
.brand .word { font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: .02em; color: var(--on-ink); }
.brand .reg { font-family: var(--body); font-weight: 500; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--on-ink-faint); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; color: var(--on-ink-soft); font-weight: 500;
  padding: 9px 14px; border-radius: 999px;
  transition: color .35s var(--ease), background .35s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--on-ink); background: rgba(237,234,226,.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(237,234,226,.03); cursor:pointer; position:relative; flex:none; }
.burger span { position:absolute; left:13px; right:13px; height:1.5px; background: var(--on-ink); transition: transform .5s 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(15,16,18,.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 .5s var(--ease), visibility .5s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu a {
  font-family: var(--display); font-size: clamp(1.9rem,8vw,3rem); 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 .6s var(--ease), opacity .6s var(--ease), color .3s;
}
.menu a:hover { color: var(--red-soft); }
body.menu-open .menu a { transform: translateY(0); opacity: 1; }
body.menu-open .menu a:nth-child(1){ transition-delay:.06s; }
body.menu-open .menu a:nth-child(2){ transition-delay:.11s; }
body.menu-open .menu a:nth-child(3){ transition-delay:.16s; }
body.menu-open .menu a:nth-child(4){ transition-delay:.21s; }
body.menu-open .menu a:nth-child(5){ transition-delay:.26s; }
body.menu-open .menu a:nth-child(6){ transition-delay:.31s; }
body.menu-open .menu a:nth-child(7){ transition-delay:.36s; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(32px); filter: blur(7px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- hero (footage-first, holds, letterbox) ---------- */
.hero { min-height: 100dvh; display: flex; align-items: flex-end; position: relative; overflow: hidden; padding-bottom: clamp(48px, 7vw, 100px); }
.hero-media { position: absolute; inset: 0; z-index: 0; background: var(--ink-deep); }
.hero-media .frame { position:absolute; inset:0; }
.hero-media img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; object-position: center 46%; transform: scale(1.04); }
.hero-media::after {
  content:""; position:absolute; inset:0; z-index: 2;
  background:
    linear-gradient(to top, rgba(15,16,18,.95) 3%, rgba(15,16,18,.5) 40%, rgba(15,16,18,.28) 64%, rgba(15,16,18,.6) 100%),
    radial-gradient(120% 80% at 12% 108%, rgba(46,74,102,.4), 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(237,234,226,.82); }
.hero-cta { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 36px; }
.hero-foot { display:flex; flex-wrap:wrap; gap: 36px; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--hair-ink); }
.hero-foot .item { display:flex; flex-direction:column; gap:5px; }
.hero-foot .n { font-family: var(--display); font-size: 1.7rem; font-weight: 600; letter-spacing:-.02em; line-height:1; }
.hero-foot .l { font-family: var(--body); font-weight:500; font-size: 11px; text-transform: uppercase; letter-spacing:.14em; color: var(--on-ink-faint); }

/* ---------- grids ---------- */
.grid { display: grid; gap: clamp(16px, 1.8vw, 22px); }
.g-2 { grid-template-columns: repeat(2,1fr); }
.g-3 { grid-template-columns: repeat(3,1fr); }
.g-4 { grid-template-columns: repeat(4,1fr); }
/* asymmetric editorial split — text at ~58%, offset, never centered */
.split { display:grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px,5vw,72px); align-items:center; }
.split.media-left { grid-template-columns: .9fr 1.1fr; }
.split-58 { display:grid; grid-template-columns: minmax(0,1fr); gap: clamp(28px,4vw,56px); }
.section-head { max-width: 60ch; margin-bottom: clamp(34px,4vw,56px); }
.section-head .h2 { margin-top: 16px; }
.measure { max-width: 58%; }
@media (max-width: 880px){ .measure { max-width: 100%; } }

/* ---------- 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 .frame { position:absolute; inset:0; z-index:0; }
.cine .frame img { transform: scale(1.04); }
.cine::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(15,16,18,.94) 2%, rgba(15,16,18,.3) 52%, rgba(15,16,18,.5) 100%); }
.cine .cine-in { position: relative; z-index: 2; width: 100%; padding-block: clamp(48px,7vw,92px); }
.cine .cine-in .h2, .cine .cine-in .display { max-width: 20ch; }
.cine .cine-in .lead { margin-top: 18px; color: rgba(237,234,226,.84); }

/* ---------- numbered feature / chapter cards ---------- */
.feature { padding: clamp(26px,3vw,38px); display:flex; flex-direction:column; gap: 14px; height:100%; }
.feature .numeral { margin-bottom: 4px; }
.feature h3 { font-size: clamp(1.3rem,2vw,1.6rem); }
.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); }

/* ---------- editorial story / portrait card ---------- */
.story { display:flex; flex-direction:column; height:100%; }
.story .frame { aspect-ratio: 3/2; }
.story .frame img { transition: transform .9s var(--ease); }
.story:hover .frame img { transform: scale(1.05); }
.story .body { padding: 26px 26px 30px; display:flex; flex-direction:column; gap:11px; flex:1; }
.story .kicker { font-family: var(--body); font-weight:500; font-size: 11px; letter-spacing:.16em; text-transform:uppercase; color: var(--brass-glow); }
.section-paper .story .kicker, .section-paper-2 .story .kicker { color: var(--brass); }
.story h3 { font-size: clamp(1.3rem,1.9vw,1.55rem); line-height: 1.1; }
.story p { color: var(--on-ink-soft); font-size: 15px; margin:0; }
.section-paper .story p, .section-paper-2 .story p { color: var(--on-paper-soft); }

/* ---------- big pull-quote ---------- */
.pullquote { font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem,3.6vw,2.9rem); line-height: 1.16; letter-spacing:-.012em; max-width: 22ch; }
.pullquote .by { display:block; font-family: var(--body); font-weight:500; font-size: 12px; letter-spacing:.14em; text-transform:uppercase; color: var(--on-ink-faint); margin-top: 24px; }
.section-paper .pullquote .by, .section-paper-2 .pullquote .by { color: var(--on-paper-soft); }
.section-blue .pullquote .by { color: #C4C8CE; }

/* ---------- spec / definition rows ---------- */
.spec { border-top: 1px solid var(--hair-ink); }
.section-paper .spec, .section-paper-2 .spec { border-color: var(--hair-paper); }
.spec .row { display:grid; grid-template-columns: 200px 1fr; gap:24px; padding: 20px 4px; border-bottom: 1px solid var(--hair-ink-2); }
.section-paper .spec .row, .section-paper-2 .spec .row { border-color: var(--hair-paper-2); }
.spec .k { font-family: var(--body); font-weight:500; font-size: 12px; letter-spacing:.12em; text-transform:uppercase; color: var(--on-ink-faint); }
.section-paper .spec .k, .section-paper-2 .spec .k { color: var(--on-paper-soft); }
.spec .v { font-size: 16px; line-height: 1.5; }
.spec .v p { margin: 0; }

/* ---------- stat band ---------- */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(18px,2vw,30px); }
.stat .n { font-family: var(--display); font-size: clamp(2.4rem,4.6vw,3.7rem); font-weight: 600; letter-spacing:-.02em; line-height:1; }
.stat .n .u { color: var(--brass-glow); margin-left: .1em; font-size: .56em; }
.section-paper .stat .n .u, .section-paper-2 .stat .n .u { color: var(--brass); }
.stat .l { font-family: var(--body); font-weight:500; font-size: 12px; 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); }

/* ---------- ladder / offer step rows ---------- */
.ladder { display:flex; flex-direction:column; gap: clamp(16px,2vw,22px); }
.rung { display:grid; grid-template-columns: 72px 1fr auto; gap: clamp(20px,3vw,40px); align-items:start; padding: clamp(26px,3.2vw,40px); }
.rung .step { font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--brass-glow); line-height:1; letter-spacing:-.02em; }
.section-paper .rung .step, .section-paper-2 .rung .step { color: var(--brass); }
.rung .lab { font-family: var(--body); font-weight:500; font-size: 11px; letter-spacing:.16em; text-transform:uppercase; color: var(--slate-lift); margin-bottom: 10px; display:block; }
.section-paper .rung .lab, .section-paper-2 .rung .lab { color: var(--slate-text); }
.rung h3 { font-size: clamp(1.4rem,2.2vw,1.85rem); margin-bottom: 12px; }
.rung p { color: var(--on-ink-soft); margin:0; max-width: 54ch; }
.section-paper .rung p, .section-paper-2 .rung p { color: var(--on-paper-soft); }
.rung .price { text-align: right; }
.rung .price .amt { font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem,2vw,1.7rem); line-height:1.1; white-space: nowrap; }
.rung .price .unit { font-family: var(--body); font-weight:500; font-size: 11px; letter-spacing:.1em; text-transform:uppercase; color: var(--on-ink-faint); margin-top: 8px; }
.section-paper .rung .price .unit, .section-paper-2 .rung .price .unit { color: var(--on-paper-soft); }
.rung.flagship { border-color: rgba(178,58,51,.32); }
.rung.flagship .step { color: var(--red); }
.section-ink .rung.flagship .step, .section-ink-2 .rung.flagship .step { color: var(--red-soft); }

/* ---------- CTA band ---------- */
.cta-band { text-align:left; }
.cta-band .row { display:flex; gap:12px; flex-wrap:wrap; margin-top: 32px; }

/* ---------- contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px,5vw,72px); align-items:start; }
.contact-card { padding: clamp(28px,3.4vw,42px); }
.contact-card .line { display:flex; flex-direction:column; gap:5px; padding: 18px 0; border-bottom: 1px solid var(--hair-ink-2); }
.contact-card .line:last-child { border-bottom: 0; }
.section-paper .contact-card .line, .section-paper-2 .contact-card .line { border-color: var(--hair-paper-2); }
.contact-card .k { font-family: var(--body); font-weight:500; font-size: 11px; letter-spacing:.14em; text-transform:uppercase; color: var(--on-ink-faint); }
.section-paper .contact-card .k, .section-paper-2 .contact-card .k { color: var(--on-paper-soft); }
.contact-card .v { font-size: 18px; }
.contact-card a.v:hover { color: var(--red-soft); }

/* ---------- page hero (interior) ---------- */
.page-hero { padding-top: clamp(132px, 14vw, 188px); padding-bottom: clamp(38px,5vw,62px); }
.page-hero .display { font-size: clamp(2.4rem, 6vw, 4.8rem); }
.page-hero .lead { margin-top: 24px; }
.breadcrumb { font-family: var(--body); font-weight:500; font-size: 12px; letter-spacing:.14em; text-transform:uppercase; color: var(--on-ink-faint); margin-bottom: 24px; display:flex; align-items:center; gap:10px; }
.breadcrumb a { color: var(--on-ink-soft); } .breadcrumb a:hover { color: var(--on-ink); }
.breadcrumb .sep { color: var(--brass-glow); }
.section-paper .breadcrumb .sep { color: var(--brass); }

/* ---------- footer ---------- */
.footer { background: var(--ink-deep); 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 .brand { margin-bottom: 18px; }
.footer .brand .word { font-size: 19px; }
.footer .blurb { color: var(--on-ink-soft); font-size: 14.5px; max-width: 38ch; }
.footer h5 { font-family: var(--body); font-weight:500; font-size: 11px; letter-spacing:.16em; text-transform:uppercase; color: var(--on-ink-faint); margin: 0 0 16px; }
.footer ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap: 11px; }
.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: 26px; border-top: 1px solid var(--hair-ink-2); }
.footer-bottom .small { font-family: var(--body); font-weight:500; font-size: 11.5px; letter-spacing:.04em; color: var(--on-ink-faint); }
.concept-mark { font-family: var(--body); font-weight:500; font-size: 11.5px; letter-spacing:.04em; color: var(--on-ink-faint); }
.concept-mark b { color: var(--on-ink-soft); font-weight: 500; }
.concept-mark a { color: var(--on-ink-soft); border-bottom: 1px solid var(--red); }

/* ---------- misc ---------- */
.divider { height:1px; background: var(--hair-ink); border:0; margin:0; }
.skip { position:absolute; left:-999px; top:0; z-index:200; background:var(--paper); color:var(--ink); 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:44px}
.maxw-50 { max-width: 52ch; }
.lede-list { list-style:none; margin: 22px 0 0; padding:0; display:flex; flex-direction:column; gap: 14px; }
.lede-list li { position: relative; padding-left: 22px; color: var(--on-ink-soft); }
.section-paper .lede-list li, .section-paper-2 .lede-list li { color: var(--on-paper-soft); }
.lede-list li::before { content:""; position:absolute; left:0; top:11px; width:8px; height:8px; border-radius:50%; background: var(--brass-glow); }
.section-paper .lede-list li::before, .section-paper-2 .lede-list li::before { background: var(--brass); }
.lede-list li.red::before { background: var(--red); }

/* aspect helpers (lock containers so nothing reflows when photos land) */
.ar-21  { aspect-ratio: 21/9; }
.ar-23  { aspect-ratio: 2/1; }
.ar-32  { aspect-ratio: 3/2; }
.ar-43  { aspect-ratio: 4/3; }
.ar-45  { aspect-ratio: 4/5; }
.ar-11  { aspect-ratio: 1/1; }

/* ---------- responsive ---------- */
@media (max-width: 1000px){
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .g-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 880px){
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
}
@media (max-width: 768px){
  :root { --pad-sec: clamp(4rem, 9vh, 6rem); }
  .split, .split.media-left, .contact-grid { grid-template-columns: 1fr; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); row-gap: 32px; }
  .spec .row { grid-template-columns: 1fr; gap: 6px; }
  .pullquote { max-width: none; }
  .rung { grid-template-columns: 1fr; gap: 14px; }
  .rung .price { text-align: left; }
  .measure { max-width: 100%; }
}
@media (max-width: 480px){
  .footer-top { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-foot { gap: 24px; }
}
