/* ===================================================================
   PELICAN — concept site design system
   Concept by Boring Stories. Pelican reframed through a film lens.
   Tomato #E4412B · case-interior near-black #1A1716 · foam bone #EDE7DD.
   Display: Clash Display · Body: Switzer · Indices: Space Grotesk.
   Red appears on < 8% of any viewport. Used like a latch, never a wash.
   =================================================================== */

:root {
  /* --- ground (case interior near-black) --- */
  --ink:        #1A1716;   /* primary dark ground */
  --ink-1:      #16110F;   /* deeper recess */
  --ink-2:      #211B19;   /* lifted ground */
  --ink-card:   #221C19;   /* card core on dark */
  --ink-shell:  rgba(237,231,221,.045);  /* outer shell on dark */

  /* --- brand --- */
  --red:        #E4412B;   /* Pelican tomato — the latch (large display/fills/marks) */
  --red-text:   #F36B57;   /* brighter tomato for small text on dark (AA, 5.99:1 on ink) */
  --red-paper:  #8E2212;   /* deeper tomato for small text on foam (AA, 7.15:1 on paper) */
  --red-btn:    #C42C19;   /* primary button ground, white text clears AA (5.46:1) */
  --red-deep:   #C5331F;   /* hover/pressed */
  --tangerine:  #C8702A;   /* burnt tangerine, first-light warmth */
  --flame:      #E8C24A;   /* flame yellow, the rare guest */

  /* --- foam (light panels) --- */
  --paper:      #EDE7DD;   /* foam bone */
  --paper-2:    #E5DDD0;   /* deeper foam */
  --paper-3:    #DAD0C0;

  /* --- type colors --- */
  --on-ink:        #F2EDE5;
  --on-ink-soft:   rgba(242,237,229,.66);
  --on-ink-faint:  rgba(242,237,229,.62);
  --on-paper:      #231F20;   /* Pelican's real black, on foam */
  --on-paper-soft: #433C37;

  /* --- lines (warm hairlines, never flat gray) --- */
  --hair-ink:   rgba(242,237,229,.12);
  --hair-ink-2: rgba(242,237,229,.06);
  --hair-paper: rgba(35,31,32,.14);
  --hair-paper-2: rgba(35,31,32,.07);

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

  /* --- motion: slow rise only --- */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(.4,.12,.12,1);

  /* --- rhythm --- */
  --gutter: clamp(22px, 5vw, 72px);
  --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(--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='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(64px, 9vw, 160px); position: relative; }
.section-paper { background: var(--paper); color: var(--on-paper); }
.section-paper-2 { background: var(--paper-2); color: var(--on-paper); }
.section-ink-2 { background: var(--ink-2); }
.section-ink-1 { background: var(--ink-1); }

/* ---------- 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-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 600; letter-spacing: -.02em; line-height: .96;
}
.display .hot { color: var(--red); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); font-weight: 600; letter-spacing: -.018em; line-height: 1.02; }
.h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); font-weight: 600; letter-spacing: -.012em; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.36rem); line-height: 1.55; color: var(--on-ink-soft); max-width: 58ch; }
.section-paper .lead, .section-paper-2 .lead { color: var(--on-paper-soft); }
p { margin: 0 0 1.1em; }
.big-body { font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.5; letter-spacing: -.01em; }
/* bold semantics map to a loaded Switzer weight — never synthesize 600/700 */
strong, b { font-weight: 500; }

/* eyebrow: a Space Grotesk index, not a pill. No badge, no dot. */
.eyebrow {
  display: inline-block;
  font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .04em; color: var(--on-ink-faint);
}
.eyebrow .ix { color: var(--red-text); }
.section-paper .eyebrow, .section-paper-2 .eyebrow { color: var(--on-paper-soft); }
.section-paper .eyebrow .ix, .section-paper-2 .eyebrow .ix { color: var(--red-paper); }

/* small red text on foam panels: deepen to clear AA */
.section-paper .feature .num, .section-paper-2 .feature .num,
.section-paper .offer .ix, .section-paper-2 .offer .ix,
.section-paper .offer .flag, .section-paper-2 .offer .flag,
.section-paper .story .kicker, .section-paper-2 .story .kicker,
.section-paper .lede-num, .section-paper-2 .lede-num { color: var(--red-paper); }

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

/* ---------- 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 .6s 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 .6s var(--ease), background .45s var(--ease);
}
.btn .ico svg { width: 14px; height: 14px; }
.btn:hover .ico { transform: translate(3px,-1px); }

.btn-primary { background: var(--red-btn); color: #fff; }
.btn-primary .ico { background: rgba(255,255,255,.2); }
.btn-primary:hover { background: var(--red-deep); }
.btn-solid { background: var(--on-ink); color: var(--ink); }
.btn-solid .ico { background: rgba(0,0,0,.1); }
.btn-solid:hover { background: #fff; }
.btn-ghost { background: rgba(242,237,229,.03); color: var(--on-ink); border-color: var(--hair-ink); }
.btn-ghost .ico { background: rgba(242,237,229,.07); }
.btn-ghost:hover { background: rgba(242,237,229,.08); }
.section-paper .btn-ghost, .section-paper-2 .btn-ghost { color: var(--on-paper); border-color: var(--hair-paper); background: rgba(35,31,32,.03); }
.section-paper .btn-ghost:hover, .section-paper-2 .btn-ghost:hover { background: rgba(35,31,32,.06); }

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

/* ---------- double-bezel card (outer case shell + inner foam core) ---------- */
.shell {
  background: var(--ink-shell);
  border: 1px solid var(--hair-ink);
  border-radius: 24px; padding: 7px;
}
.shell > .core {
  background: var(--ink-card);
  border-radius: 18px;
  box-shadow: inset 0 1px 1px rgba(242,237,229,.05);
  overflow: hidden; height: 100%;
}
.section-paper .shell, .section-paper-2 .shell { background: rgba(35,31,32,.04); 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), 0 1px 0 rgba(35,31,32,.03); }

/* ---------- image figure with intentional fallback ---------- */
.fig {
  position: relative; overflow: hidden; border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200,112,42,.32), rgba(26,23,22,0) 58%),
    linear-gradient(20deg, var(--ink-1), var(--ink-2));
}
.fig::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 78% 8%, rgba(232,194,74,.10), transparent 55%);
}
.fig img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.fig.lite {
  background:
    linear-gradient(135deg, rgba(200,112,42,.28), rgba(237,231,221,0) 60%),
    linear-gradient(20deg, var(--paper-3), var(--paper));
}

/* ---------- 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,17,15,.55);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--hair-ink);
  transition: background .6s var(--ease), border-color .6s var(--ease), box-shadow .6s var(--ease);
}
.nav.scrolled .nav-inner { background: rgba(18,13,11,.84); box-shadow: 0 22px 60px -32px rgba(0,0,0,.85); }
.brand { display:flex; align-items:center; gap: 11px; flex: none; }
.brand .word { font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink); }
.brand .dot { width: 8px; height: 8px; border-radius: 2px; background: var(--red); 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(242,237,229,.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(242,237,229,.03); cursor:pointer; position:relative; flex:none; }
.burger span { position:absolute; left:13px; right:13px; height:1.5px; background: var(--on-ink); transition: transform .6s 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(18,13,11,.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 .6s var(--ease), visibility .6s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu a {
  font-family: var(--display); font-size: clamp(2rem,8.5vw,3.1rem); 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 .7s var(--ease), opacity .7s var(--ease), color .3s;
}
.menu a:hover { color: var(--red); }
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:.14s; }
body.menu-open .menu a:nth-child(3){ transition-delay:.20s; }
body.menu-open .menu a:nth-child(4){ transition-delay:.26s; }
body.menu-open .menu a:nth-child(5){ transition-delay:.32s; }
body.menu-open .menu a:nth-child(6){ transition-delay:.38s; }

/* ---------- scroll reveal (slow rise) ---------- */
.reveal { opacity: 0; transform: translateY(38px); filter: blur(6px); transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s 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(56px, 8vw, 120px); }
.hero-media { position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, rgba(200,112,42,.34), rgba(26,23,22,0) 55%),
    linear-gradient(20deg, var(--ink-1), var(--ink-2));
}
.hero-media img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; object-position: center 46%; }
.hero-media::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(18,13,11,.96) 3%, rgba(18,13,11,.5) 40%, rgba(18,13,11,.22) 66%, rgba(18,13,11,.5) 100%),
    radial-gradient(120% 80% at 12% 112%, rgba(228,65,43,.28), transparent 58%);
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero h1 { max-width: 17ch; margin-top: 26px; }
.hero .lead { margin-top: 24px; color: rgba(242,237,229,.8); max-width: 50ch; }
.hero-cta { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 36px; }

/* ---------- grids ---------- */
.grid { display: grid; gap: clamp(18px, 1.8vw, 26px); }
.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, deliberately not 50/50 */
.split { display:grid; grid-template-columns: 1.04fr .96fr; gap: clamp(32px,5vw,72px); align-items:center; }
.split.tight { grid-template-columns: .9fr 1.1fr; }
.split.flip > *:first-child { order: 2; }
.section-head { max-width: 64ch; margin-bottom: clamp(34px,4vw,60px); }
.section-head .h2 { margin-top: 18px; }
.section-head.center { margin-inline:auto; text-align:center; }

/* ---------- full-bleed cinematic band ---------- */
section.cine { padding: 0; }
.cine { position: relative; min-height: clamp(480px, 70vh, 760px); display: flex; align-items: flex-end; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(200,112,42,.34), rgba(26,23,22,0) 55%),
    linear-gradient(20deg, var(--ink-1), var(--ink-2));
}
.cine > .fig-bleed { position: absolute; inset: 0; z-index: 0; border-radius: 0; }
.cine > .fig-bleed img { width: 100%; height: 100%; object-fit: cover; }
.cine::after { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(18,13,11,.95) 2%, rgba(18,13,11,.32) 52%, rgba(18,13,11,.5) 100%); }
.cine .cine-in { position: relative; z-index: 1; width: 100%; padding-block: clamp(48px,7vw,96px); }
.cine .cine-in .h2 { max-width: 20ch; }
.cine .cine-in .lead { margin-top: 18px; color: rgba(242,237,229,.84); }

/* ---------- feature / numbered cards on dark ---------- */
.feature { padding: 34px; display:flex; flex-direction:column; gap: 14px; height:100%; }
.feature .num { font-family: var(--mono); font-size: 13px; color: var(--red-text); letter-spacing:.04em; }
.feature h3 { font-size: 1.5rem; }
.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); }

/* ---------- offer ladder (double-bezel, the case + foam core) ---------- */
.ladder { display:grid; gap: clamp(18px,2vw,24px); }
.offer { display:flex; flex-direction:column; height:100%; }
.offer .core { padding: 34px 34px 38px; display:flex; flex-direction:column; gap: 14px; }
.offer .tier { display:flex; align-items:baseline; justify-content:space-between; gap: 16px; }
.offer .ix { font-family: var(--mono); font-size: 13px; letter-spacing:.04em; color: var(--red-text); }
.offer .price { font-family: var(--mono); font-size: 14px; color: var(--on-ink-soft); white-space:nowrap; }
.section-paper .offer .price, .section-paper-2 .offer .price { color: var(--on-paper-soft); }
.offer h3 { font-size: clamp(1.4rem,2.4vw,1.9rem); }
.offer .lead { font-size: 15.5px; }
.offer.lead-offer { position: relative; }
.offer.lead-offer .core { box-shadow: inset 0 0 0 1px rgba(228,65,43,.3); }
.offer .flag { font-family: var(--mono); font-size: 11px; letter-spacing:.08em; text-transform:uppercase; color: var(--red-text); }

/* ---------- editorial story card ---------- */
.story { display:flex; flex-direction:column; height:100%; }
.story .pic { aspect-ratio: 3/2; overflow:hidden; }
.story .pic .fig { border-radius: 0; height: 100%; }
.story .pic img { transition: transform 1s var(--ease); }
.story:hover .pic img { transform: scale(1.05); }
.story .body { padding: 26px 28px 30px; display:flex; flex-direction:column; gap:12px; flex:1; }
.story .kicker { font-family: var(--mono); font-size: 11px; letter-spacing:.1em; text-transform:uppercase; color: var(--red-text); }
.story h3 { font-size: 1.4rem; line-height: 1.08; }
.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); }

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

/* ---------- big quote ---------- */
.pullquote { font-family: var(--display); font-weight: 500; font-size: clamp(1.7rem,4vw,3.1rem); line-height: 1.14; letter-spacing:-.02em; max-width: 22ch; }
.pullquote .hot { color: var(--red); }
.pullquote .by { display:block; font-family: var(--mono); font-size: 13px; letter-spacing:.04em; 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); }

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

/* ---------- gap / buried-story rows ---------- */
.gap-row { display:grid; grid-template-columns: auto 1fr; gap: clamp(20px,3vw,40px); padding: clamp(26px,3vw,40px) 0; border-top: 1px solid var(--hair-paper); align-items:start; }
.gap-row:first-of-type { border-top: 0; }
.gap-row .ix { font-family: var(--mono); font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 500; color: var(--red); line-height: .9; letter-spacing: -.02em; }
.gap-row h3 { font-size: clamp(1.3rem,2.2vw,1.8rem); margin-bottom: 12px; }
.gap-row p { color: var(--on-paper-soft); margin: 0; max-width: 64ch; }
.gap-row .now { display:block; margin-top: 14px; font-family: var(--mono); font-size: 13px; color: var(--red-paper); letter-spacing:.01em; }

/* ---------- treatment table (the-film) ---------- */
.treat { border-top: 1px solid var(--hair-ink); }
.section-paper .treat, .section-paper-2 .treat { border-color: var(--hair-paper); }
.treat .row { display:grid; grid-template-columns: .8fr 2fr; gap: clamp(16px,3vw,40px); padding: 22px 4px; border-bottom: 1px solid var(--hair-ink-2); }
.section-paper .treat .row, .section-paper-2 .treat .row { border-color: var(--hair-paper-2); }
.treat .k { font-family: var(--mono); font-size: 12.5px; letter-spacing:.04em; text-transform:uppercase; color: var(--on-ink-faint); }
.section-paper .treat .k, .section-paper-2 .treat .k { color: var(--on-paper-soft); }
.treat .v { font-size: 16px; line-height: 1.55; }
.treat .v strong { font-weight: 500; }

/* ---------- play marker (film moment) ---------- */
.play {
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: clamp(64px, 8vw, 92px); height: clamp(64px, 8vw, 92px); border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(228,65,43,.92);
  box-shadow: 0 24px 60px -18px rgba(228,65,43,.5);
  transition: transform .6s var(--ease), background .4s var(--ease);
}
.play:hover { transform: translate(-50%,-50%) scale(1.06); background: var(--red); }
.play::before { content: ""; width: 0; height: 0; margin-left: 5px;
  border-left: 18px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent; }

/* ---------- form ---------- */
.field { display:flex; flex-direction:column; gap:8px; margin-bottom: 18px; }
.field label { font-family: var(--mono); font-size: 12px; letter-spacing:.04em; text-transform:uppercase; color: var(--on-ink-faint); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 15px; color: var(--on-ink);
  background: rgba(242,237,229,.03); border: 1px solid var(--hair-ink);
  border-radius: 12px; padding: 14px 16px; width:100%;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--red); background: rgba(228,65,43,.05); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- footer ---------- */
.footer { background: var(--ink-1); border-top: 1px solid var(--hair-ink); padding-block: clamp(60px,8vw,100px) 42px; }
.footer-top { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.footer .brand .word { font-size: 20px; margin-bottom: 18px; }
.footer .blurb { color: var(--on-ink-soft); font-size: 14.5px; max-width: 38ch; margin-top: 18px; }
.footer h5 { font-family: var(--mono); font-size: 12px; letter-spacing:.06em; text-transform:uppercase; color: var(--on-ink-faint); margin: 0 0 16px; font-weight:500; }
.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: 28px; border-top: 1px solid var(--hair-ink-2); }
.footer-bottom .small { font-family: var(--mono); font-size: 12px; letter-spacing:.02em; color: var(--on-ink-faint); }
.concept-mark { font-family: var(--mono); font-size: 12px; letter-spacing:.02em; color: var(--on-ink-faint); }
.concept-mark a { color: var(--on-ink-soft); }
.concept-mark a:hover { color: var(--red); }

/* ---------- page hero (interior) ---------- */
.page-hero { padding-top: clamp(140px, 15vw, 196px); padding-bottom: clamp(40px,5vw,64px); }
.page-hero .display { font-size: clamp(2.6rem, 6.5vw, 5.2rem); }
.page-hero .lead { margin-top: 26px; }
.breadcrumb { font-family: var(--mono); font-size: 12px; letter-spacing:.04em; color: var(--on-ink-faint); margin-bottom: 26px; }
.breadcrumb a { color: var(--on-ink-soft); } .breadcrumb a:hover { color: var(--on-ink); }
.section-paper .breadcrumb, .section-paper-2 .breadcrumb { color: var(--on-paper-soft); }

/* ---------- 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(--on-paper); 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:16px} .mt-m{margin-top:28px} .mt-l{margin-top:48px}
.caption { font-family: var(--mono); font-size: 12px; letter-spacing:.02em; color: var(--on-ink-faint); margin-top: 14px; }
.section-paper .caption, .section-paper-2 .caption { color: var(--on-paper-soft); }
.lede-num { font-family: var(--mono); color: var(--red-text); font-size: 13px; }

/* ---------- responsive ---------- */
@media (max-width: 1000px){
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .g-4 { grid-template-columns: repeat(2,1fr); }
  .ladder.l-3 { grid-template-columns: 1fr; }
}
@media (max-width: 880px){
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
}
@media (max-width: 768px){
  .split, .split.tight { grid-template-columns: 1fr; }
  .split.flip > *:first-child { order: 0; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); row-gap: 34px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .treat .row { grid-template-columns: 1fr; gap: 6px; }
  .gap-row { grid-template-columns: 1fr; gap: 10px; }
  .pullquote { max-width: none; }
}
@media (max-width: 460px){
  .footer-top { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
