/* ============================================================
   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 — centered statement + orbit ring ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 110px var(--pad-x) 56px;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* orbit ring */
.horbit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.horbit__ring {
  position: relative;
  width: min(88vmin, 1000px);
  aspect-ratio: 1;
  animation: horbitSpin 90s linear infinite;
}
@keyframes horbitSpin {
  to {
    rotate: 360deg;
  }
}
.horbit__item {
  --angle: calc(var(--i) * 36deg); /* 10 cards evenly spaced (360 / 10) */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(var(--angle)) translateY(calc(min(44vmin, 500px) * -1))
    rotate(calc(var(--angle) * -1));
  pointer-events: auto; /* cards are interactive; gaps in the ring pass through */
  text-decoration: none;
}
.horbit__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--ink-soft);
  width: 112px;
  height: 66px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.12);
  overflow: hidden;
  cursor: pointer;
  animation: horbitCounter 90s linear infinite; /* keep cards upright */
  transition: scale 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
@keyframes horbitCounter {
  to {
    rotate: -360deg;
  }
}
.horbit__card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.horbit__card--price {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 18px 44px rgba(196, 53, 31, 0.35);
}
.horbit__label {
  font-size: 20px;
  font-weight: 800;
}
.horbit__card:not(.horbit__card--price) .horbit__label {
  font-size: 16px;
  color: var(--ink);
}
.horbit__label i {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  margin-left: 2px;
  opacity: 0.85;
}

/* hover-revealed detail (hidden until pop) */
.horbit__sub {
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--ink-mute);
  opacity: 0;
  transition: opacity 0.3s ease 0.08s;
}
.horbit__card--price .horbit__sub {
  color: rgba(255, 255, 255, 0.85);
}
.horbit__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 10px 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  text-align: left;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  opacity: 0;
  transition: opacity 0.3s ease 0.05s;
}
.horbit__cap i {
  font-style: normal;
  font-size: 8px;
  font-weight: 700;
  color: var(--primary-vivid);
  letter-spacing: 0.5px;
}

/* pause the whole ring while any card is hovered, so it's catchable */
.horbit__ring:has(.horbit__card:hover),
.horbit__ring:has(.horbit__card:hover) .horbit__card {
  animation-play-state: paused;
}

/* the pop */
@media (hover: hover) {
  .horbit__item:hover {
    z-index: 3;
  }
  .horbit__item:hover .horbit__card {
    scale: 1.75;
    box-shadow: 0 30px 70px rgba(26, 26, 26, 0.3);
  }
  .horbit__item:hover .horbit__card--price {
    box-shadow: 0 30px 70px rgba(196, 53, 31, 0.5);
  }
  .horbit__item:hover .horbit__sub,
  .horbit__item:hover .horbit__cap {
    opacity: 1;
  }
  .horbit__item:hover .horbit__label {
    transform: translateY(-7px);
    transition: transform 0.3s ease;
  }
}
/* touch: ring stays decorative, not interactive */
@media (hover: none), (pointer: coarse) {
  .horbit__item {
    pointer-events: none;
  }
}

/* centered copy */
.horbit__center {
  position: relative;
  z-index: 1;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 6.6vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.hero__title .accent {
  color: var(--primary);
}
.hero__title .accent {
  font-weight: 600;
}
.hero__sub {
  max-width: 560px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  margin-top: clamp(22px, 3vw, 36px);
  text-align: center;
}
.hero__sub strong {
  color: var(--primary);
  font-weight: 800;
}
.hero__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 3.4vw, 40px);
}
.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;
  justify-content: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-top: clamp(22px, 3vw, 36px);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-mute);
}
.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__cta-row .btn {
    width: auto;
  }
  .hero__scrollhint {
    display: block;
  }
}
@media (max-width: 700px) {
  .horbit__ring {
    width: 135vmin;
    opacity: 0.45;
  }
  .horbit__item {
    transform: rotate(var(--angle)) translateY(calc(67vmin * -1))
      rotate(calc(var(--angle) * -1));
  }
  .horbit__card {
    width: 88px;
    height: 52px;
    font-size: 12px;
  }
  .horbit__card--price {
    font-size: 15px;
  }
}
html.no-motion .horbit__ring,
html.no-motion .horbit__card {
  animation: none;
}

/* ---------- 9. Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: -0.01em;
  animation: marquee 28s linear infinite;
}
.marquee__track i {
  color: var(--primary);
  font-style: normal;
  font-size: 0.7em;
}
@keyframes marquee {
  to {
    transform: translateX(calc(-100% / 3));
  }
}
html.no-motion .marquee__track {
  animation: none;
}

/* ---------- 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);
}

/* ---------- 12. Promise / stats ---------- */
.promise {
  padding: clamp(90px, 12vw, 170px) var(--pad-x);
  text-align: center;
  background: var(--bg-alt);
}
.promise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 56px);
  max-width: 1100px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.stat__num sup {
  font-size: 0.5em;
}
.stat__label {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 600;
  color: var(--ink-mute);
}
.promise__note {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.01em;
  max-width: 760px;
  margin: 0 auto;
}

/* ---------- 13. Pricing ---------- */
.pricing {
  padding: clamp(90px, 12vw, 180px) var(--pad-x);
}
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(4, 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(24px, 1vw, 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;
}
/* Marketing add-on — launch offer (was-price + highlight) */
.plan__was {
  display: block;
  margin: 0 0 2px;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: -0.02em;
  text-decoration: line-through;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
}
.plan--offer {
  border: 2px solid var(--primary);
  box-shadow: 0 22px 55px rgba(196, 53, 31, 0.16);
}
.plan__badge--offer {
  background: var(--primary-vivid);
}
.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);
}

/* ---------- 13b. Pricing comparison table (collapsible) ---------- */
.ptable {
  max-width: 1040px;
  margin: clamp(28px, 4vw, 48px) auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.06);
}
.ptable__bar {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(16px, 2.4vw, 26px);
}
.ptable__bar::-webkit-details-marker {
  display: none;
}
.ptable__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
}
.ptable__icon svg {
  width: 22px;
  height: 22px;
}
.ptable__head {
  display: flex;
  flex-direction: column;
}
.ptable__head strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(17px, 2vw, 21px);
  letter-spacing: -0.01em;
}
.ptable__head em {
  font-style: normal;
  font-size: 13.5px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.ptable__chevron {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 14px;
}
.ptable[open] .ptable__chevron {
  transform: rotate(180deg);
}
.ptable__scroll {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}
.ptable__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.ptable__table th,
.ptable__table td {
  padding: 14px clamp(14px, 2vw, 22px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.ptable__table th:first-child,
.ptable__table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink-soft);
}
.ptable__table thead th {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg);
}
.ptable__table thead .is-feat {
  background: var(--ink);
  color: var(--bg);
}
.ptable__badge {
  display: block;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  padding: 2px 8px;
  margin: 5px auto 0;
  width: max-content;
}
.ptable__group td {
  background: rgba(196, 53, 31, 0.06);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  text-align: left !important;
}
.ptable__table td.is-feat {
  background: rgba(196, 53, 31, 0.04);
  font-weight: 700;
  color: var(--ink);
}
.ptable__yes {
  color: var(--forest);
  font-weight: 800;
}
.ptable__no {
  color: var(--ink-mute);
}
.ptable__table tbody tr:last-child td {
  border-bottom: 0;
}
/* row hover — highlight the whole row to read across the three plans */
.ptable__table td {
  transition: background 0.15s ease;
}
.ptable__table tbody tr:not(.ptable__group):hover td {
  background: var(--bg-alt);
}
.ptable__table tbody tr:not(.ptable__group):hover td.is-feat {
  background: rgba(196, 53, 31, 0.1);
}

/* ---------- 14a. Comparison ---------- */
.compare {
  padding: clamp(90px, 12vw, 180px) var(--pad-x);
  background: var(--bg-alt);
}
.compare__table {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.07);
}
.compare__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.compare__head span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px clamp(18px, 2.6vw, 36px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.compare__head span:last-child {
  border-left: 1px solid var(--line);
}
.compare__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.compare__dot--bad {
  background: var(--primary-vivid);
}
.compare__dot--good {
  background: var(--forest);
}
.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare__row:last-child {
  border-bottom: 0;
}
.compare__bad,
.compare__good {
  padding: clamp(18px, 2.6vw, 30px) clamp(18px, 2.6vw, 36px);
}
.compare__good {
  border-left: 1px solid var(--line);
  background: rgba(31, 77, 60, 0.035);
}
.compare__bad strong,
.compare__good strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.compare__bad strong::before {
  content: "✗  ";
  color: var(--primary-vivid);
}
.compare__good strong::before {
  content: "✓  ";
  color: var(--forest);
}
.compare__bad span,
.compare__good span {
  font-size: 14.5px;
  color: var(--ink-mute);
}
.compare__punch {
  margin-top: clamp(28px, 4vw, 48px);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.compare__punch em {
  color: var(--primary);
  background-image: linear-gradient(
    transparent 78%,
    rgba(196, 53, 31, 0.25) 78%
  );
}
@media (max-width: 760px) {
  .compare__head {
    display: none;
  }
  .compare__row {
    grid-template-columns: 1fr;
  }
  .compare__good {
    border-left: 0;
  }
}

/* ---------- 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 a {
  display: block;
  width: 100%;
  height: 100%;
}
.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;
  }
}

/* ---------- 14c. Video story ---------- */
.vid {
  padding: clamp(90px, 12vw, 180px) var(--pad-x);
  background: var(--forest);
  color: var(--bg);
}
.vid__frame {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.vid__video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0c241b;
}
.vid__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}
.vid__frame:hover .vid__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--primary-vivid);
}
.vid__frame.is-playing .vid__play {
  display: none;
}
.vid__brand {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  background: rgba(26, 26, 26, 0.55);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.vid__brand em {
  color: var(--primary-vivid);
}

/* ---------- 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: 1100px) {
  .pricing__cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin: 0 auto;
  }
}
@media (max-width: 860px) {
  .pricing__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .plan--featured {
    transform: none;
  }
  .promise__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service {
    grid-template-columns: 48px 1fr;
  }
  .service__desc {
    grid-column: 2;
  }
}
@media (max-width: 560px) {
  .nav__cta {
    font-size: 13px;
    padding: 10px 16px;
  }
  .hero__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .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;
}
