/* ════════════════════════════════════════════════
   SYNILOGIX — shared design system (one organism)
   Tokens + components used by every page.
   WARM IS LOCKED: bone bg, charcoal ink, single burnt-orange accent.
════════════════════════════════════════════════ */
:root {
  --bg:        #f2efe9;   /* bone paper */
  --bg-2:      #e9e4d9;   /* deeper panel */
  --bg-3:      #e1dacc;
  --fg:        #14110d;   /* warm ink */
  --fg-dim:    #6e675e;   /* muted — AA on --bg */
  --fg-faint:  #7d7468;
  --accent:    #b4400a;   /* burnt orange — small pops only */
  --rule:       rgba(20,17,13,0.18);
  --rule-soft:  rgba(20,17,13,0.10);

  --font-display: 'Archivo', sans-serif;
  --font-serif:   'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'Inter', system-ui, sans-serif;   /* labels = Inter caps (mono dropped — read stiff/off) */

  --gutter: clamp(20px, 4vw, 56px);
  --max: 1480px;
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg); color: var(--fg);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
::selection { background: var(--fg); color: var(--bg); }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
img { max-width: 100%; display: block; }

/* display voice */
.disp {
  font-family: var(--font-display); font-stretch: 118%; font-weight: 800;
  text-transform: uppercase; line-height: 0.92; letter-spacing: -0.015em;
}
/* the human signal — characterful serif emphasis, lowercase italic */
.serif {
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  text-transform: none; letter-spacing: -0.01em; color: var(--accent);
  font-optical-sizing: auto;
}
.tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim);
}
.tag--accent { color: var(--accent); }
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.js .reveal { opacity: 0; transform: translateY(36px); }
.js .mask { overflow: hidden; display: block; }
.js .mask > span { display: block; transform: translateY(110%); }

/* ════════════════════════════════════════════════
   BUTTON
════════════════════════════════════════════════ */
.cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bg); background: var(--fg);
  padding: 18px 30px; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.18s ease; white-space: nowrap;
}
.cta:hover { background: var(--accent); color: #fff; }
.cta--ghost { background: transparent; color: var(--fg); border: 1px solid var(--rule); }
.cta--ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.cta__arrow { transition: transform 0.18s ease; }
.cta:hover .cta__arrow { transform: translateX(5px); }

/* ════════════════════════════════════════════════
   PAGE CURTAIN — bone panel that wipes up over the page during a barba transition, hiding the
   scroll-reset + page-swap behind it. Created/animated by site.js (transform-only). Sits above
   everything (header z-100). Burnt-orange hairline leads each edge so the wipe reads on bone-on-
   bone. display toggled by JS; default off. Reduced-motion never shows it.
════════════════════════════════════════════════ */
.page-curtain {
  position: fixed; inset: 0; z-index: 300;
  background: var(--bg);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  box-sizing: border-box;
  box-shadow: 0 0 60px rgba(20, 17, 13, 0.10);
  will-change: transform;
  pointer-events: none;
  display: none;
  /* NO transform here on purpose: a stylesheet transform gets read by GSAP as a pixel offset and
     COMPOUNDS with its yPercent (panel ends up 200% off, never covers during leave). GSAP owns the
     transform — it sets yPercent:100 the instant it flips display:block, so there's no flash. */
}
@media (prefers-reduced-motion: reduce) { .page-curtain { display: none !important; } }

/* ════════════════════════════════════════════════
   HEADER — wordmark text only, no image. Persists across transitions.
════════════════════════════════════════════════ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: stretch;
  border-bottom: 1px solid var(--rule-soft);
  background: rgba(242,239,233,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  height: var(--header-h);
}
.header__brand {
  display: flex; align-items: center; gap: 12px;
  padding: 0 var(--gutter); text-decoration: none;
  /* border-right only on desktop (≥900) where the column structure exists — on mobile it
     framed an empty boxed cell between the logo and the burger. */
}
.header__word {
  font-family: var(--font-display); font-stretch: 120%; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em; font-size: 17px; color: var(--fg);
}
/* brand mark + wordmark — "Build Wipe" intro (motion derived from the mark's own mirrored-seam
   geometry: it builds outward from the centre, the wordmark sets in like a type block sliding home).
   Default state below = fully built, so no-JS / reduced-motion shows a clean static logo. */
.header__logo-wrap { display: inline-flex; overflow: hidden; flex: none; }
.header__logo { width: 26px; height: 26px; display: block; }
.header__word { display: inline-block; max-width: 12ch; overflow: hidden; white-space: nowrap;
  transition: max-width 0.42s cubic-bezier(0.22,0.61,0.36,1), opacity 0.32s ease, transform 0.42s cubic-bezier(0.22,0.61,0.36,1); }
/* scroll-condense ("Settle to the mark"): on scroll-down the wordmark sets back into the mark,
   returns on scroll-up / at top. JS toggles .is-condensed (motion-safe, reduced-motion never sets it).
   Header height is fixed so page content never reflows. */
[data-logo-anim].is-condensed .header__word { max-width: 0; opacity: 0; transform: translateX(-6px); }
@media (prefers-reduced-motion: reduce) { .header__word { transition: none; } }
/* .is-building added by JS once per session on first load, removed after it plays so hover works */
[data-logo-anim].is-building .header__logo { animation: logo-set 0.62s cubic-bezier(0.22,0.61,0.36,1) both; }
[data-logo-anim].is-building .header__word { animation: word-set 0.55s cubic-bezier(0.22,0.61,0.36,1) 0.12s both; }
@keyframes logo-set {
  0%   { clip-path: inset(0 46% 0 46%); opacity: 0; transform: translateY(2px); }
  30%  { opacity: 1; }
  100% { clip-path: inset(0 0 0 0);     opacity: 1; transform: translateY(0); }
}
@keyframes word-set {
  0%   { clip-path: inset(0 100% 0 0); transform: translateX(-4px); }
  100% { clip-path: inset(0 0 0 0);    transform: translateX(0); }
}
/* hover = a quick inward "re-seat" of the mark — echoes the build, single gesture */
@media (hover: hover) {
  .header__logo { transition: clip-path 0.22s cubic-bezier(0.22,0.61,0.36,1); }
  .header__brand:hover .header__logo { clip-path: inset(0 8% 0 8%); }
}
.header__status { display: none; align-items: center; padding: 0 28px; border-right: 1px solid var(--rule-soft); }
.header__nav { display: none; align-items: center; gap: 30px; padding: 0 36px; margin-left: auto; }
.header__nav a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; color: var(--fg-dim); transition: color 0.15s;
  position: relative;
}
.header__nav a:hover { color: var(--fg); }
.header__nav a.is-active { color: var(--fg); }
.header__nav a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px; background: var(--accent);
}
.header__cta { display: none; align-items: center; }
.header__cta .cta { height: 100%; padding: 0 32px; }
.header__burger {
  margin-left: auto; background: none; border: none;
  width: 64px; cursor: pointer; color: var(--fg);
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 900px) {
  .header__brand { border-right: 1px solid var(--rule-soft); }
  .header__status { display: flex; }
  .header__nav { display: flex; }
  .header__cta { display: flex; }
  .header__burger { display: none; }
}
.menu {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
  background: var(--bg-2); border-bottom: 1px solid var(--rule);
  display: none; flex-direction: column; padding: 10px var(--gutter) 28px;
}
.menu.is-open { display: flex; }
.menu a {
  font-family: var(--font-display); font-stretch: 115%; font-weight: 700;
  text-transform: uppercase; font-size: clamp(22px, 6vw, 28px); letter-spacing: -0.01em;
  text-decoration: none; color: var(--fg); padding: 14px 0; border-bottom: 1px solid var(--rule-soft);
}
.menu a:last-child { border: none; color: var(--accent); }

/* ════════════════════════════════════════════════
   PAGE TRANSITION — the warm surface rearranging.
   No overlay, no flash: content cross-dissolves + settles up.
════════════════════════════════════════════════ */
[data-barba="container"] { will-change: transform, opacity; }
/* hide-on-first-paint guard so AJAX-loaded containers don't flash before JS */
html.js-barba [data-barba="container"].is-animating { pointer-events: none; }

/* ════════════════════════════════════════════════
   HERO — homepage signature (heavy sans + serif key-word swap)
════════════════════════════════════════════════ */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: var(--header-h); position: relative;
}
/* living work field — frames parallax to the cursor behind the wordmark */
.hero__field { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hf {
  position: absolute; overflow: hidden;
  border: 1px solid var(--rule); background: var(--bg-2);
  box-shadow: 0 40px 80px -50px rgba(20,17,13,0.45);
  opacity: 0.92; will-change: transform;
}
.hf img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; filter: saturate(0.96); }
.hf--1 { width: clamp(220px, 23vw, 360px); aspect-ratio: 16/10; right: 5vw;  top: 17vh;    rotate: -2.2deg; }
.hf--2 { width: clamp(150px, 15vw, 230px); aspect-ratio: 4/3;   right: 27vw; top: 46vh;    rotate: 2.6deg; z-index: 1; }
.hf--3 { width: clamp(180px, 18vw, 280px); aspect-ratio: 16/10; right: 12vw; bottom: 16vh; rotate: 1.4deg; }
/* ═══ MOBILE HERO — authored composition, not a shrunk stack ═══
   Monumental type owns the top; an angled two-screenshot cluster fills the
   lower negative space, peeking off the right edge and tucked behind the
   opaque foot for a deliberate overlap. Parallax JS bails ≤760px (site.js),
   so .hf transforms stay identity and the rotate tilt holds clean. */
@media (max-width: 760px) {
  .hero { min-height: 100svh; justify-content: space-between; overflow: hidden; }
  .hero__field { display: block; z-index: 0; }

  /* two DISCRETE tilted cards on a diagonal (low-right anchor + high-left
     accent), cream between them — the desktop's diagonal energy, vertical.
     Both bleed off their own edge and tuck behind the opaque foot. */
  .hf--1 {
    width: 64vw; aspect-ratio: 16/10;
    right: -7vw; left: auto; top: auto; bottom: 19svh;
    rotate: -5deg; z-index: 1; opacity: 1;
  }
  .hf--2 {
    width: 47vw; aspect-ratio: 4/3;
    left: -5vw; right: auto; top: auto; bottom: 31svh;
    rotate: 5deg; z-index: 0; opacity: 1;
  }
  .hf--3 { display: none; }   /* restraint: two screenshots carry it, not three */

  /* opaque foot rides over the cluster bottoms -> the intentional peek/overlap */
  .hero__foot { position: relative; z-index: 2; margin-top: 0; }
  .hero__sub { padding-top: 26px; padding-bottom: 24px; }
}

.hero__title {
  position: relative; z-index: 2;
  padding: 12vh var(--gutter) 0;
  font-size: clamp(3.4rem, 13vw, 9.8rem);
  font-weight: 900; font-stretch: 122%;
  line-height: 0.86; letter-spacing: -0.025em;
}
/* phones — monumental: type runs near the edges and commands the top */
@media (max-width: 600px) {
  .hero__title {
    font-size: clamp(4.2rem, 19vw, 7rem);
    line-height: 0.82; letter-spacing: -0.038em;
    padding: 3vh 5vw 0;
  }
  .hero { min-height: 100svh; }
}
.hero__title .accent { color: inherit; }
.swap {
  display: inline-flex; position: relative; vertical-align: baseline;
  height: 1.2em; overflow: hidden; padding-right: 0.06em;
}
.swap__list { display: inline-flex; flex-direction: column; }
.swap__item {
  height: 1.2em; display: flex; align-items: center;
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  /* italic serif sits ~8% smaller than the heavy sans lines — intentional contrast,
     and gives the longest swap word ("photography") safety headroom inside its clip box */
  font-size: 0.92em;
  color: var(--accent); text-transform: none; letter-spacing: -0.02em;
  line-height: 1.2; white-space: nowrap;
}
.hero__foot {
  position: relative; z-index: 2;
  margin-top: 10vh; border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: var(--bg);
}
@media (min-width: 900px) { .hero__foot { grid-template-columns: minmax(0,1fr) auto; align-items: center; } }
.hero__sub { padding: 30px var(--gutter); font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.65; color: var(--fg-dim); max-width: 52ch; }
.hero__sub strong { color: var(--fg); font-weight: 600; }
.hero__cta-cell { display: flex; padding: 0 var(--gutter) 30px; }
@media (min-width: 900px) { .hero__cta-cell { padding: 0 var(--gutter); justify-content: flex-end; } }
.hero__cta-cell .cta { width: 100%; justify-content: center; padding: 28px 48px; }
@media (min-width: 900px) { .hero__cta-cell { border-left: 1px solid var(--rule); } .hero__cta-cell .cta { height: 100%; } }

/* ════════════════════════════════════════════════
   PAGE HERO — shared inner-page skeleton (siblings, not strangers).
   Breadcrumb label · big disp heading w/ serif emphasis · one-line intro.
════════════════════════════════════════════════ */
.phero { padding-top: calc(var(--header-h) + clamp(56px, 12vh, 130px)); padding-bottom: clamp(48px, 8vh, 96px); }
.phero__crumb { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
.phero__crumb a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); text-decoration: none; transition: color 0.15s; }
.phero__crumb a:hover { color: var(--accent); }
.phero__crumb span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.phero__title { font-size: clamp(2.7rem, 8.5vw, 7.2rem); max-width: 16ch; }
.phero__title .serif { font-size: 1.03em; }
.phero__foot { margin-top: clamp(34px, 6vh, 60px); border-top: 1px solid var(--rule); padding-top: 30px; display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 860px) { .phero__foot { grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) auto; align-items: center; gap: 48px; } }
.phero__lede { font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.65; color: var(--fg-dim); max-width: 54ch; }
.phero__lede strong { color: var(--fg); font-weight: 600; }
.phero__facts { display: flex; flex-direction: column; gap: 9px; }
.phero__facts span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); }
.phero__facts b { color: var(--fg-faint); font-weight: 400; margin-right: 14px; }
.phero .cta { white-space: nowrap; }

/* generic section heading block */
.sec { padding-top: clamp(80px, 13vh, 160px); }
.sec__head { margin-bottom: clamp(40px, 6vh, 64px); }
.sec__head h2 { font-size: clamp(2.4rem, 5.6vw, 4.8rem); margin-top: 22px; }
.sec__head h2 .serif { font-size: 1.05em; }
.sec__head p { font-size: 15px; color: var(--fg-dim); max-width: 46ch; line-height: 1.7; margin-top: 18px; }

/* ════════════════════════════════════════════════
   PACKAGE CARDS — shared pricing-card style (websites/video/platforms)
════════════════════════════════════════════════ */
.pkgs { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--rule); }
@media (min-width: 880px) { .pkgs { grid-template-columns: repeat(3, 1fr); } }
.pkg { padding: 40px var(--gutter) 44px; border-bottom: 1px solid var(--rule); display: flex; flex-direction: column; position: relative; }
@media (min-width: 880px) {
  .pkg { padding: 44px 36px 48px; border-bottom: none; border-right: 1px solid var(--rule); }
  .pkg:last-child { border-right: none; }
  .pkgs .wrap { padding: 0; }
}
.pkg--featured { background: var(--bg-2); }
.pkg__flag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; min-height: 13px; }
.pkg__name { font-family: var(--font-display); font-stretch: 118%; font-weight: 800; text-transform: uppercase; font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.015em; line-height: 0.95; }
.pkg__price { font-family: var(--font-mono); font-size: clamp(1.1rem, 1.8vw, 1.45rem); color: var(--accent); margin-top: 14px; font-variant-numeric: tabular-nums; }
.pkg__price span { color: var(--fg-faint); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-top: 4px; }
.pkg__desc { font-size: 14px; color: var(--fg-dim); line-height: 1.7; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--rule-soft); }
.pkg__list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pkg__list li { font-size: 14px; line-height: 1.5; color: var(--fg); padding-left: 24px; position: relative; }
.pkg__list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-family: var(--font-mono); }
.pkg__list li.is-muted { color: var(--fg-faint); }
.pkg__list li.is-muted::before { content: '·'; color: var(--fg-faint); }
.pkg .cta { margin-top: 32px; justify-content: center; }

/* simple price/list rows (add-ons, project types) — reused price-row */
.price-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px 28px; align-items: center; padding: 30px 0; border-top: 1px solid var(--rule); text-decoration: none; transition: padding-left 0.28s cubic-bezier(0.7,0,0.2,1); }
@media (min-width: 760px) { .price-row { grid-template-columns: minmax(0,1.2fr) minmax(0,1.4fr) auto; } }
.price-row:last-of-type { border-bottom: 1px solid var(--rule); }
a.price-row:hover { padding-left: 14px; }
.price-row__name { font-family: var(--font-display); font-stretch: 115%; font-weight: 800; text-transform: uppercase; font-size: clamp(1.4rem, 2.8vw, 2.2rem); letter-spacing: -0.015em; }
a.price-row:hover .price-row__name { color: var(--accent); }
.price-row__desc { font-size: 14px; color: var(--fg-dim); line-height: 1.6; }
.price-row__amount { font-family: var(--font-mono); font-size: clamp(0.95rem, 1.5vw, 1.15rem); color: var(--accent); font-variant-numeric: tabular-nums; justify-self: start; white-space: nowrap; }
@media (min-width: 760px) { .price-row__amount { justify-self: end; } }
.pricing__note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); margin-top: 22px; }

/* feature list grid (what's included / capabilities) */
.feat { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--rule); }
@media (min-width: 760px) { .feat { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .feat { grid-template-columns: repeat(3, 1fr); } }
.feat__item { padding: 34px 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 760px) {
  .feat__item { padding: 36px 36px 40px 0; border-bottom: 1px solid var(--rule); }
  .feat__item:nth-child(2n) { padding-right: 0; padding-left: 36px; border-left: 1px solid var(--rule); }
}
@media (min-width: 1100px) {
  .feat__item { padding: 36px 36px 40px; border-left: 1px solid var(--rule); }
  .feat__item:nth-child(3n+1) { padding-left: 0; border-left: none; }
}
.feat__no { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent); display: block; margin-bottom: 22px; }
.feat__item h3 { font-family: var(--font-display); font-stretch: 112%; font-weight: 700; text-transform: uppercase; font-size: 1.15rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.feat__item p { font-size: 14px; color: var(--fg-dim); line-height: 1.7; max-width: 40ch; }

/* FAQ — disclosure accordion */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary { list-style: none; cursor: pointer; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--font-display); font-stretch: 110%; font-weight: 700; text-transform: uppercase; font-size: clamp(1.1rem, 2.2vw, 1.6rem); letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--font-mono); font-weight: 400; color: var(--accent); font-size: 1.4em; transition: transform 0.25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 30px; font-size: 15px; line-height: 1.75; color: var(--fg-dim); max-width: 64ch; }

/* tech chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chips span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--fg); padding: 11px 18px; border: 1px solid var(--rule); transition: border-color 0.2s, color 0.2s; }
.chips span:hover { border-color: var(--accent); color: var(--accent); }

/* two-column intro (heading sticky + body) — reuses diff grid feel */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0,1fr) minmax(0,1.2fr); gap: 80px; } }
.split__lead h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); margin: 22px 0 24px; }
.split__lead h2 .serif { font-size: 1.05em; }
.split__lead p { color: var(--fg-dim); font-size: 15px; line-height: 1.8; max-width: 40ch; }

/* ════════════════════════════════════════════════
   CLIENTS — trusted-by wall (homepage)
════════════════════════════════════════════════ */
.clients { padding-top: clamp(70px, 11vh, 130px); padding-bottom: clamp(10px, 3vh, 40px); }
.clients__head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(34px, 5vh, 58px); }
.clients__head h2 { font-family: var(--font-display); font-stretch: 110%; font-weight: 700; font-size: clamp(1.8rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -0.02em; max-width: 18ch; }
.clients__head h2 .serif { font-size: 1.06em; }
.clients__head p { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); }
.clients__grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
@media (min-width: 620px) { .clients__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .clients__grid { grid-template-columns: repeat(4, 1fr); } }
/* client logo wall — real recoloured marks, normalized into one calm proof grid.
   Logos are warm-ink single-tone; muted by opacity so mixed densities read as one texture. */
.logo-cell {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: clamp(104px, 12vw, 130px); padding: 26px 24px;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  transition: background 0.2s ease;
}
.logo-img {
  max-height: 66px; max-width: min(184px, 100%); width: auto; height: auto;
  object-fit: contain; opacity: 0.6;
  transition: opacity 0.2s ease;
}
.logo-img--wide { max-height: 38px; max-width: min(168px, 100%); }   /* horizontal lockups (bod) — match weight, not height */
@media (max-width: 480px) { .logo-cell { padding: 22px 14px; } }   /* narrow phones: keep the 2-col wall inside the gutter */
.logo-cell:hover .logo-img { opacity: 1; }
.logo-cell:hover { background: var(--bg-2); }
/* the one client without a recoloured logo yet — quiet typeset name, sits in the muted grid */
.logo-cell__text {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-dim); opacity: 0.7;
}

/* ════════════════════════════════════════════════
   MANIFESTO (homepage)
════════════════════════════════════════════════ */
.manifesto { padding-top: clamp(90px, 14vh, 170px); padding-bottom: clamp(90px, 14vh, 170px); }
.manifesto__tag { margin-bottom: 36px; display: block; }
.manifesto__text {
  font-family: var(--font-display); font-stretch: 110%; font-weight: 700;
  font-size: clamp(1.7rem, 4.2vw, 3.9rem); line-height: 1.14; letter-spacing: -0.02em; max-width: 22ch;
}
.manifesto__text .dim { color: var(--fg-faint); }
.manifesto__text .serif { font-size: 1.08em; }
.manifesto__foot { margin-top: 56px; display: flex; gap: 18px; align-items: baseline; flex-wrap: wrap; }
.manifesto__foot p { font-size: 15px; color: var(--fg-dim); max-width: 44ch; }

/* ════════════════════════════════════════════════
   SERVICES — editorial index (homepage)
════════════════════════════════════════════════ */
.services { border-top: 1px solid var(--rule); }
.services__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; padding: 70px var(--gutter) 50px; flex-wrap: wrap; max-width: var(--max); margin: 0 auto; }
.services__head h2 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
.services__head h2 .serif { font-size: 1.05em; }
.services__head p { font-size: 14px; color: var(--fg-dim); max-width: 32ch; line-height: 1.7; }
.svc {
  display: grid; grid-template-columns: 1fr; gap: 10px; padding: 38px var(--gutter);
  border-top: 1px solid var(--rule); text-decoration: none; position: relative; transition: background 0.2s ease;
  max-width: var(--max); margin: 0 auto;
}
.svc:last-of-type { border-bottom: 1px solid var(--rule); }
@media (min-width: 900px) { .svc { grid-template-columns: 90px minmax(0,1.4fr) minmax(0,1fr) auto; align-items: center; gap: 32px; padding: 44px var(--gutter); } }
.svc::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 0; background: var(--accent); transition: width 0.32s cubic-bezier(0.7,0,0.2,1); z-index: 0; }
.svc:hover::before, .svc:focus-visible::before { width: 6px; }
.svc > * { position: relative; z-index: 1; }
.svc__num { font-family: var(--font-mono); font-size: 12px; color: var(--fg-faint); letter-spacing: 0.1em; }
.svc__name { font-family: var(--font-display); font-stretch: 118%; font-weight: 800; text-transform: uppercase; line-height: 0.95; letter-spacing: -0.015em; font-size: clamp(2rem, 4.8vw, 4rem); color: var(--fg); transition: color 0.2s, transform 0.32s cubic-bezier(0.7,0,0.2,1); }
.svc:hover .svc__name { color: var(--accent); transform: translateX(10px); }
.svc__desc { font-size: 14px; color: var(--fg-dim); line-height: 1.7; max-width: 40ch; }
.svc__go { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-faint); display: inline-flex; gap: 10px; align-items: center; transition: color 0.2s; }
.svc:hover .svc__go { color: var(--fg); }

/* ════════════════════════════════════════════════
   WORK — large warm editorial spread (shared work-card style)
════════════════════════════════════════════════ */
.work { padding-top: clamp(100px, 15vh, 180px); }
.work__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: clamp(40px,6vh,68px); }
.work__head h2 { font-size: clamp(2.6rem, 6vw, 5.4rem); margin-top: 22px; }
.work__head h2 .serif { font-size: 1.05em; }
.work__head p { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); }

/* Hand-placed editorial collage — varied sizes, staggered, overlapping, tilted.
   Tilt uses the standalone `rotate:` property so the GSAP reveal (which drives
   `transform`) doesn't wipe it. Mobile = clean straight stack. */
.spread { display: flex; flex-direction: column; gap: clamp(40px, 8vh, 72px); }
.piece { text-decoration: none; display: block; }
.piece__frame {
  position: relative; overflow: hidden; background: var(--bg-2);
  border: 1px solid var(--rule); aspect-ratio: 4 / 3;
}
@media (min-width: 760px) {
  /* Each piece on its OWN grid row (auto-flow pushes overlapping columns down),
     so they NEVER collide — scatter comes from varied width, side, size and tilt. */
  .spread {
    display: grid; grid-template-columns: repeat(12, 1fr);
    column-gap: clamp(20px, 3vw, 48px); row-gap: clamp(56px, 9vh, 120px);
    align-items: start;
  }
  .piece { position: relative; transition: transform 0.55s cubic-bezier(0.2,0.7,0.2,1), rotate 0.55s cubic-bezier(0.2,0.7,0.2,1); }
  .piece--a { grid-column: 1 / 8;  rotate: -1.6deg; }                  /* left, large */
  .piece--b { grid-column: 6 / 13; rotate: 2.2deg; justify-self: end; } /* right, offset */
  .piece--c { grid-column: 3 / 11; rotate: -1deg; }                    /* centre, wide */
  .piece--a .piece__frame { aspect-ratio: 4 / 3; }
  .piece--b .piece__frame { aspect-ratio: 5 / 4; }
  .piece--c .piece__frame { aspect-ratio: 16 / 9; }  /* wide cinematic */
  .spread .piece:hover, .spread .piece:focus-visible { rotate: 0deg; transform: translateY(-8px); z-index: 4; }
}
.piece__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.7s cubic-bezier(0.2,0.7,0.2,1), filter 0.5s ease;
  filter: saturate(0.96);
}
.piece:hover .piece__frame img, .piece:focus-visible .piece__frame img { transform: scale(1.045); filter: saturate(1.08); }
.piece:hover .piece__frame, .piece:focus-visible .piece__frame { border-color: var(--accent); }
.piece__visit {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bg); background: var(--fg); padding: 9px 13px;
  opacity: 0; transform: translateY(6px); transition: opacity 0.3s ease, transform 0.3s ease;
}
.piece:hover .piece__visit, .piece:focus-visible .piece__visit { opacity: 1; transform: translateY(0); }
.piece__cap { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; margin-top: 22px; border-top: 1px solid var(--rule); padding-top: 16px; }
.piece__name { font-family: var(--font-display); font-stretch: 114%; font-weight: 700; text-transform: uppercase; font-size: clamp(1.2rem, 2.2vw, 1.9rem); letter-spacing: -0.01em; }
.piece:hover .piece__name { color: var(--accent); }
.piece__meta { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-faint); text-align: right; white-space: nowrap; }

/* ════════════════════════════════════════════════
   DIFFERENCE (homepage + reused)
════════════════════════════════════════════════ */
.diff { padding-top: clamp(100px, 15vh, 180px); }
.diff__grid { display: grid; grid-template-columns: 1fr; gap: 60px; }
@media (min-width: 900px) { .diff__grid { grid-template-columns: minmax(0,1fr) minmax(0,1.3fr); gap: 80px; } }
.diff__left { align-self: start; }
@media (min-width: 900px) { .diff__left { position: sticky; top: 120px; } }
.diff__left h2 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); margin: 26px 0 28px; }
.diff__left h2 .serif { font-size: 1.05em; }
.diff__left p { color: var(--fg-dim); font-size: 15px; line-height: 1.8; max-width: 38ch; }
.diff__item { padding: 40px 0; border-top: 1px solid var(--rule); display: grid; grid-template-columns: auto 1fr; gap: 26px; }
.diff__item:last-child { border-bottom: 1px solid var(--rule); }
.diff__no { font-family: var(--font-display); font-stretch: 125%; font-weight: 900; font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 0.9; color: transparent; -webkit-text-stroke: 1px var(--fg-faint); }
.diff__item h3 { font-family: var(--font-display); font-stretch: 112%; font-weight: 700; text-transform: uppercase; font-size: clamp(1.2rem, 2vw, 1.6rem); letter-spacing: -0.01em; margin-bottom: 12px; }
.diff__item p { font-size: 14px; color: var(--fg-dim); line-height: 1.75; max-width: 48ch; }

/* ════════════════════════════════════════════════
   PROCESS (homepage + reused)
════════════════════════════════════════════════ */
.process { padding-top: clamp(100px, 15vh, 180px); }
.process__head { margin-bottom: 56px; }
.process__head h2 { font-size: clamp(2.6rem, 6vw, 5.4rem); margin-top: 26px; }
.process__head h2 .serif { font-size: 1.05em; }
.process__steps { border-top: 1px solid var(--rule); display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) { .process__steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 36px 28px 44px 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 900px) { .step { border-bottom: none; border-right: 1px solid var(--rule); padding: 44px 32px 56px 0; } .step + .step { padding-left: 32px; } .step:last-child { border-right: none; } }
.step__no { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); display: block; margin-bottom: 56px; }
.step h3 { font-family: var(--font-display); font-stretch: 112%; font-weight: 700; text-transform: uppercase; font-size: 1.25rem; margin-bottom: 14px; }
.step p { font-size: 13.5px; color: var(--fg-dim); line-height: 1.75; }

/* ════════════════════════════════════════════════
   PROOF — testimonials (shared treatment)
════════════════════════════════════════════════ */
.proof { padding-top: clamp(100px, 15vh, 180px); }
.proof__head { max-width: 1100px; }
.proof__title { font-size: clamp(2.2rem, 6vw, 4.5rem); margin-top: 22px; }
/* ruled editorial testimonials — name/role left, quote right, thin rule, no cards/avatars */
.voices { margin-top: 44px; border-top: 1px solid var(--rule); }
.voice { display: grid; grid-template-columns: 1fr; gap: 14px; padding: 40px 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 760px) { .voice { grid-template-columns: minmax(0,0.85fr) minmax(0,2.15fr); gap: 56px; align-items: start; } }
.voice__who strong { display: block; font-size: 16px; font-weight: 600; color: var(--fg); line-height: 1.3; }
.voice__who span { display: block; margin-top: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); }
.voice__quote { font-family: var(--font-display); font-stretch: 100%; font-weight: 500; font-size: clamp(1.3rem, 2.7vw, 2rem); line-height: 1.32; letter-spacing: -0.01em; color: var(--fg); max-width: 42ch; text-transform: none; }
.voice__quote .serif { font-size: 1.06em; }

/* ════════════════════════════════════════════════
   PRICING (homepage)
════════════════════════════════════════════════ */
.pricing { padding-top: clamp(100px, 15vh, 180px); }
.pricing__state { font-size: clamp(1.9rem, 4.6vw, 4.2rem); max-width: 18ch; margin: 26px 0 30px; }
.pricing__state .serif { font-size: 1.05em; }
.pricing__why { font-size: 15px; color: var(--fg-dim); max-width: 52ch; line-height: 1.8; margin-bottom: 64px; }
.pricing__why strong { color: var(--fg); font-weight: 600; }
.pricing .price-row { grid-template-columns: minmax(0,1fr) auto; }
@media (min-width: 760px) { .pricing .price-row { grid-template-columns: minmax(0,1.2fr) minmax(0,1fr) auto; } }
.price-row__go { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-faint); justify-self: end; }
a.price-row:hover .price-row__go { color: var(--fg); }

/* ════════════════════════════════════════════════
   CTA BAND — closing call (reused on inner pages)
════════════════════════════════════════════════ */
.band { padding: clamp(90px, 14vh, 170px) 0; border-top: 1px solid var(--rule); text-align: center; }
.band h2 { font-size: clamp(2.6rem, 8vw, 6.4rem); margin-bottom: 30px; }
.band h2 .serif { font-size: 1.03em; }
.band p { font-size: 16px; color: var(--fg-dim); max-width: 44ch; margin: 0 auto 40px; line-height: 1.7; }
.band .cta { padding: 22px 40px; }

/* ════════════════════════════════════════════════
   CONTACT (homepage section + contact page)
════════════════════════════════════════════════ */
.contact { padding-top: clamp(110px, 16vh, 200px); padding-bottom: clamp(90px, 12vh, 150px); }
.contact--page { padding-top: calc(var(--header-h) + clamp(56px, 11vh, 120px)); }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 980px) { .contact__grid { grid-template-columns: minmax(0,1.2fr) minmax(0,1fr); gap: 90px; } }
.contact__title { font-size: clamp(3rem, 8.5vw, 7.5rem); margin: 26px 0 30px; }
.contact__title .serif { font-size: 1.02em; }
.contact__lede { font-size: 16px; color: var(--fg-dim); line-height: 1.8; max-width: 46ch; margin-bottom: 46px; }
.contact__lede strong { color: var(--fg); font-weight: 600; }
.contact__direct a { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.04em; color: var(--fg); text-decoration: none; padding: 18px 0; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.15s; }
.contact__direct a:last-child { border-bottom: 1px solid var(--rule); }
.contact__direct a:hover { color: var(--accent); }
.contact__direct a span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); }
/* giant clickable email — the real working fallback while the form has no backend */
.contact__maillabel { display: block; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 14px; }
.contact__bigmail { display: inline-block; font-family: var(--font-display); font-stretch: 110%; font-weight: 800; font-size: clamp(1.7rem, 5.2vw, 3.2rem); letter-spacing: -0.02em; line-height: 1.04; color: var(--fg); text-decoration: none; word-break: break-word; margin-bottom: 44px; transition: color 0.15s; }
.contact__bigmail:hover { color: var(--accent); }
.form { display: flex; flex-direction: column; }
.form__field { display: flex; flex-direction: column; gap: 10px; padding: 22px 0; border-top: 1px solid var(--rule); }
.form__field:first-child { border-top: none; padding-top: 0; }
.form__field label { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); }
.form__field input, .form__field select, .form__field textarea { background: transparent; border: none; color: var(--fg); font-family: var(--font-body); font-size: 17px; padding: 2px 0; resize: vertical; }
.form__field input::placeholder, .form__field textarea::placeholder { color: var(--fg-faint); }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus { outline: none; }
.form__field:focus-within label { color: var(--accent); }
.form__field select { appearance: none; cursor: pointer; }
.form__field select option { background: var(--bg-2); color: var(--fg); }
.form__field textarea { min-height: 110px; }
.form .cta { margin-top: 30px; justify-content: center; width: 100%; }
.form__success { display: none; margin-top: 18px; padding: 16px 20px; border: 1px solid var(--accent); color: var(--accent); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.05em; }

/* ════════════════════════════════════════════════
   BLOG — editorial journal (asymmetric, hierarchical)
════════════════════════════════════════════════ */
.journal { padding-top: clamp(40px, 6vh, 70px); }
.journal__feature { display: grid; grid-template-columns: 1fr; gap: 30px; border-top: 1px solid var(--rule); padding-top: clamp(34px, 5vh, 56px); text-decoration: none; }
@media (min-width: 900px) { .journal__feature { grid-template-columns: minmax(0,1.25fr) minmax(0,1fr); gap: 56px; align-items: center; } }
.journal__feature .post__frame { aspect-ratio: 16 / 10; }
.post__frame { position: relative; overflow: hidden; background: var(--bg-2); border: 1px solid var(--rule); aspect-ratio: 4 / 3; }
.post__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.2,0.7,0.2,1); }
a:hover .post__frame img, a:focus-visible .post__frame img { transform: scale(1.04); }
/* placeholder frame when no image */
.post__frame--ph { display: flex; align-items: center; justify-content: center; background: var(--bg-2); }
.post__frame--ph span { font-family: var(--font-serif); font-style: italic; color: var(--fg-faint); font-size: clamp(1.4rem, 3vw, 2.4rem); }
.post__meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }
.post__cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.post__date { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); }
.journal__feature .post__title { font-family: var(--font-display); font-stretch: 112%; font-weight: 800; text-transform: uppercase; font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 0.98; letter-spacing: -0.02em; }
.journal__feature .post__title .serif { font-size: 1.04em; }
.post__excerpt { font-size: 15px; color: var(--fg-dim); line-height: 1.7; max-width: 48ch; margin-top: 18px; }
.journal__feature:hover .post__title { color: var(--accent); }

.journal__grid { margin-top: clamp(48px, 7vh, 84px); display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--rule); }
@media (min-width: 760px) { .journal__grid { grid-template-columns: repeat(2, 1fr); } }
.post { padding: 34px 0; border-bottom: 1px solid var(--rule); text-decoration: none; display: block; }
@media (min-width: 760px) {
  .post { padding: 36px 36px 40px 0; }
  .post:nth-child(2n) { padding-right: 0; padding-left: 36px; border-left: 1px solid var(--rule); }
}
.post .post__frame { margin-bottom: 22px; }
.post__title { font-family: var(--font-display); font-stretch: 112%; font-weight: 700; text-transform: uppercase; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1; letter-spacing: -0.015em; }
.post:hover .post__title { color: var(--accent); }
.post .post__excerpt { font-size: 14px; }

/* blog empty state — with personality */
.journal__empty { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: clamp(60px, 12vh, 130px) 0; text-align: center; }
.journal__empty h2 { font-size: clamp(2.2rem, 6vw, 4.6rem); margin-bottom: 24px; }
.journal__empty h2 .serif { font-size: 1.05em; }
.journal__empty p { font-size: 16px; color: var(--fg-dim); max-width: 46ch; margin: 0 auto 36px; line-height: 1.75; }
.journal__empty .tag { display: block; margin-bottom: 28px; }

/* ════════════════════════════════════════════════
   ARTICLE — long-form post template (well-set magazine)
════════════════════════════════════════════════ */
.article { padding-top: calc(var(--header-h) + clamp(40px, 8vh, 90px)); }
.article__head { max-width: 880px; margin: 0 auto; padding-bottom: clamp(36px, 5vh, 56px); }
.article__title { font-family: var(--font-display); font-stretch: 112%; font-weight: 800; text-transform: uppercase; font-size: clamp(2.3rem, 6vw, 5rem); line-height: 0.98; letter-spacing: -0.02em; margin: 22px 0 30px; }
.article__title .serif { font-size: 1.04em; text-transform: none; }
.article__byline { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 18px 0; }
.article__byline span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); }
.article__byline .post__cat { color: var(--accent); }
.article__hero { margin: clamp(34px, 5vh, 56px) auto; max-width: 1200px; }
.article__hero .post__frame { aspect-ratio: 16 / 9; }
.article__body { max-width: 68ch; margin: 0 auto; font-size: 1.12rem; line-height: 1.78; color: #2a2620; }
.article__body > * + * { margin-top: 1.5em; }
.article__body h2 { font-family: var(--font-display); font-stretch: 110%; font-weight: 700; text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.015em; margin-top: 1.8em; color: var(--fg); }
.article__body h3 { font-family: var(--font-serif); font-style: italic; font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--fg); margin-top: 1.6em; }
.article__body p strong { color: var(--fg); font-weight: 600; }
.article__body a { color: var(--accent); text-underline-offset: 3px; }
.article__body ul, .article__body ol { padding-left: 1.4em; }
.article__body li + li { margin-top: 0.6em; }
.article__body img { margin: 2em auto; border: 1px solid var(--rule); }
.pullquote { font-family: var(--font-display); font-stretch: 108%; font-weight: 700; font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.2; letter-spacing: -0.015em; color: var(--fg); margin: 1.4em 0; padding: 0.2em 0 0.2em 28px; border-left: 3px solid var(--accent); max-width: none; }
.pullquote .serif { font-size: 1.04em; }
.article__foot { max-width: 68ch; margin: clamp(50px, 8vh, 90px) auto 0; border-top: 1px solid var(--rule); padding-top: 30px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.article__foot a { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); text-decoration: none; }
.article__foot a:hover { color: var(--accent); }

/* draft / dummy badge */
.draft-note { max-width: 880px; margin: 0 auto clamp(30px,4vh,44px); padding: 14px 18px; border: 1px dashed var(--accent); color: var(--accent); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; }

/* ════════════════════════════════════════════════
   FOOTER — persists across transitions
════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--rule); }
/* giant wordmark = the footer spine (Mother Design treatment) */
.footer__mark { display: block; width: 100%; overflow: hidden; padding: 48px var(--gutter) 0; font-family: var(--font-display); font-stretch: 125%; font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.8; font-size: clamp(3.5rem, 17vw, 18rem); color: var(--fg); user-select: none; white-space: nowrap; }
/* meta row beneath the spine: clock · contact · explore · studio */
.footer__meta { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 40px var(--gutter) 14px; border-top: 1px solid var(--rule-soft); margin-top: 24px; align-items: start; }
@media (min-width: 520px) { .footer__meta { grid-template-columns: 1fr 1fr; column-gap: 28px; row-gap: 36px; } }
@media (min-width: 920px) { .footer__meta { grid-template-columns: 1.25fr 1.25fr 1fr 1fr; column-gap: 44px; row-gap: 0; } }
.footer__metacol h4 { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 18px; }
.footer__metacol a { display: block; width: fit-content; font-size: 14px; line-height: 1.35; color: var(--fg-dim); text-decoration: none; padding: 6px 0; transition: color 0.15s; }
.footer__metacol a:hover { color: var(--fg); }
.footer__clock { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; color: var(--fg); margin-bottom: 12px; }
.footer__note { font-size: 13px; color: var(--fg-dim); line-height: 1.65; max-width: 28ch; }
.footer__email { font-family: var(--font-display) !important; font-stretch: 110%; font-weight: 700; font-size: clamp(1.1rem, 1.9vw, 1.4rem) !important; letter-spacing: -0.01em; color: var(--fg) !important; line-height: 1.1; word-break: normal; overflow-wrap: break-word; padding: 0 0 14px !important; }
.footer__email:hover { color: var(--accent) !important; }
.footer__metacol--biz a:not(.footer__email) { padding-top: 0; }
.footer__founders { font-size: 14px; color: var(--fg-dim); line-height: 1.7; margin-top: 22px; }
.footer__base { border-top: 1px solid var(--rule-soft); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 22px var(--gutter); }
.footer__base span, .footer__base a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); text-decoration: none; }
.footer__base a:hover { color: var(--fg); }

/* ════════════════════════════════════════════════
   THE SYNILOGIX EFFECT — proof system
   (homepage hook + standalone case-study page)
════════════════════════════════════════════════ */

/* — video frame (shared: homepage hook + case page). Real reel is 4:3 landscape. — */
.vframe {
  position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; cursor: pointer;
  background: var(--bg-3); border: 1px solid var(--rule);
  box-shadow: 0 26px 60px -34px rgba(20,17,13,0.55);
}
.vframe__vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.vframe__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 66px; height: 66px; border-radius: 50%; border: none; cursor: pointer; color: #fff; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(180,64,10,0.6); transition: transform 0.25s ease, opacity 0.3s ease;
}
.vframe__play:hover { transform: translate(-50%,-50%) scale(1.07); }
.vframe__play svg { width: 24px; height: 24px; margin-left: 3px; }
.vframe.is-playing .vframe__play { opacity: 0; pointer-events: none; }
.vframe__cap {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bg); background: var(--fg); padding: 7px 11px; transition: opacity 0.3s ease;
}
.vframe.is-playing .vframe__cap { opacity: 0; }

/* ════════════════════════════════════════════════
   CONTACT SHEET → CUT — selected video/photo work (marketing + index teaser)
   The mixed aspect ratios + tilt + non-uniform spans ARE the design.
   Tilt uses standalone `rotate:` so the GSAP .reveal (transform) never wipes it.
════════════════════════════════════════════════ */

/* — THE CUT: one reel pulled out into whitespace, sound-on cue — */
.reel { padding-top: clamp(80px, 13vh, 160px); text-align: center; }
.reel .sec__head, .reel__head { margin-bottom: clamp(36px, 5vh, 56px); }
.reel h2 { font-size: clamp(2.4rem, 5.6vw, 4.8rem); margin-top: 22px; }
.reel h2 .serif { font-size: 1.05em; }
.reel__stage { max-width: 820px; margin: 0 auto; }
.reel__stage .vframe { aspect-ratio: 2 / 1; max-height: 80vh; margin: 0 auto; }
.reel__sound {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}

/* — THE CONTACT SHEET: scattered wall of reels + stills — */
.sheet { padding-top: clamp(80px, 13vh, 160px); }
.sheet__head { margin-bottom: clamp(44px, 7vh, 80px); }
.sheet__head h2 { font-size: clamp(2.4rem, 5.6vw, 4.8rem); margin-top: 22px; }
.sheet__head h2 .serif { font-size: 1.05em; }

.sheet__grid { display: flex; flex-direction: column; gap: clamp(40px, 8vh, 72px); }
.frame { position: relative; }
.frame .vframe { aspect-ratio: 9 / 16; max-height: 78vh; }
.frame--wide .vframe { aspect-ratio: 16 / 9; max-height: none; }
.frame__shot { margin: 0; border: 1px solid var(--rule); background: #faf7f1; border-radius: 2px; overflow: hidden; position: relative; }
/* reserve the photo's space before the lazy img loads (both event photos are 3:2) so the
   figure never collapses to a sliver on mobile while loading */
.frame__shot img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.frame__cap {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bg); background: var(--fg); padding: 7px 11px;
}

@media (min-width: 760px) {
  /* Each item on its OWN auto-flow grid row — NO shared rows, NO overlap. */
  .sheet__grid {
    display: grid; grid-template-columns: repeat(12, 1fr);
    column-gap: clamp(20px, 3vw, 48px); row-gap: clamp(56px, 9vh, 120px);
    align-items: start;
  }
  .frame { transition: transform 0.55s cubic-bezier(0.2,0.7,0.2,1), rotate 0.55s cubic-bezier(0.2,0.7,0.2,1); }
  .frame:hover { rotate: 0deg !important; transform: translateY(-8px); z-index: 4; }
  .frame--reel-a  { grid-column: 1 / 5;   rotate: -1.4deg; }                 /* left, vertical */
  .frame--still-a { grid-column: 6 / 13;  rotate: 2deg;    justify-self: end; } /* right, landscape */
  .frame--wide    { grid-column: 3 / 11;  rotate: -0.8deg; }                 /* centre, wide */
  .frame--reel-b  { grid-column: 9 / 13;  rotate: 1.6deg; } /* right, vertical */
  .frame--still-b { grid-column: 1 / 8;   rotate: -1.2deg; }                 /* left, landscape */
  .frame--reel-c  { grid-column: 3 / 7;   rotate: 1deg; }                    /* centre-left, vertical */
  .frame--still-c { grid-column: 6 / 13;  rotate: 1.8deg;  justify-self: end; } /* right, landscape */
}

.sheet__foot { margin-top: clamp(56px, 9vh, 110px); border-top: 1px solid var(--rule); padding-top: 34px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.sheet__foot p { font-family: var(--font-display); font-stretch: 110%; font-weight: 600; font-size: clamp(1.3rem, 2.8vw, 2rem); letter-spacing: -0.01em; }

/* — HOMEPAGE TEASER: one strip, one link (hero word-swap stays THE signature) — */
.tease { padding-top: clamp(80px, 13vh, 160px); }
.tease__eyebrow { display: block; margin-bottom: 22px; }
.tease .disp { font-size: clamp(2.4rem, 5.6vw, 4.8rem); }
.tease .disp .serif { font-size: 1.05em; }
.tease__strip { display: flex; flex-direction: column; gap: clamp(28px, 5vh, 48px); margin-top: clamp(40px, 6vh, 64px); }
.tease__strip .frame .vframe { aspect-ratio: 9 / 16; max-height: 78vh; }
.tease__strip .frame--wide .vframe { aspect-ratio: 16 / 9; }
.tease__link { margin-top: clamp(36px, 5vh, 56px); display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg); text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 6px; width: fit-content; transition: gap 0.2s ease, color 0.2s ease; }
.tease__link:hover { gap: 18px; color: var(--accent); }

@media (min-width: 760px) {
  .tease__strip { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: clamp(20px, 3vw, 48px); row-gap: 0; align-items: center; }
  .tease__strip .frame { transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1), rotate 0.5s cubic-bezier(0.2,0.7,0.2,1); }
  .tease__strip .frame:hover { rotate: 0deg !important; transform: translateY(-6px); z-index: 4; }
  .tease__reel  { grid-column: 1 / 5;  rotate: -1.4deg; }
  .tease__vid   { grid-column: 5 / 10; rotate: 0.8deg; }
  .tease__still { grid-column: 10 / 13; rotate: 1.6deg; }
}

@media (max-width: 760px) {
  /* mobile: clean straight stack, no tilt, reels capped, stills full width */
  .frame { rotate: 0deg !important; }
  .frame .vframe { max-height: 72vh; }
  /* tighter vertical rhythm — desktop clamps leave too much dead bone space when stacked */
  .reel, .sheet, .tease { padding-top: clamp(52px, 8vh, 84px); }
  .sheet__head { margin-bottom: 30px; }
  .sheet__grid { gap: 30px; }
  .tease__strip { gap: 22px; }
  .sheet__foot { margin-top: 40px; }
}

/* — homepage hook (second thing after hero) — */
.effecthook { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.effecthook__in { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 60px); align-items: center; padding-top: clamp(70px,10vh,120px); padding-bottom: clamp(70px,10vh,120px); }
@media (min-width: 860px) { .effecthook__in { grid-template-columns: 1.3fr 0.7fr; } }
.effecthook__eyebrow { display: block; margin-bottom: 26px; }
.effecthook__big { font-family: var(--font-display); font-stretch: 120%; font-weight: 900; line-height: 0.92; letter-spacing: -0.02em; font-size: clamp(2.8rem, 8vw, 6.2rem); }
.effecthook__big .arrow { color: var(--fg-faint); font-weight: 700; }
.effecthook__big .to { color: var(--accent); }
.effecthook__cap { font-family: var(--font-display); font-stretch: 112%; font-weight: 700; text-transform: uppercase; font-size: clamp(1rem,1.8vw,1.4rem); letter-spacing: -0.01em; margin-top: 14px; }
.effecthook__line { margin-top: 22px; font-size: 15px; color: var(--fg-dim); line-height: 1.7; max-width: 46ch; }
.effecthook__cta { margin-top: 30px; display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg); text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 6px; width: fit-content; transition: gap 0.2s ease, color 0.2s ease; }
.effecthook__cta:hover { gap: 18px; color: var(--accent); }
.effecthook__media { justify-self: stretch; width: 100%; }
@media (min-width: 860px) { .effecthook__media { justify-self: end; max-width: 460px; } }

/* — standalone case-study page — */
.case { padding-top: clamp(70px, 11vh, 140px); }
.case + .case { border-top: 1px solid var(--rule); margin-top: clamp(70px,10vh,130px); }
.case__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(36px,5vh,60px); }
.case__client { font-family: var(--font-display); font-stretch: 116%; font-weight: 800; text-transform: uppercase; font-size: clamp(1.6rem,3.4vw,2.8rem); letter-spacing: -0.015em; }
.case__kind { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); }
.case__grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
@media (min-width: 860px) { .case__grid { grid-template-columns: 0.8fr 1.2fr; } }
.case__narr { font-family: var(--font-display); font-stretch: 108%; font-weight: 600; font-size: clamp(1.15rem, 1.9vw, 1.55rem); line-height: 1.3; letter-spacing: -0.01em; max-width: 32ch; margin-bottom: clamp(30px,4vh,46px); }
.case__narr .serif { font-size: 1.05em; }
.case__metrics { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--rule); }
@media (min-width: 560px) { .case__metrics { grid-template-columns: 1fr 1fr; } }
.metric { padding: 26px 4px 26px 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 560px) { .metric:nth-child(odd) { padding-right: 28px; border-right: 1px solid var(--rule); } .metric:nth-child(even){ padding-left: 28px; } }
.metric--hero { grid-column: 1 / -1; }
.metric__row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.metric__before { font-family: var(--font-mono); font-size: clamp(1rem,1.6vw,1.3rem); color: var(--fg-faint); text-decoration: line-through; text-decoration-color: var(--rule); }
.metric__arrow { color: var(--fg-faint); font-size: 1.1rem; }
.metric__after { font-family: var(--font-display); font-stretch: 122%; font-weight: 900; font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 0.95; letter-spacing: -0.02em; color: var(--accent); font-variant-numeric: tabular-nums; }
.metric--hero .metric__after { font-size: clamp(2.8rem, 7vw, 5rem); }
.metric__label { display: block; margin-top: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); }
.case__note { margin-top: 28px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; color: var(--fg-faint); line-height: 1.8; max-width: 64ch; }
/* repeatable screenshot-led case template (entry 2+) — Mobbin Twenty/Webflow.
   Reuses .case/.case__head/.metric/.count so count-up + honesty framing carry over. */
.case__grid-study { grid-template-columns: 1fr; }
@media (min-width: 860px) { .case__grid-study { grid-template-columns: 1.12fr 0.88fr; } }
.case__shot { margin: 0; border: 1px solid var(--rule); background: #faf7f1; border-radius: 2px; overflow: hidden; }
.case__shot img { display: block; width: 100%; height: auto; }
.case__shot figcaption { padding: 13px 16px; border-top: 1px solid var(--rule); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); }
.case__strip { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--rule); margin-bottom: 6px; }
@media (min-width: 480px) { .case__strip { grid-template-columns: 1fr 1fr; } }
.case__strip .metric__after { display: block; }

/* — "more coming" state (built to scale, with personality) — */
.case-more { margin-top: clamp(60px,9vh,120px); border: 1px dashed var(--rule); padding: clamp(34px,5vw,56px); text-align: center; }
.case-more h3 { font-family: var(--font-display); font-stretch: 114%; font-weight: 800; text-transform: uppercase; font-size: clamp(1.4rem,3vw,2.2rem); letter-spacing: -0.01em; margin-bottom: 14px; }
.case-more p { font-size: 14.5px; color: var(--fg-dim); max-width: 44ch; margin: 0 auto; line-height: 1.75; }
.case-more .serif { color: var(--accent); }

/* ════════════════════════════════════════════════
   MOTION SAFETY
════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .mask > span { transform: none; }
  .swap__list { transform: none !important; }
  .piece__visit { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════
   THE LAB — /lab index ruled work-list (barba-swappable,
   so it lives in site.css, NOT in the page <head>)
════════════════════════════════════════════════ */
.lab-intro { padding-bottom: clamp(8px, 2vw, 24px); }
.lab-list { border-top: 1px solid var(--fg); margin-top: clamp(28px, 5vw, 52px); }
.lab-row {
  display: grid; grid-template-columns: 4.5rem minmax(0,1.7fr) minmax(0,0.9fr) auto;
  gap: 1.75rem; align-items: center;
  border-bottom: 1px solid var(--rule);
  padding: clamp(1.4rem, 3vw, 2.1rem) 0;
  text-decoration: none; color: inherit; position: relative;
  transition: padding-left .3s cubic-bezier(.22,.61,.36,1), background .3s ease;
}
.lab-row::before {
  content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 0;
  background: var(--accent); transition: width .35s cubic-bezier(.22,.61,.36,1);
}
a.lab-row:hover { padding-left: 16px; background: linear-gradient(90deg, var(--bg-2), transparent 58%); }
a.lab-row:hover::before { width: 100%; }
.lab-row--soon { opacity: .6; }
.lab-no { font-family: var(--font-display); font-stretch: 118%; font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.3rem); color: var(--accent); line-height: 1; letter-spacing: -.01em; }
.lab-row--soon .lab-no { color: var(--fg-faint); }
.lab-main { min-width: 0; }
.lab-name { font-family: var(--font-display); font-stretch: 116%; font-weight: 800; text-transform: uppercase; letter-spacing: -.015em; font-size: clamp(1.35rem, 3.4vw, 2.3rem); line-height: 1.02; display: inline-flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.lab-live { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em; font-size: .58rem; font-weight: 600; color: var(--accent); border: 1px solid var(--accent); border-radius: 999px; padding: .3em .7em; line-height: 1; }
.lab-desc { margin-top: .5rem; color: var(--fg-dim); font-size: 1rem; max-width: 46ch; line-height: 1.5; }
.lab-sector { color: var(--fg-dim); font-size: .95rem; }
.lab-cta { justify-self: end; white-space: nowrap; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; font-weight: 600; }
a.lab-row .lab-cta { color: var(--accent); }
.lab-row--soon .lab-cta { color: var(--fg-faint); }
.lab-cta .arr { display: inline-block; transition: transform .25s ease; }
a.lab-row:hover .lab-cta .arr { transform: translateX(5px); }
.lab-quote { padding: clamp(56px, 9vw, 120px) 0 clamp(8px, 3vw, 32px); }
.lab-quote p { font-family: var(--font-display); font-stretch: 116%; font-weight: 800; text-transform: uppercase; letter-spacing: -.018em; line-height: 1.0; font-size: clamp(1.8rem, 5.2vw, 3.6rem); max-width: 18ch; }
@media (max-width: 760px) {
  .lab-row { grid-template-columns: 2.6rem 1fr; gap: .35rem 1rem; padding: 1.3rem 0; }
  .lab-sector { grid-column: 2; margin-top: .1rem; }
  .lab-cta { grid-column: 2; justify-self: start; margin-top: .55rem; }
  a.lab-row:hover { padding-left: 0; }
}
@media (prefers-reduced-motion: reduce) { .lab-row, .lab-cta .arr { transition: none; } }

/* =========================================================================
   BLOG — Field Notes (editorial index + premium article)  [2026-06]
   Built on the locked warm system. Index = featured + ruled list (no cards).
   Post = magazine article: Archivo display, Fraunces accents, Inter body.
   ========================================================================= */

/* ---- index: featured note ---- */
.journal{padding-bottom:clamp(40px,7vw,90px)}
.journal__feat{display:grid;grid-template-columns:1.05fr 0.95fr;gap:clamp(20px,4vw,56px);align-items:center;
  padding-bottom:clamp(34px,5vw,60px);margin-bottom:clamp(28px,4vw,48px);border-bottom:1px solid var(--rule)}
.journal__featmedia{position:relative;border:1px solid var(--rule);border-radius:3px;overflow:hidden;background:var(--bg-2);aspect-ratio:16/10}
.journal__featmedia img{width:100%;height:100%;object-fit:cover;display:block}
.journal__feattag{display:flex;gap:10px;align-items:center;margin-bottom:14px}
.journal__date{font-family:var(--font-mono);font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--fg-dim)}
.journal__feattitle{font-family:var(--font-display);font-weight:800;font-size:clamp(2rem,4.4vw,3.4rem);line-height:1.02;letter-spacing:-.02em;margin:0 0 .4em;text-wrap:balance}
.journal__feattitle a{color:var(--fg);text-decoration:none}
.journal__feattitle a:hover{color:var(--accent)}
.journal__featstand{font-size:clamp(16px,1.4vw,18px);line-height:1.55;color:var(--fg-dim);max-width:48ch;margin-bottom:16px}
.journal__byline{font-family:var(--font-mono);font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-faint)}
.journal__byline b{color:var(--fg);font-weight:600}

/* ---- index: the ruled list (reuses the editorial row idea) ---- */
.journal__head{font-family:var(--font-mono);font-size:12px;letter-spacing:.2em;text-transform:uppercase;color:var(--fg-dim);margin-bottom:6px}
.notes{list-style:none;margin:0;padding:0}
.note{display:grid;grid-template-columns:160px 1fr;gap:clamp(16px,3vw,40px);padding:clamp(20px,3vw,32px) 0;border-top:1px solid var(--rule)}
.note:first-child{border-top:0}
.note__meta{font-family:var(--font-mono);font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-dim);line-height:1.8}
.note__meta .tag{margin-top:8px}
.note__t{font-family:var(--font-display);font-weight:700;font-size:clamp(1.4rem,2.6vw,2.1rem);line-height:1.08;letter-spacing:-.015em;margin:0 0 .3em;text-wrap:balance}
.note__t a{color:var(--fg);text-decoration:none}
.note__t a:hover{color:var(--accent)}
.note__stand{font-size:15px;line-height:1.55;color:var(--fg-dim);max-width:60ch;margin-bottom:8px}
.note__by{font-family:var(--font-mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-faint)}

/* ---- the article ---- */
.fnpost{padding-top:clamp(20px,4vw,40px);padding-bottom:clamp(40px,7vw,90px)}
.post__head{max-width:760px;margin:0 auto clamp(22px,3vw,34px);text-align:center}
.post__eyebrow{display:flex;justify-content:center;gap:10px;align-items:center;margin-bottom:18px}
.post__title{font-family:var(--font-display);font-weight:800;font-size:clamp(2.1rem,5.2vw,4rem);line-height:1.02;letter-spacing:-.025em;margin:0 0 .35em;text-wrap:balance}
.post__title .serif{font-weight:500}
.post__stand{font-size:clamp(17px,1.7vw,21px);line-height:1.5;color:var(--fg-dim);max-width:42ch;margin:0 auto 20px}
.post__byline{font-family:var(--font-mono);font-size:12.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-faint);display:flex;flex-wrap:wrap;gap:8px 14px;justify-content:center;align-items:center}
.post__byline b{color:var(--fg);font-weight:600}
.post__byline a{color:var(--fg);text-decoration:none;border-bottom:1px solid var(--rule)}
.post__byline a:hover{color:var(--accent)}
.post__bsep{width:4px;height:4px;border-radius:50%;background:var(--fg-faint);display:inline-block}

.post__cover{margin:clamp(26px,4vw,46px) auto 0;max-width:1040px}
.post__cover figure{margin:0;border:1px solid var(--rule);border-radius:3px;overflow:hidden;background:var(--bg-2)}
.post__cover img{width:100%;display:block;aspect-ratio:16/9;object-fit:cover}
.post__cover figcaption,.fnpost figure figcaption{font-family:var(--font-mono);font-size:11.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-faint);padding:10px 2px 0}

/* editorial body */
.post__body{max-width:680px;margin:clamp(30px,4vw,52px) auto 0}
.post__body>*{margin-bottom:1.15em}
.post__body p{font-size:clamp(17px,1.18vw,19px);line-height:1.72;color:var(--fg)}
.post__body>p:first-of-type::first-letter{font-family:var(--font-serif);font-weight:500;font-size:3.4em;line-height:.78;float:left;margin:.06em .12em 0 0;color:var(--accent)}
.post__body h1{font-family:var(--font-display);font-weight:800;font-size:clamp(1.7rem,3vw,2.3rem);line-height:1.06;letter-spacing:-.02em;margin:1.2em 0 .5em}
.post__body h2{font-family:var(--font-display);font-weight:800;font-size:clamp(1.5rem,2.6vw,2rem);line-height:1.1;letter-spacing:-.02em;margin:1.7em 0 .55em}
.post__body h3{font-family:var(--font-display);font-weight:700;font-size:clamp(1.2rem,2vw,1.5rem);line-height:1.15;margin:1.5em 0 .45em}
.post__body h2 .serif,.post__body h3 .serif{font-weight:500}
.post__body a{color:var(--fg);text-decoration:none;border-bottom:2px solid var(--accent);transition:color .2s}
.post__body a:hover{color:var(--accent)}
.post__body strong{font-weight:600}
.post__body em{font-family:var(--font-serif);font-style:italic}
.post__body ul,.post__body ol{padding-left:1.3em}
.post__body li{font-size:clamp(17px,1.18vw,19px);line-height:1.6;margin-bottom:.4em}
.post__body blockquote{margin:1.6em 0;padding:.2em 0 .2em 1.1em;border-left:3px solid var(--accent);
  font-family:var(--font-serif);font-style:italic;font-weight:400;font-size:clamp(1.3rem,2.4vw,1.7rem);line-height:1.4;color:var(--fg)}
.post__body figure{margin:1.8em 0;border:1px solid var(--rule);border-radius:3px;overflow:hidden;background:var(--bg-2)}
.post__body figure img,.post__body figure video{width:100%;display:block}
.post__body figure figcaption{padding:10px 12px 12px}
.post__body figure.bleed{margin-left:calc((680px - min(96vw,1040px))/2);margin-right:calc((680px - min(96vw,1040px))/2);max-width:none}
.post__hr{max-width:680px;margin:clamp(34px,5vw,56px) auto;border:0;border-top:1px solid var(--rule)}
/* defensive: inline media + long content never overflow on mobile */
.post__body{overflow-wrap:break-word}
.post__body img{max-width:100%;height:auto;border-radius:3px}
.post__body video{max-width:100%}

/* inline video */
.post__video{position:relative}
.post__video video{aspect-ratio:16/9;object-fit:cover;background:#000}
.post__video .post__play{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;cursor:pointer;background:none;border:0}
.post__video .post__play span{width:64px;height:64px;border-radius:50%;background:rgba(20,17,13,.55);display:flex;align-items:center;justify-content:center;color:#fff;font-size:22px;backdrop-filter:blur(2px)}
.post__video.is-playing .post__play{display:none}

/* article footer */
.post__foot{max-width:680px;margin:clamp(34px,5vw,56px) auto 0;padding-top:clamp(22px,3vw,30px);border-top:1px solid var(--rule)}
.post__tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px}
.post__author{display:flex;gap:12px;align-items:baseline;font-size:15px;color:var(--fg-dim);line-height:1.5}
.post__author b{font-family:var(--font-display);font-weight:700;font-size:1.15rem;color:var(--fg)}
.post__back{margin-top:22px}

@media (max-width:760px){
  .journal__feat{grid-template-columns:1fr}
  .journal__featmedia{order:-1}
  .note{grid-template-columns:1fr;gap:8px}
  .note__meta{display:flex;gap:12px;align-items:center}
  .note__meta .tag{margin-top:0}
  .post__body figure.bleed{margin-left:0;margin-right:0}
  /* keep the drop-cap on mobile too, just sized for the narrow column */
  .post__body>p:first-of-type::first-letter{font-size:2.9em;line-height:.8;margin:.06em .14em 0 0}
  .post__head{margin-bottom:clamp(18px,4vw,28px)}
  .post__title{font-size:clamp(1.9rem,8.5vw,2.6rem)}
}

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES (privacy / terms) — barba pages, CSS in site.css
   ═══════════════════════════════════════════════════════════ */
.legal{padding-top:calc(var(--header-h) + clamp(48px,9vh,96px));padding-bottom:clamp(60px,10vh,120px)}
.legal__head{max-width:760px;margin:0 auto}
.legal__eyebrow{display:inline-block;font-family:var(--font-mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);margin-bottom:18px}
.legal__title{font-family:var(--font-display);font-weight:800;font-size:clamp(2.3rem,6vw,3.6rem);line-height:1.02;letter-spacing:-.025em;margin:0 0 .4em}
.legal__title .serif{font-weight:500}
.legal__updated{font-family:var(--font-mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--fg-faint);margin:0 0 22px}
.legal__lede{font-size:clamp(17px,1.3vw,20px);line-height:1.62;color:var(--fg-dim);max-width:62ch;margin:0}
.legal__toc{max-width:760px;margin:clamp(30px,4vw,44px) auto 0;padding:20px 24px;border:1px solid var(--rule);border-radius:4px;background:var(--bg-2)}
.legal__toc h2{font-family:var(--font-mono);font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--fg-faint);margin:0 0 12px}
.legal__toc ol{margin:0;padding-left:1.3em;columns:2;column-gap:32px}
.legal__toc li{font-size:14px;line-height:1.5;margin-bottom:6px;break-inside:avoid}
.legal__toc a{color:var(--fg-dim);text-decoration:none;border-bottom:1px solid transparent;transition:color .15s,border-color .15s}
.legal__toc a:hover{color:var(--accent);border-color:var(--accent)}
.legal__body{max-width:760px;margin:clamp(34px,5vw,56px) auto 0}
.legal__sec{padding-top:clamp(24px,3.5vw,40px);margin-top:clamp(24px,3.5vw,40px);border-top:1px solid var(--rule-soft);scroll-margin-top:calc(var(--header-h) + 24px)}
.legal__sec:first-child{border-top:0;margin-top:0;padding-top:0}
.legal__sec h2{font-family:var(--font-display);font-weight:800;font-size:clamp(1.45rem,2.6vw,2rem);line-height:1.08;letter-spacing:-.02em;margin:0 0 .55em}
.legal__sec h2 .serif{font-weight:500}
.legal__sec h2 .legal__num{font-family:var(--font-mono);font-size:.5em;font-weight:600;letter-spacing:.08em;color:var(--accent);vertical-align:middle;margin-right:.7em}
.legal__sec h3{font-family:var(--font-display);font-weight:700;font-size:clamp(1.1rem,1.8vw,1.3rem);line-height:1.15;margin:1.4em 0 .4em}
.legal__sec p{font-size:clamp(16px,1.1vw,17.5px);line-height:1.68;color:var(--fg);margin:0 0 1em;max-width:66ch}
.legal__sec ul{margin:0 0 1em;padding-left:1.25em;max-width:66ch}
.legal__sec li{font-size:clamp(16px,1.1vw,17.5px);line-height:1.6;margin-bottom:.5em;color:var(--fg)}
.legal__sec li strong{font-weight:600}
.legal__sec strong{font-weight:600}
.legal__sec em{font-family:var(--font-serif);font-style:italic}
.legal__sec a{color:var(--fg);text-decoration:none;border-bottom:2px solid var(--accent);transition:color .2s}
.legal__sec a:hover{color:var(--accent)}
.legal__note{max-width:760px;margin:clamp(40px,6vw,64px) auto 0;padding:20px 24px;border-left:3px solid var(--accent);background:var(--bg-2);border-radius:0 4px 4px 0}
.legal__note p{font-size:14px;line-height:1.6;color:var(--fg-dim);margin:0;max-width:none}
.footer__legal{display:flex;gap:18px}
@media (max-width:680px){.legal__toc ol{columns:1}}
