/* ============================================================
   grow-in 7 — v3 landing
   Editorial, kinetic, cream/tomato/forest. GSAP-driven.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --bg: #F7F3EB;
  --bg-alt: #EFE9DD;
  --surface: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #3A3A3A;
  --ink-mute: #6B6B6B;
  --primary: #C4351F;
  --primary-vivid: #E94B35;
  --forest: #1F4D3C;
  --line: rgba(26, 26, 26, 0.12);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --pad-x: clamp(20px, 5vw, 96px);
  --radius: 24px;
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--primary); color: var(--bg); }

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; } /* Bricolage has no italics — accent via colour/weight */

/* subtle paper grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 4;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- 3. Loader (only shown when JS + motion are available) ---------- */
.loader { display: none; }
html.js:not(.no-motion) .loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink);
  color: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
}
.loader__count {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(96px, 22vw, 240px);
  line-height: 1;
  overflow: hidden; height: 1em;
}
.loader__digit { display: block; color: var(--primary-vivid); }
.loader__label {
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 6px; text-transform: uppercase;
  color: rgba(247, 243, 235, 0.55);
}

/* ---------- 4. Cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 99;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--primary);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, opacity 0.25s, background 0.25s;
  display: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0; font-weight: 700; color: var(--bg);
}
.cursor.-grow { width: 56px; height: 56px; background: rgba(196, 53, 31, 0.16); border: 1.5px solid rgba(196, 53, 31, 0.55); }
.cursor.-go { width: 64px; height: 64px; font-size: 22px; }
.cursor.-go::after { content: "→"; }
@media (hover: none), (pointer: coarse) { .cursor { display: none !important; } }

/* ---------- 5. Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  color: var(--ink);
  transition: color 0.35s;
}
.nav__logo em { color: var(--primary); }
.nav__cta {
  font-weight: 700; font-size: 15px;
  background: var(--ink); color: var(--bg);
  padding: 12px 22px; border-radius: 999px;
  display: inline-block;
  transition: background 0.35s, color 0.35s;
}
/* over dark sections (process / quote / final / footer) */
.nav.is-light .nav__logo { color: var(--bg); }
.nav.is-light .nav__logo em { color: var(--primary-vivid); }
.nav.is-light .nav__cta { background: var(--bg); color: var(--ink); }

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  padding: 20px 36px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 18px 44px rgba(196, 53, 31, 0.32); }
.btn--ghost { border: 2px solid var(--ink); color: var(--ink); }
.btn--inverse { background: var(--bg); color: var(--ink); }
.btn--xl { font-size: clamp(20px, 2.6vw, 28px); padding: 26px 52px; }
.btn__arrow { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.btn:hover .btn__arrow { transform: translateX(6px); }

/* ---------- 7. Type helpers ---------- */
.eyebrow {
  font-size: 14px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--primary-vivid); }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin-bottom: clamp(40px, 6vw, 88px);
}
.section-title--light { color: var(--bg); }
.accent { color: var(--primary); }
.accent-vivid { color: var(--primary-vivid); }

/* masked line reveals (hero + final) — initial hidden state only with JS+motion */
.line { display: block; overflow: hidden; }
.line__inner { display: block; }
html.js:not(.no-motion) .line__inner { transform: translateY(110%); }

/* ---------- 8. Hero — proof-forward split ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding: 120px var(--pad-x) 64px;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: -1;
}
.hero__grid { display: grid; gap: 44px; align-items: center; }
.hero__kicker { margin-bottom: 20px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 11.5vw, 108px);
  line-height: 0.97; letter-spacing: -0.03em;
}
.hero__title .accent { color: var(--primary); }
.hero__sub {
  max-width: 470px;
  font-size: clamp(16px, 1.7vw, 19px); color: var(--ink-soft);
  margin-top: clamp(22px, 3vw, 34px);
}
.hero__sub strong { color: var(--ink); font-weight: 800; }
.hero__cta-row {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: clamp(24px, 3.4vw, 38px);
}
.hero__cta-row .btn { width: 100%; justify-content: center; } /* thumb-friendly on mobile */
.hero__worklink {
  font-size: 15px; font-weight: 700;
  color: var(--ink-soft);
  border-bottom: 2px solid var(--line);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.hero__worklink:hover { color: var(--primary); border-color: var(--primary); }
.hero__meta {
  display: flex; gap: 14px 24px; flex-wrap: wrap;
  margin-top: clamp(20px, 3vw, 32px);
  font-size: 13.5px; font-weight: 600; color: var(--ink-mute);
}

/* visual: layered real-site mockups */
.hero__visual { position: relative; min-height: 340px; }
.hero__shot {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 34px 80px rgba(26, 26, 26, 0.2);
}
.hero__shot-bar {
  display: flex; gap: 5px; align-items: center;
  padding: 9px 11px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.hero__shot-bar i { width: 7px; height: 7px; border-radius: 999px; background: rgba(26, 26, 26, 0.16); }
.hero__shot-bar i:first-child { background: var(--primary-vivid); }
.hero__shot img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover; object-position: top;
  display: block;
}
.hero__shot--a { width: 72%; left: 0; top: 4%; transform: rotate(-2.5deg); z-index: 1; }
.hero__shot--b { width: 56%; right: 0; bottom: 0; transform: rotate(2deg); z-index: 2; }
.hero__chip {
  position: absolute; z-index: 3;
  top: -3%; right: 4%;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(13px, 1.2vw, 17px);
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--ink); color: var(--bg);
  box-shadow: 0 16px 38px rgba(26, 26, 26, 0.24);
  transform: rotate(2deg);
  white-space: nowrap;
}

/* gentle float when GSAP isn't running (mobile / fallback) */
@keyframes heroFloatA { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes heroFloatB { 0%, 100% { translate: 0 0; } 50% { translate: 0 12px; } }
html:not(.gsap) .hero__shot--a { animation: heroFloatA 7s ease-in-out infinite; }
html:not(.gsap) .hero__shot--b { animation: heroFloatB 8.5s ease-in-out infinite; }
html:not(.gsap) .hero__chip { animation: heroFloatB 6s ease-in-out infinite; }

.hero__scrollhint {
  display: none;
  position: absolute; bottom: 24px; left: var(--pad-x);
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--ink-mute);
  animation: hint 2.2s ease-in-out infinite;
}
@keyframes hint { 0%, 100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(8px); opacity: 1; } }

@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 5vw, 88px); }
  .hero__cta-row .btn { width: auto; }
  .hero__visual { min-height: 540px; }
  .hero__scrollhint { display: block; }
}
@media (max-width: 979px) {
  .hero { padding-top: 104px; }
  .hero__visual { min-height: 300px; margin-top: 6px; }
  .hero__chip { top: -6%; }
}

/* ---------- 10. Services ---------- */
.services { padding: clamp(90px, 12vw, 180px) var(--pad-x); }
.services__list { border-top: 1px solid var(--line); }
.service {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: clamp(16px, 4vw, 64px);
  align-items: baseline;
  padding: clamp(28px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) { .service:hover { padding-left: 20px; } }
.service__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: var(--primary);
}
.service__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.02em; line-height: 1;
}
.service__desc { color: var(--ink-soft); font-size: clamp(15px, 1.5vw, 18px); max-width: 480px; }
.service__link { display: inline-block; margin-top: 10px; font-weight: 700; color: var(--primary); border-bottom: 1px solid transparent; transition: border-color 0.25s; }
.service__link:hover { border-color: var(--primary); }

/* ---------- 11. Process (pinned horizontal) ---------- */
.process { background: var(--ink); color: var(--bg); }
.process__pin {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(70px, 9vw, 120px) 0 clamp(70px, 9vw, 120px) var(--pad-x);
  overflow: hidden;
}
.process__head { margin-bottom: clamp(36px, 5vw, 64px); padding-right: var(--pad-x); }
.process__track {
  display: flex; gap: clamp(16px, 2vw, 28px);
  width: max-content;
  will-change: transform;
  padding-right: var(--pad-x);
}
.day {
  width: clamp(260px, 30vw, 380px);
  flex-shrink: 0;
  background: rgba(247, 243, 235, 0.06);
  border: 1px solid rgba(247, 243, 235, 0.14);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 40px);
}
.day__num {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary-vivid);
  margin-bottom: 18px;
}
.day h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 2.8vw, 38px);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.day p { color: rgba(247, 243, 235, 0.65); font-size: 16px; }
.day--live {
  background: var(--primary); border-color: var(--primary);
  /* the payoff card carries more physical weight than the working days */
  width: clamp(300px, 36vw, 460px);
  box-shadow: 0 24px 60px rgba(196, 53, 31, 0.35);
  transform-origin: center center;
  will-change: transform;
  /* breathing room sized for the 1.08 finale pop (~18px growth per side),
     so the scaled card still clears its neighbours */
  margin-inline: 20px;
}
.day--live p { color: rgba(255, 255, 255, 0.85); font-size: 17px; }
.day--live .day__num { color: #fff; }
.day--live h3 { font-size: clamp(34px, 3.4vw, 48px); }
.day--grow {
  background: rgba(31, 77, 60, 0.55); border-color: rgba(247, 243, 235, 0.2);
  transform-origin: center center;
  will-change: transform;
  margin-left: 8px; /* clears its own 1.04 finale scale (~8px per side) */
}
.day--grow .day__num { color: var(--bg); }

/* ---------- 13. Pricing ---------- */
.pricing { padding: clamp(90px, 12vw, 180px) var(--pad-x); }
.pricing__cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column;
  position: relative;
}
.plan--featured {
  background: var(--forest); color: var(--bg);
  border-color: var(--forest);
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(31, 77, 60, 0.28);
}
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  white-space: nowrap;
}
.plan__name { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin-bottom: 6px; }
.plan__aud { font-size: 13.5px; color: var(--ink-mute); margin-bottom: 16px; min-height: 2.6em; }
.plan--featured .plan__aud { color: rgba(247, 243, 235, 0.6); }
.plan__price {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(52px, 5vw, 72px); line-height: 1;
  letter-spacing: -0.03em; margin-bottom: 26px;
}
.plan__price sup { font-size: 0.45em; vertical-align: super; }
.plan__price span { font-family: var(--font-body); font-weight: 600; font-size: 16px; letter-spacing: 0; color: var(--ink-mute); margin-left: 4px; }
.plan--featured .plan__price span { color: rgba(247, 243, 235, 0.6); }
.plan__plus { font-size: 13px; font-weight: 800; letter-spacing: 0.2px; color: var(--ink-mute); margin-bottom: 12px; }
.plan--featured .plan__plus { color: rgba(247, 243, 235, 0.7); }
.plan__list { flex: 1; margin-bottom: 30px; display: grid; gap: 12px; font-size: 15px; }
.plan__list li::before { content: "✓ "; color: var(--primary); font-weight: 800; }
.plan--featured .plan__list li::before { color: var(--primary-vivid); }
.plan .btn { justify-content: center; }
.plan--featured .btn--primary { box-shadow: none; }
.pricing__includes {
  margin-top: clamp(32px, 5vw, 56px);
  max-width: 760px; margin-inline: auto;
  text-align: center; font-size: 15px; line-height: 1.6; color: var(--ink-soft);
}
.pricing__includes strong { color: var(--ink); font-weight: 800; }
.pricing__floor {
  margin-top: clamp(16px, 2vw, 24px);
  text-align: center; font-size: 14px; font-weight: 600; color: var(--ink-mute);
}


/* two-package layout + anchor + compare + services lede */
.services__lede {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: clamp(15.5px, 1.6vw, 18px);
  margin: -28px 0 clamp(36px, 5vw, 56px);
}
.pricing__anchor {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: clamp(15.5px, 1.6vw, 18px);
  margin: -28px 0 clamp(36px, 5vw, 56px);
}
.pricing__cards--two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 980px; }
.plan__tag { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--ink); margin-bottom: 6px; }
.plan--featured .plan__tag { color: var(--bg); }
.plan__compare { font-size: 13.5px; font-weight: 700; color: rgba(247, 243, 235, 0.75); margin: -14px 0 18px; }
.plan__compare s { color: var(--primary-vivid); text-decoration-thickness: 2px; }
.pricing__note { margin-top: 14px; text-align: center; font-size: 13.5px; color: var(--ink-mute); }
@media (max-width: 860px) { .pricing__cards--two { grid-template-columns: 1fr; max-width: 480px; } }

/* ---------- 14b. Portfolio (sticky stack — scales to any card count) ---------- */
.folio { padding: clamp(90px, 12vw, 180px) var(--pad-x); }
.folio__sub { max-width: 520px; color: var(--ink-soft); margin: -24px 0 clamp(40px, 6vw, 72px); }
/* Block flow (NOT grid): in block flow each sticky card's containing block is
   the whole stack, so every card pins and the next one slides up OVER it —
   the deck effect. In grid, sticky is confined to the card's own row. */
.folio__stack { display: block; }
.folio__card {
  position: sticky;
  /* Deck effect: each card pins slightly lower than the one before, so the
     stacked edges read as intentional. --stack-i set per nth-child below —
     extend the list if you feature more than 5 sites here. */
  --stack-i: 0;
  top: calc(clamp(70px, 8vh, 96px) + var(--stack-i) * 22px);
  width: 100%;
  max-width: 1060px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 6vh, 64px); /* scroll runway between cards */
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 -8px 24px rgba(26, 26, 26, 0.06), 0 30px 80px rgba(26, 26, 26, 0.14);
}
.folio__card:last-child { margin-bottom: 0; }
.folio__card:nth-child(2) { --stack-i: 1; }
.folio__card:nth-child(3) { --stack-i: 2; }
.folio__card:nth-child(4) { --stack-i: 3; }
.folio__card:nth-child(5) { --stack-i: 4; }
.folio__shot {
  aspect-ratio: 16 / 8.5;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 53, 31, 0.08), transparent 50%),
    var(--bg-alt);
  overflow: hidden;
}
.folio__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.folio__meta {
  display: flex; align-items: center; gap: clamp(16px, 2.4vw, 32px);
  padding: clamp(18px, 2.4vw, 28px) clamp(20px, 2.8vw, 40px);
  flex-wrap: wrap;
}
.folio__index {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--primary);
}
.folio__id h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.01em; line-height: 1.05;
}
.folio__id p { font-size: 14px; font-weight: 600; color: var(--ink-mute); }
.folio__chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-left: auto;
}
.folio__chips li {
  font-size: 12.5px; font-weight: 700;
  padding: 7px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .folio__card { position: static; }
  .folio__chips { margin-left: 0; }
}

/* ---------- 14d. Founder note ---------- */
.founder { padding: clamp(70px, 9vw, 140px) var(--pad-x); }
.founder__card {
  max-width: 980px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(26, 26, 26, 0.08);
  padding: clamp(28px, 4vw, 56px);
  display: flex; gap: clamp(24px, 3.4vw, 48px);
  align-items: center;
}
.founder__photo {
  position: relative;
  flex-shrink: 0;
  width: clamp(120px, 16vw, 180px);
  height: clamp(120px, 16vw, 180px);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-alt);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__initials {
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--primary);
  background: var(--bg-alt);
}
.founder__photo--fallback .founder__initials { display: flex; }
.founder__eyebrow {
  font-size: 13px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.founder__note {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 28px);
  font-weight: 600; line-height: 1.35;
  letter-spacing: -0.01em;
}
.founder__note em { color: var(--primary); font-weight: 700; }
.founder__sig { margin-top: 16px; font-size: 15px; font-weight: 700; color: var(--ink-mute); }
@media (max-width: 640px) {
  .founder__card { flex-direction: column; text-align: center; }
}

/* ---------- 15. FAQ ---------- */
.faq {
  padding: clamp(90px, 12vw, 180px) var(--pad-x);
  max-width: 1000px;
  margin-inline: auto; /* centred block; questions stay left-aligned inside */
}
.faq .eyebrow, .faq .section-title { text-align: center; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  padding: clamp(20px, 2.6vw, 32px) 0;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.3em; color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 28px; color: var(--ink-soft); max-width: 720px; }

/* ---------- 16. Final CTA ---------- */
.final {
  background: var(--ink); color: var(--bg);
  padding: clamp(110px, 16vw, 220px) var(--pad-x);
  text-align: center;
}
.final__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(56px, 12vw, 180px);
  line-height: 0.95; letter-spacing: -0.035em;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.final__title em { color: var(--primary-vivid); }
.final__note { margin-top: 26px; font-size: 14px; font-weight: 600; color: rgba(247, 243, 235, 0.55); }

/* ---------- 17. Footer ---------- */
.footer {
  background: var(--ink); color: rgba(247, 243, 235, 0.6);
  padding: 48px var(--pad-x) 56px;
  border-top: 1px solid rgba(247, 243, 235, 0.12);
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: space-between; align-items: flex-start;
  font-size: 14px;
}
.footer__brand span { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--bg); }
.footer__brand em { color: var(--primary-vivid); }
.footer__brand p { margin-top: 8px; max-width: 280px; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; font-weight: 600; }
.footer__links a:hover { color: var(--bg); }
.footer__legal { width: 100%; font-size: 12px; opacity: 0.7; }

/* ---------- 17b. Journal — homepage blog strip ---------- */
.journal {
  background: var(--bg-alt);
  padding: clamp(90px, 12vw, 170px) var(--pad-x);
}
.journal__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px 40px; flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.journal__intro { max-width: 640px; }
.journal__intro .section-title { margin-bottom: 0; }
.journal__sub {
  margin-top: 18px; max-width: 520px;
  color: var(--ink-soft); font-size: clamp(15px, 1.5vw, 18px);
}
.journal__all {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  white-space: nowrap; padding-bottom: 4px;
  border-bottom: 2px solid var(--ink);
  transition: gap 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.journal__all:hover { gap: 16px; color: var(--primary); border-color: var(--primary); }

.journal__grid {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: clamp(28px, 4vw, 64px); align-items: start;
}
@media (max-width: 900px) { .journal__grid { grid-template-columns: 1fr; } }

/* featured post */
.journal__feature { display: block; }
.journal__media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 10.5; background: var(--bg);
  box-shadow: 0 30px 70px rgba(26, 26, 26, 0.13);
}
.journal__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) { .journal__feature:hover .journal__media img { transform: scale(1.05); } }
.journal__tag {
  display: inline-block; margin: 24px 0 12px;
  font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary);
}
.journal__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 3.6vw, 46px); line-height: 1.02; letter-spacing: -0.02em;
  transition: color 0.25s ease;
}
.journal__title em { color: var(--primary); }
.journal__dek { margin-top: 14px; max-width: 560px; color: var(--ink-soft); font-size: clamp(15px, 1.5vw, 18px); }
.journal__meta { margin-top: 18px; font-size: 13.5px; font-weight: 600; color: var(--ink-mute); }
.journal__meta strong { color: var(--ink); font-weight: 700; }

/* recent list */
.journal__list { display: flex; flex-direction: column; }
.jrow {
  position: relative; display: grid;
  grid-template-columns: 92px 1fr 26px; gap: 18px; align-items: center;
  padding: clamp(16px, 1.8vw, 24px) 0;
  border-top: 1px solid var(--line);
}
.jrow:last-child { border-bottom: 1px solid var(--line); }
.jrow__thumb { width: 92px; height: 66px; border-radius: 12px; overflow: hidden; background: var(--bg); }
.jrow__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.jrow__title {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(17px, 1.7vw, 21px); line-height: 1.16; letter-spacing: -0.01em;
  transition: color 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.jrow__meta { display: block; margin-top: 6px; font-size: 12.5px; font-weight: 600; color: var(--ink-mute); }
.jrow__arrow {
  justify-self: end;
  font-family: var(--font-display); font-size: 20px; color: var(--ink-mute);
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
}
@media (hover: hover) {
  .jrow:hover .jrow__thumb img { transform: scale(1.1); }
  .jrow:hover .jrow__title { color: var(--primary); transform: translateX(4px); }
  .jrow:hover .jrow__arrow { opacity: 1; transform: none; color: var(--primary); }
}
@media (max-width: 460px) { .jrow { grid-template-columns: 72px 1fr; } .jrow__arrow { display: none; } }

/* ---------- 18. Reveal default state (JS + motion only) ---------- */
html.js:not(.no-motion) .reveal { opacity: 0; transform: translateY(36px); }

/* ---------- 19. Responsive ---------- */
@media (max-width: 1023px) {
  .process__pin { min-height: 0; }
  .process__track {
    width: auto; flex-direction: column;
    padding-right: var(--pad-x);
  }
  .day { width: 100%; }
  .day--live, .day--grow { margin: 0; } /* finale margins are desktop-track only */
}
@media (max-width: 860px) {
  .pricing__cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan--featured { transform: none; }
  .service { grid-template-columns: 48px 1fr; }
  .service__desc { grid-column: 2; }
}
@media (max-width: 560px) {
  .hero__meta { gap: 14px; font-size: 13px; }
}

/* ---------- 19b. Portfolio "see all" button ---------- */
.folio__more { text-align: center; margin-top: clamp(36px, 5vw, 64px); }

/* ============================================================
   WORK PAGE (/work.html) — scalable portfolio gallery
   ============================================================ */
.work-page { background: var(--bg); }
.work { padding-top: 110px; }

.work__hero { padding: clamp(40px, 7vw, 110px) var(--pad-x) clamp(28px, 4vw, 56px); }
.work__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 10vw, 140px);
  line-height: 0.96; letter-spacing: -0.035em;
  margin-bottom: 26px;
}
.work__sub { max-width: 520px; font-size: clamp(16px, 1.7vw, 19px); color: var(--ink-soft); }

/* filter chips */
.work__filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 0 var(--pad-x) clamp(32px, 4.6vw, 56px);
}
.chip {
  font: inherit; font-size: 14.5px; font-weight: 700;
  font-family: var(--font-body);
  color: var(--ink);
  background: transparent;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.2s;
}
.chip:hover { border-color: var(--ink); transform: translateY(-1px); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* index list — typographic rows, scales to dozens of projects */
.index {
  padding: 0 var(--pad-x) clamp(40px, 6vw, 80px);
}
.row {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr auto 48px;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  padding: clamp(24px, 3.2vw, 44px) clamp(8px, 1vw, 18px);
  text-decoration: none;
  isolation: isolate;
}
/* divider that draws in with the reveal */
.row::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.row.in::after { transform: scaleX(1); }
.row:last-of-type { border-bottom: 1px solid var(--line); }

/* ink sweep on hover */
.row::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}
.row__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px;
  color: var(--ink-mute);
  transition: color 0.35s;
}
.row__thumb {
  display: none; /* desktop uses the cursor peek; thumbs are for touch */
  width: 96px; aspect-ratio: 16 / 10;
  border-radius: 10px; overflow: hidden;
  background: var(--bg-alt);
}
.row__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.row__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 4.2vw, 60px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.35s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.row__meta {
  display: block;
  margin-top: 6px;
  font-size: 13.5px; font-weight: 600;
  color: var(--ink-mute);
  transition: color 0.35s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.row__days {
  font-size: 12.5px; font-weight: 700;
  white-space: nowrap;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color 0.35s, border-color 0.35s;
}
.row__arrow {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  color: var(--ink-mute);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.35s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s;
}
@media (hover: hover) {
  .row:hover::before { transform: scaleY(1); }
  .row:hover .row__name { color: var(--bg); transform: translateX(16px); }
  .row:hover .row__meta { color: rgba(247, 243, 235, 0.6); transform: translateX(16px); }
  .row:hover .row__num { color: var(--primary-vivid); }
  .row:hover .row__days { color: var(--bg); border-color: rgba(247, 243, 235, 0.3); }
  .row:hover .row__arrow { opacity: 1; transform: none; color: var(--primary-vivid); }
}
.row.is-hidden { display: none; }

/* cursor-following preview (desktop pointer only; JS drives transform) */
.peek {
  position: fixed; top: 0; left: 0;
  width: clamp(300px, 26vw, 440px);
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  pointer-events: none;
  z-index: 45;
  opacity: 0;
  box-shadow: 0 40px 90px rgba(26, 26, 26, 0.35);
  transition: opacity 0.3s ease;
  will-change: transform;
}
.peek.is-on { opacity: 1; }
.peek__img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
@media (hover: none), (pointer: coarse), (max-width: 880px) { .peek { display: none; } }

.work__empty {
  padding: 0 var(--pad-x) 60px;
  font-size: 16px; font-weight: 600; color: var(--ink-mute);
}

/* bottom CTA band */
.work__cta {
  background: var(--ink); color: var(--bg);
  text-align: center;
  padding: clamp(80px, 11vw, 160px) var(--pad-x);
}
.work__cta-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 7vw, 96px);
  line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.work__cta-title em { color: var(--primary-vivid); }
.work__cta-sub { font-size: clamp(15px, 1.7vw, 19px); color: rgba(247, 243, 235, 0.65); margin-bottom: 36px; }

/* reveals on work page (gated on .js, JS adds .in) */
html.js .row, html.js .work__cta { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
html.js .row.in, html.js .work__cta.in { opacity: 1; transform: none; }
html.js .row.is-hidden { display: none; }

@media (max-width: 880px) {
  .row { grid-template-columns: 96px 1fr; }
  .row__num, .row__arrow { display: none; }
  .row__thumb { display: block; }
  .row__days { grid-column: 2; justify-self: start; }
}
html.no-motion .row, html.no-motion .work__cta { opacity: 1; transform: none; transition: none; }
html.no-motion .peek { display: none; }

/* ---------- 20. Motion opt-out (?motion=off → html.no-motion) ---------- */
html.no-motion { scroll-behavior: auto; }
html.no-motion *, html.no-motion *::before, html.no-motion *::after {
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
}
