/* ==========================================================================
   Belfast Eats — shared styles
   Palette: Lagan night / Goliath yellow / red brick / fog / sage
   Type: Big Shoulders Display (industrial display), Newsreader (italic voice),
         Onest (body), IBM Plex Mono (postcodes, data)
   ========================================================================== */

:root {
  color-scheme: dark;
  --ink: #0f1720;
  --ink-2: #16212b;
  --ink-3: #1f2c38;
  --line: rgba(238, 240, 236, 0.14);
  --paper: #eef0ec;
  --paper-2: #e2e6e1;
  --paper-ink: #121a22;
  --paper-mute: #55616b;
  --crane: #f2c230;
  --crane-deep: #d9a80f;
  --brick: #c4492e;
  --sage: #8fa89a;
  --fog: #b9c3ca;
  --mute: #8d9aa5;

  --f-display: "Big Shoulders Display", "Arial Narrow", "Helvetica Neue", Impact, sans-serif;
  --f-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --f-body: "Onest", "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --gutter: clamp(16px, 4vw, 56px);
  --max: 1440px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --ease-in-out: cubic-bezier(.7, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--crane); color: var(--ink); }

:focus-visible { outline: 2px solid var(--crane); outline-offset: 3px; border-radius: 2px; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--crane); color: var(--ink); padding: 10px 16px; font-weight: 600; text-decoration: none;
}
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Type primitives ---------- */
.eyebrow {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--crane); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.display {
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  line-height: .86; letter-spacing: -.01em; text-wrap: balance; margin: 0;
}
.serif-i { font-family: var(--f-serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -.01em; }
.mono { font-family: var(--f-mono); }
.lede { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; max-width: 34em; color: var(--fog); }
h1, h2, h3, h4 { text-wrap: balance; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--crane); --fg: var(--ink);
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--bg); color: var(--fg); text-decoration: none;
  font-weight: 600; font-size: 15px; letter-spacing: .01em; overflow: hidden;
  transition: transform .4s var(--ease), background .3s;
  isolation: isolate;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--paper);
  transform: translateY(101%); border-radius: inherit; transition: transform .45s var(--ease);
}
.btn:hover::after { transform: translateY(0); }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px) rotate(-45deg); }
.btn--ghost { --bg: transparent; --fg: var(--paper); box-shadow: inset 0 0 0 1px var(--line); }
.btn--ghost::after { background: var(--crane); }
.btn--ghost:hover { --fg: var(--ink); }
.btn--dark { --bg: var(--ink); --fg: var(--paper); }
.btn--dark::after { background: var(--brick); }
.link-u {
  text-decoration: none; background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size .4s var(--ease);
}
.link-u:hover { background-size: 100% 1px; }

/* ---------- Header ---------- */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  transition: transform .5s var(--ease), background .4s, backdrop-filter .4s;
}
.site-head.is-scrolled { background: rgba(15, 23, 32, .82); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid var(--line); }
.site-head.is-hidden { transform: translateY(-100%); }
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 38px; height: 38px; flex: none; }
.logo-word { font-family: var(--f-display); font-weight: 800; font-size: 26px; letter-spacing: .01em; text-transform: uppercase; line-height: 1; }
.logo-word em { font-family: var(--f-serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--crane); font-size: .92em; margin-left: 2px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { text-decoration: none; font-size: 14px; color: var(--fog); transition: color .2s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--paper); }
.nav .btn { padding: 11px 18px; font-size: 14px; color: var(--ink); }
.menu-btn { display: none; background: none; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; cursor: pointer; font-size: 13px; font-family: var(--f-mono); letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 960px) {
  .menu-btn { display: inline-flex; }
  .nav {
    position: fixed; inset: 0; z-index: -1; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 6px; padding: 100px var(--gutter) 40px; background: var(--ink);
    clip-path: circle(0 at calc(100% - 50px) 38px); transition: clip-path .7s var(--ease-in-out); visibility: hidden;
  }
  .nav.is-open { clip-path: circle(150% at calc(100% - 50px) 38px); visibility: visible; }
  .nav a { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(40px, 11vw, 64px); line-height: 1.05; color: var(--paper); }
  .nav a:hover { color: var(--crane); }
  .nav .btn { margin-top: 20px; font-family: var(--f-body); font-size: 16px; text-transform: none; padding: 16px 24px; }
}

/* ---------- Reveal (content is visible at rest; only below-fold items are primed by JS) ---------- */
.rv.is-primed { opacity: 0; transform: translateY(36px); }
.rv { transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
@media (prefers-reduced-motion: reduce) { .rv.is-primed { opacity: 1; transform: none; } }

/* ==========================================================================
   HOME — Hero
   ========================================================================== */
.hero { position: relative; padding-top: 128px; padding-bottom: 40px; overflow: hidden; isolation: isolate; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(28px, 3vw, 48px); }
.hero-meta { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); margin-bottom: clamp(20px, 3vw, 40px); }
.hero-meta span b { color: var(--paper); font-weight: 500; }
.hero-title { font-size: clamp(72px, 16.5vw, 250px); }
.hero-title .ln { display: block; overflow: hidden; padding-bottom: .02em; }
.hero-title .ln > span { display: inline-block; animation: lineUp 1.1s var(--ease) both; animation-delay: var(--d, 0s); }
.hero-title .serif-i { font-size: .52em; color: var(--crane); vertical-align: .38em; margin-left: .12em; }
.hero-title .outline { color: transparent; -webkit-text-stroke: 2px var(--paper); }
@keyframes lineUp { from { transform: translateY(105%); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero-title .ln > span { animation: none; } }

.hero-side { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) auto; gap: clamp(20px, 3vw, 48px); align-items: center; padding-bottom: 14px; }
.hero-side .lede { margin: 0; }
.hero-side .lede { font-size: clamp(17px, 1.4vw, 20px); }

.finder {
  background: var(--paper); color: var(--paper-ink); border-radius: 22px; padding: 10px; display: grid;
  grid-template-columns: 1fr auto; gap: 8px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
}
.finder label { display: grid; gap: 2px; padding: 8px 14px; border-radius: 14px; transition: background .2s; }
.finder label:focus-within { background: var(--paper-2); }
.finder .lbl { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--paper-mute); }
.finder input, .finder select { border: 0; background: transparent; outline: none; font-size: 16px; padding: 0; width: 100%; color: var(--paper-ink); }
.finder .row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4px; }
.finder button { align-self: stretch; border: 0; border-radius: 14px; background: var(--ink); color: var(--paper); padding: 0 22px; cursor: pointer; font-weight: 600; display: flex; align-items: center; gap: 8px; transition: background .25s; }
.finder button:hover { background: var(--brick); }

.hero-art { position: absolute; right: -3vw; top: 110px; width: min(40vw, 580px); opacity: .95; pointer-events: none; z-index: -1; }
.hero-art svg { width: 100%; height: auto; }
.crane-float { animation: bob 9s ease-in-out infinite; transform-origin: center; }
@keyframes bob { 50% { transform: translateY(-8px); } }

.badge-spin {
  position: relative; width: 132px; height: 132px; flex: none;
  display: grid; place-items: center; text-decoration: none; color: var(--ink);
}
.badge-spin svg.ring { position: absolute; inset: 0; animation: spin 18s linear infinite; }
.badge-spin .core { width: 64px; height: 64px; border-radius: 50%; background: var(--brick); display: grid; place-items: center; color: var(--paper); font-size: 24px; transition: transform .4s var(--ease); }
.badge-spin:hover .core { transform: scale(1.12) rotate(-45deg); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .badge-spin svg.ring, .crane-float { animation: none; } }

.hero .scroll-cue { margin-top: 40px; display: flex; align-items: center; gap: 14px; font-family: var(--f-mono); font-size: 12px; color: var(--mute); letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue i { width: 1px; height: 40px; background: linear-gradient(var(--crane), transparent); display: block; animation: drip 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes drip { 0% { transform: scaleY(0); } 60% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

@media (max-width: 1100px) { .hero-side { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); } .badge-spin { display: none; } }
@media (max-width: 760px) {
  .hero-side { grid-template-columns: 1fr; }
  .hero-art { width: 70vw; right: -18vw; top: 90px; opacity: .3; }
  .hero-meta .coords { display: none; }
  .hero-meta { flex-direction: column; gap: 4px; }
}
@media (max-width: 520px) {
  .finder { grid-template-columns: 1fr; }
  .finder .row { grid-template-columns: 1fr; }
  .finder button { padding: 14px; justify-content: center; }
}

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding-block: 18px; background: var(--ink); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marq 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 28px; padding-right: 28px; font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: clamp(26px, 3.4vw, 44px); line-height: 1; white-space: nowrap; }
.marquee-item em { font-family: var(--f-serif); font-weight: 400; text-transform: none; color: var(--fog); font-size: .62em; }
.marquee-item .star { color: var(--crane); font-size: .6em; }
@keyframes marq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ==========================================================================
   Sections — shared
   ========================================================================== */
.sec { padding-block: clamp(80px, 11vw, 160px); position: relative; }
.sec-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); align-items: end; margin-bottom: clamp(40px, 6vw, 80px); }
.sec-head .display { font-size: clamp(52px, 8vw, 120px); }
.sec-head p { margin: 0; max-width: 32em; color: var(--fog); }
@media (max-width: 860px) { .sec-head { grid-template-columns: 1fr; } }

.paper { background: var(--paper); color: var(--paper-ink); }
.paper .eyebrow { color: var(--brick); }
.paper .sec-head p, .paper .lede { color: var(--paper-mute); }
.paper ::selection { background: var(--ink); color: var(--crane); }

/* ---------- Categories (the five) ---------- */
.cats { border-top: 1px solid rgba(18, 26, 34, .16); }
.cat {
  position: relative; display: grid; grid-template-columns: 90px minmax(0, 1fr) minmax(0, 1.1fr) 60px; gap: 24px; align-items: center;
  padding: clamp(22px, 2.6vw, 34px) 0; border-bottom: 1px solid rgba(18, 26, 34, .16); text-decoration: none; color: inherit;
  transition: padding .5s var(--ease);
}
.cat::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: scaleY(0); transform-origin: bottom; transition: transform .55s var(--ease); z-index: 0; }
.cat > * { position: relative; z-index: 1; }
.cat:hover::before, .cat:focus-visible::before { transform: scaleY(1); }
.cat:hover, .cat:focus-visible { color: var(--paper); padding-inline: 20px; }
.cat-code { font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; color: var(--paper-mute); transition: color .3s; }
.cat:hover .cat-code { color: var(--crane); }
.cat-name { font-family: var(--f-display); font-weight: 800; font-size: clamp(38px, 6vw, 88px); line-height: .9; text-transform: uppercase; }
.cat-name em { white-space: nowrap; font-family: var(--f-serif); font-weight: 400; text-transform: none; font-size: .5em; color: var(--brick); margin-left: 6px; }
.cat:hover .cat-name em { color: var(--crane); }
.cat-desc { color: var(--paper-mute); font-size: 15.5px; max-width: 30em; transition: color .3s; }
.cat:hover .cat-desc { color: var(--fog); }
.cat-arrow { width: 54px; height: 54px; border-radius: 50%; border: 1px solid currentColor; display: grid; place-items: center; justify-self: end; transition: transform .5s var(--ease), background .3s, color .3s, border-color .3s; }
.cat:hover .cat-arrow { background: var(--crane); color: var(--ink); border-color: var(--crane); transform: rotate(-45deg); }
.cat-float {
  position: fixed; left: 0; top: 0; width: 240px; height: 240px; pointer-events: none; z-index: 90; border-radius: 50%;
  opacity: 0; transform: translate(-50%, -50%) scale(.6); transition: opacity .3s, transform .45s var(--ease);
  display: grid; place-items: center;
}
.cat-float.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.cat-float svg { width: 100%; height: 100%; }
@media (max-width: 860px) {
  .cat { grid-template-columns: 1fr auto; row-gap: 6px; }
  .cat-code { grid-column: 1 / -1; }
  .cat-desc { grid-column: 1 / 2; }
  .cat-arrow { grid-row: 2 / 4; grid-column: 2; width: 44px; height: 44px; }
  .cat:hover, .cat:focus-visible { padding-inline: 12px; }
}
@media (hover: none) { .cat-float { display: none; } }

/* ---------- Directory ---------- */
.dir-tools { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 9px 16px; cursor: pointer; font-size: 14px; color: var(--fog);
  transition: background .25s, color .25s, border-color .25s;
}
.chip:hover { border-color: var(--paper); color: var(--paper); }
.chip[aria-pressed="true"] { background: var(--crane); border-color: var(--crane); color: var(--ink); }
.dir-search { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); padding: 8px 2px; min-width: min(320px, 100%); }
.dir-search input { background: transparent; border: 0; outline: none; width: 100%; font-size: 16px; color: var(--paper); }
.dir-search input::placeholder { color: var(--mute); }
.dir-count { font-family: var(--f-mono); font-size: 12px; color: var(--mute); letter-spacing: .1em; text-transform: uppercase; }

.listings { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.listing { grid-column: span 4; display: grid; gap: 16px; text-decoration: none; color: inherit; }
.listing.wide { grid-column: span 8; }
.listing.is-hidden { display: none; }
.poster {
  position: relative; aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden; background: var(--pc, var(--ink-3));
  display: grid; place-items: center; isolation: isolate; max-width: 100%;
}
.listing.wide .poster { aspect-ratio: 16 / 9; }
.poster .pattern { position: absolute; inset: 0; z-index: -1; transition: transform 1.2s var(--ease); }
.listing:hover .poster .pattern { transform: scale(1.08) rotate(-1.5deg); }
.poster .initials { font-family: var(--f-display); font-weight: 900; font-size: clamp(90px, 13vw, 200px); line-height: .8; color: var(--pi, var(--paper)); text-transform: uppercase; letter-spacing: -.03em; transition: transform .8s var(--ease); }
.listing:hover .poster .initials { transform: translateY(-6px) scale(1.03); }
.poster .pc-tag { position: absolute; left: 14px; top: 14px; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .08em; background: var(--ink); color: var(--paper); padding: 6px 10px; border-radius: 999px; }
.poster .order-tag { position: absolute; right: 14px; top: 14px; font-size: 12px; font-weight: 600; background: var(--crane); color: var(--ink); padding: 6px 11px; border-radius: 999px; }
.poster .view { position: absolute; right: 14px; bottom: 14px; width: 48px; height: 48px; border-radius: 50%; background: var(--paper); color: var(--ink); display: grid; place-items: center; transform: scale(0) rotate(-90deg); transition: transform .5s var(--ease); }
.listing:hover .poster .view, .listing:focus-visible .poster .view { transform: scale(1) rotate(0); }
.listing-meta { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.listing h3 { margin: 0; font-family: var(--f-display); font-weight: 800; font-size: clamp(26px, 2.4vw, 34px); text-transform: uppercase; line-height: 1; }
.listing .kind { font-family: var(--f-mono); font-size: 11.5px; color: var(--crane); letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.listing p { margin: 0; color: var(--fog); font-size: 15.5px; }
.listing .area { font-family: var(--f-serif); font-style: italic; color: var(--mute); font-size: 16px; }
.dir-empty { grid-column: 1 / -1; padding: 60px 0; text-align: left; color: var(--fog); font-size: 18px; }
.dir-note { margin-top: 36px; font-size: 13px; color: var(--mute); font-family: var(--f-mono); }
@media (max-width: 960px) { .listing, .listing.wide { grid-column: span 6; } .listing.wide .poster { aspect-ratio: 4/3; } }
@media (max-width: 620px) { .listing, .listing.wide { grid-column: span 12; } }

/* ---------- Postcodes ---------- */
.bt-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1px; background: rgba(18,26,34,.16); border: 1px solid rgba(18,26,34,.16); border-radius: 20px; overflow: hidden; }
.bt { background: var(--paper); padding: 22px 18px 20px; display: grid; gap: 4px; text-decoration: none; color: inherit; transition: background .3s, color .3s; min-height: 132px; align-content: space-between; }
.bt:hover, .bt:focus-visible { background: var(--crane); }
.bt b { font-family: var(--f-display); font-weight: 800; font-size: clamp(36px, 4vw, 56px); line-height: .9; }
.bt span { font-size: 13.5px; color: var(--paper-mute); line-height: 1.35; }
.bt:hover span { color: var(--paper-ink); }
@media (max-width: 960px) { .bt-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 480px) { .bt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- Owners / services ---------- */
.owners-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); }
.owners-sticky { position: sticky; top: 110px; align-self: start; }
.owners-sticky .display { font-size: clamp(56px, 7.4vw, 112px); }
.owners-sticky .lede { margin-top: 26px; }
.svc-list { display: grid; gap: 0; counter-reset: svc; }
.svc { display: grid; grid-template-columns: 1fr auto; gap: 8px 24px; padding: 34px 0; border-top: 1px solid var(--line); }
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc h3 { margin: 0; font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: clamp(28px, 2.8vw, 40px); line-height: 1; }
.svc .price { font-family: var(--f-mono); font-size: 13px; color: var(--crane); align-self: center; white-space: nowrap; border: 1px solid rgba(242,194,48,.4); padding: 6px 12px; border-radius: 999px; }
.svc p { grid-column: 1 / -1; margin: 0; color: var(--fog); max-width: 38em; }
.svc ul { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 6px 18px; list-style: none; padding: 0; margin: 6px 0 0; font-size: 14px; color: var(--mute); }
.svc ul li::before { content: "+ "; color: var(--crane); }
@media (max-width: 860px) { .owners-grid { grid-template-columns: 1fr; } .owners-sticky { position: static; } }

/* ---------- Bizzy Apps Pro ---------- */
.bizzy { background: var(--crane); color: var(--ink); overflow: hidden; }
.bizzy .eyebrow { color: var(--ink); }
.bizzy ::selection { background: var(--ink); color: var(--crane); }
.bizzy-top { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: end; margin-bottom: clamp(48px, 6vw, 80px); }
.bizzy-top .display { font-size: clamp(60px, 10vw, 156px); }
.bizzy-top .display .serif-i { color: var(--brick); }
.bizzy-top p { margin: 0; font-size: 18px; max-width: 30em; }
.bizzy-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 2px solid var(--ink); }
.bcol { padding: 32px 28px 36px 0; border-right: 1px solid rgba(15,23,32,.25); display: grid; gap: 14px; align-content: start; }
.bcol + .bcol { padding-left: 28px; }
.bcol:last-child { border-right: 0; }
.bcol .k { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.bcol .big { font-family: var(--f-display); font-weight: 900; font-size: clamp(72px, 9vw, 136px); line-height: .82; letter-spacing: -.02em; }
.bcol .big small { white-space: nowrap; display: inline-block; font-size: .32em; font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: 0; margin-left: 6px; }
.bcol p { margin: 0; font-size: 15.5px; max-width: 28em; }
.bcol ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 15px; }
.bcol ul li { display: flex; gap: 10px; }
.bcol ul li::before { content: ""; width: 14px; height: 2px; background: var(--ink); margin-top: 12px; flex: none; }
@media (max-width: 960px) {
  .bizzy-top { grid-template-columns: 1fr; }
  .bizzy-cols { grid-template-columns: 1fr; }
  .bcol, .bcol + .bcol { padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(15,23,32,.25); }
}

.calc { margin-top: clamp(56px, 7vw, 96px); background: var(--ink); color: var(--paper); border-radius: 28px; padding: clamp(24px, 4vw, 56px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 72px); }
.calc h3 { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(38px, 4.4vw, 64px); line-height: .92; margin: 14px 0 16px; }
.calc .note { color: var(--mute); font-size: 13.5px; margin: 16px 0 0; }
.field { display: grid; gap: 10px; margin-bottom: 26px; }
.field-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.field label { font-size: 14px; color: var(--fog); }
.field output, .field .val { font-family: var(--f-mono); font-size: 15px; color: var(--crane); font-variant-numeric: tabular-nums; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: linear-gradient(90deg, var(--crane) var(--p, 50%), var(--ink-3) var(--p, 50%)); border-radius: 4px; outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--paper); border: 4px solid var(--crane); cursor: grab; transition: transform .2s; }
input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.2); cursor: grabbing; }
input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--paper); border: 4px solid var(--crane); cursor: grab; }
input[type="range"]:focus-visible { outline: 2px solid var(--crane); outline-offset: 6px; }
.calc-out { display: grid; gap: 14px; align-content: start; }
.bar-row { display: grid; gap: 8px; }
.bar-row .top { display: flex; justify-content: space-between; font-size: 14px; color: var(--fog); gap: 12px; }
.bar-row .top b { font-family: var(--f-mono); font-weight: 500; color: var(--paper); font-variant-numeric: tabular-nums; }
.bar { height: 44px; background: var(--ink-3); border-radius: 10px; overflow: hidden; }
.bar i { display: block; height: 100%; width: var(--w, 50%); border-radius: 10px; transition: width .7s var(--ease); }
.bar.market i { background: repeating-linear-gradient(135deg, var(--brick) 0 10px, #a93d26 10px 20px); }
.bar.bizzy-bar i { background: var(--crane); }
.saving { margin-top: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.saving .k { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.saving .v { font-family: var(--f-display); font-weight: 900; font-size: clamp(60px, 8vw, 116px); line-height: .9; color: var(--crane); font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.saving p { margin: 6px 0 0; color: var(--fog); font-size: 14.5px; }
@media (max-width: 860px) { .calc { grid-template-columns: 1fr; } }

/* ---------- Manifesto / philosophy ---------- */
.manifesto .display.m-text { font-size: clamp(40px, 6.2vw, 96px); line-height: .98; max-width: 16ch; }
.m-text .w { color: rgba(238,240,236,.16); transition: color .5s; }
.m-text .w.on { color: var(--paper); }
.m-text .w.hl.on { color: var(--crane); }
.m-text .serif-i.w.on { color: var(--crane); }
.principles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 48px); margin-top: clamp(60px, 8vw, 110px); }
.principle { display: grid; gap: 12px; align-content: start; padding-top: 22px; border-top: 1px solid var(--line); }
.principle h3 { margin: 0; font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: clamp(26px, 2.4vw, 34px); line-height: 1.1; color: var(--paper); }
.principle p { margin: 0; color: var(--fog); font-size: 15.5px; }
@media (max-width: 860px) { .principles { grid-template-columns: 1fr; } }

/* ---------- Claim steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.step { background: var(--paper-2); border-radius: 22px; padding: 30px 28px 34px; display: grid; gap: 14px; align-content: start; position: relative; overflow: hidden; transition: transform .5s var(--ease), background .3s; }
.step:hover { transform: translateY(-6px); background: #d9ded8; }
.step .n { font-family: var(--f-display); font-weight: 900; font-size: 120px; line-height: .8; color: var(--brick); }
.step h3 { margin: 0; font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: 32px; line-height: 1; }
.step p { margin: 0; color: var(--paper-mute); font-size: 15.5px; }
.step .t { font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; color: var(--paper-ink); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 40px); }
.quote-main { position: relative; }
.quote-main blockquote { margin: 0; font-family: var(--f-serif); font-weight: 400; font-size: clamp(28px, 3.4vw, 50px); line-height: 1.12; letter-spacing: -.01em; }
.quote-main blockquote::before { content: "\201C"; display: block; font-family: var(--f-display); font-weight: 900; font-size: 120px; line-height: .5; height: .42em; color: var(--crane); margin-bottom: 18px; }
.q-cite { margin-top: 28px; display: flex; align-items: center; gap: 14px; font-size: 15px; }
.q-cite .av { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--brick); font-family: var(--f-display); font-weight: 800; font-size: 20px; }
.q-cite small { display: block; color: var(--mute); font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em; }
.q-side { display: grid; gap: 16px; align-content: start; }
.q-small { border: 1px solid var(--line); border-radius: 20px; padding: 24px; display: grid; gap: 14px; transition: border-color .3s, background .3s; }
.q-small:hover { border-color: var(--crane); background: var(--ink-2); }
.q-small p { margin: 0; font-size: 16px; color: var(--paper); }
.q-small .q-cite { margin-top: 0; font-size: 14px; }
.q-small .q-cite .av { width: 36px; height: 36px; font-size: 16px; background: var(--ink-3); }
.q-controls { display: flex; gap: 10px; margin-top: 30px; align-items: center; }
.q-controls button { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; display: grid; place-items: center; transition: background .3s, color .3s; }
.q-controls button:hover { background: var(--crane); color: var(--ink); border-color: var(--crane); }
.q-controls .q-idx { font-family: var(--f-mono); font-size: 13px; color: var(--mute); margin-left: 8px; font-variant-numeric: tabular-nums; }
.q-note { font-size: 12.5px; color: var(--mute); margin-top: 26px; font-family: var(--f-mono); }
.quote-slide { transition: opacity .5s var(--ease), transform .5s var(--ease); }
.quote-slide.is-out { opacity: 0; transform: translateY(12px); }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-block: 1px solid var(--line); margin-top: clamp(60px, 7vw, 100px); }
.fact { padding: 28px 20px 28px 0; display: grid; gap: 6px; }
.fact + .fact { border-left: 1px solid var(--line); padding-left: 20px; }
.fact b { font-family: var(--f-display); font-weight: 900; font-size: clamp(48px, 5.4vw, 80px); line-height: .9; color: var(--paper); font-variant-numeric: tabular-nums; }
.fact span { color: var(--fog); font-size: 14px; }
@media (max-width: 760px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } .fact:nth-child(3) { border-left: 0; padding-left: 0; } .fact:nth-child(n+3) { border-top: 1px solid var(--line); } }

/* ---------- Final CTA ---------- */
.cta { background: var(--brick); color: var(--paper); overflow: hidden; position: relative; }
.cta .eyebrow { color: var(--crane); }
.cta ::selection { background: var(--ink); color: var(--crane); }
.cta-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.cta .display { font-size: clamp(72px, 12vw, 190px); }
.cta .display .serif-i { color: var(--crane); }
.cta .lede { color: #f6d9d1; margin-top: 24px; }

.form { background: var(--paper); color: var(--paper-ink); border-radius: 26px; padding: clamp(22px, 3vw, 36px); display: grid; gap: 14px; box-shadow: 0 40px 80px -40px rgba(0,0,0,.5); }
.form h3 { margin: 0 0 6px; font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: 30px; line-height: 1; }
.form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: 13px; color: var(--paper-mute); }
.form input, .form select, .form textarea {
  border: 1px solid rgba(18,26,34,.2); background: #fff; border-radius: 12px; padding: 13px 14px; font-size: 16px; color: var(--paper-ink); width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--paper-ink); box-shadow: 0 0 0 3px rgba(242,194,48,.55); }
.form input[aria-invalid="true"], .form select[aria-invalid="true"], .form textarea[aria-invalid="true"] { border-color: var(--brick); }
.form .check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--paper-mute); }
.form .check input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--brick); padding: 0; }
.form .check a { color: var(--paper-ink); }
.form .btn { justify-self: start; margin-top: 4px; }
.form .btn--dark::after { background: var(--brick); }
.form-msg { font-size: 14.5px; border-radius: 12px; padding: 14px 16px; background: #e5eee4; color: #1f3d2b; }
.form-msg.err { background: #f7e1dc; color: #7a2615; }
.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-row label { display: inline-flex; align-items: center; cursor: pointer; }
.radio-row input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.radio-row span { border: 1px solid rgba(18,26,34,.2); border-radius: 999px; padding: 8px 14px; font-size: 14px; color: var(--paper-ink); transition: background .2s, border-color .2s; }
.radio-row input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.radio-row input:focus-visible + span { outline: 2px solid var(--brick); outline-offset: 2px; }
@media (max-width: 960px) { .cta-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form .two { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-foot { background: var(--ink); color: var(--fog); padding-top: clamp(64px, 8vw, 110px); padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px)); position: relative; overflow: hidden; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); }
.foot-grid h4 { margin: 0 0 16px; font-family: var(--f-mono); font-weight: 500; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--paper); }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 15px; }
.foot-grid a { text-decoration: none; }
.foot-grid a:hover { color: var(--crane); }
.foot-news p { margin: 14px 0 20px; max-width: 26em; font-size: 15px; }
.news { display: flex; border-bottom: 1px solid var(--line); max-width: 420px; }
.news input { flex: 1; background: transparent; border: 0; padding: 12px 0; outline: none; color: var(--paper); min-width: 0; }
.news input::placeholder { color: var(--mute); }
.news button { background: none; border: 0; color: var(--crane); cursor: pointer; font-weight: 600; padding: 0 0 0 12px; }
.news-msg { font-size: 13.5px; color: var(--crane); margin-top: 10px; min-height: 1.4em; }
.foot-word { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(56px, 15vw, 260px); line-height: .8; color: var(--paper); letter-spacing: -.02em; margin: clamp(56px, 8vw, 100px) 0 0; white-space: nowrap; user-select: none; }
.foot-word span { color: var(--crane); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 28px; border-top: 1px solid var(--line); padding-top: 22px; margin-top: 26px; font-size: 13.5px; color: var(--mute); }
.foot-bottom a { color: var(--fog); }
.foot-bottom a:hover { color: var(--crane); }
.foot-bottom .legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.foot-bottom button.linkish { background: none; border: 0; padding: 0; color: var(--fog); cursor: pointer; font-size: inherit; text-decoration: underline; text-underline-offset: 3px; }
.foot-bottom button.linkish:hover { color: var(--crane); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-news { grid-column: 1 / -1; } }

/* ==========================================================================
   Cookie consent
   ========================================================================== */
.cookie {
  position: fixed; left: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 150; width: min(440px, calc(100% - 32px));
  background: var(--paper); color: var(--paper-ink); border-radius: 22px; padding: 24px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  transform: translateY(20px); opacity: 0; transition: transform .6s var(--ease), opacity .6s var(--ease);
}
.cookie.is-in { transform: none; opacity: 1; }
.cookie h2 { margin: 0 0 8px; font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: 28px; line-height: 1; display: flex; align-items: center; gap: 10px; }
.cookie p { margin: 0 0 16px; font-size: 14.5px; color: var(--paper-mute); line-height: 1.5; }
.cookie p a { color: var(--paper-ink); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-actions button { border-radius: 999px; padding: 11px 16px; font-size: 14px; font-weight: 600; cursor: pointer; border: 1px solid var(--paper-ink); background: transparent; color: var(--paper-ink); transition: background .2s, color .2s; }
.cookie-actions button:hover { background: var(--paper-2); }
.cookie-actions .c-accept { background: var(--ink); color: var(--paper); }
.cookie-actions .c-accept:hover { background: var(--brick); border-color: var(--brick); }
.cookie-prefs { display: grid; gap: 10px; margin: 0 0 16px; }
.pref { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding: 12px 14px; border-radius: 14px; background: var(--paper-2); }
.pref b { display: block; font-size: 14.5px; }
.pref small { display: block; color: var(--paper-mute); font-size: 12.5px; line-height: 1.4; }
.switch { position: relative; width: 44px; height: 26px; flex: none; }
.switch input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; z-index: 1; }
.switch span { position: absolute; inset: 0; background: #b8c0c4; border-radius: 999px; transition: background .25s; }
.switch span::after { content: ""; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .25s var(--ease); }
.switch input:checked + span { background: var(--ink); }
.switch input:checked + span::after { transform: translateX(18px); }
.switch input:disabled + span { background: #7d8b93; }
.switch input:focus-visible + span { outline: 2px solid var(--brick); outline-offset: 2px; }

/* ==========================================================================
   Inner pages (About / Contact / Legal)
   ========================================================================== */
.page-hero { padding-top: 150px; padding-bottom: clamp(48px, 6vw, 90px); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero .display { font-size: clamp(64px, 12vw, 190px); margin-top: 22px; }
.page-hero .display .serif-i { color: var(--crane); }
.page-hero .lede { margin-top: 28px; }
.page-hero .crumbs { font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); }
.page-hero .crumbs a { text-decoration: none; }
.page-hero .crumbs a:hover { color: var(--crane); }

.legal-wrap { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); padding-block: clamp(56px, 7vw, 100px); }
.toc { position: sticky; top: 100px; align-self: start; font-size: 14px; }
.toc h2 { font-family: var(--f-mono); font-weight: 500; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin: 0 0 14px; }
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a { text-decoration: none; color: var(--fog); display: flex; gap: 10px; }
.toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--f-mono); color: var(--mute); font-size: 12px; padding-top: 2px; }
.toc a:hover, .toc a.is-active { color: var(--crane); }
.prose { max-width: 68ch; color: var(--fog); }
.prose h2 { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; color: var(--paper); font-size: clamp(30px, 3vw, 42px); line-height: 1; margin: 56px 0 16px; scroll-margin-top: 100px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { color: var(--paper); font-size: 18px; margin: 28px 0 8px; }
.prose p, .prose li { font-size: 16.5px; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 6px; }
.prose li::marker { color: var(--crane); }
.prose a { color: var(--crane); }
.prose strong { color: var(--paper); font-weight: 600; }
.prose .updated { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .08em; color: var(--mute); margin-bottom: 32px; }
.table-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--line); border-radius: 14px; }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; }
.table-wrap th, .table-wrap td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table-wrap th { color: var(--paper); font-weight: 600; background: var(--ink-2); }
.table-wrap tr:last-child td { border-bottom: 0; }
.callout { border: 1px solid rgba(242,194,48,.35); background: rgba(242,194,48,.06); border-radius: 16px; padding: 18px 20px; margin: 24px 0; }
@media (max-width: 860px) { .legal-wrap { grid-template-columns: 1fr; } .toc { position: static; } }

/* About */
.about-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.about-split .big-p { font-family: var(--f-serif); font-size: clamp(26px, 2.8vw, 40px); line-height: 1.2; color: var(--paper); margin: 0; letter-spacing: -.01em; }
.about-split .big-p em { color: var(--crane); }
.about-split .cols p { margin: 0 0 18px; color: var(--fog); }
.values { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(18,26,34,.16); border-radius: 22px; overflow: hidden; }
.value { background: var(--paper); padding: clamp(24px, 3vw, 40px); display: grid; gap: 12px; }
.value h3 { margin: 0; font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(30px, 3vw, 44px); line-height: 1; }
.value p { margin: 0; color: var(--paper-mute); }
.value .tag { font-family: var(--f-mono); font-size: 12px; color: var(--brick); letter-spacing: .1em; text-transform: uppercase; }
.timeline { display: grid; gap: 0; }
.tl { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); }
.tl:last-child { border-bottom: 1px solid var(--line); }
.tl b { font-family: var(--f-display); font-weight: 800; font-size: 40px; line-height: 1; color: var(--crane); text-transform: uppercase; }
.tl h3 { margin: 0 0 6px; font-size: 20px; color: var(--paper); }
.tl p { margin: 0; color: var(--fog); }
@media (max-width: 860px) { .about-split, .values { grid-template-columns: 1fr; } .tl { grid-template-columns: 1fr; gap: 8px; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); padding-block: clamp(56px, 7vw, 100px); }
.contact-cards { display: grid; gap: 14px; align-content: start; }
.c-card { border: 1px solid var(--line); border-radius: 20px; padding: 24px; display: grid; gap: 8px; }
.c-card .k { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.c-card .v { font-family: var(--f-display); font-weight: 700; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.05; color: var(--paper); word-break: break-word; }
.c-card p { margin: 0; color: var(--fog); font-size: 15px; }
.copy-btn { justify-self: start; background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 13px; cursor: pointer; color: var(--fog); transition: border-color .2s, color .2s; }
.copy-btn:hover { border-color: var(--crane); color: var(--crane); }
.faq { margin-top: 10px; }
.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; font-weight: 600; color: var(--paper); font-size: 17px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--f-mono); color: var(--crane); font-size: 20px; line-height: 1; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 12px 0 0; color: var(--fog); max-width: 60ch; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
