/* ============================================================
   Groundwork Studios — stylesheet
   Warm neutral + ONE ochre accent. Sky = weather only.
   Type-led, editorial, restrained motion, auto dark mode.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:        #EFE9DC;
  --bg-break:  #E8DFCB;
  --ink:       #1A1714;
  --body:      #3D362E;
  --muted:     #7A6F5F;
  --ochre:     #E0A92E;   /* overridable by Tweaks */
  --on-ochre:  #3A2A08;
  --border:    #C9BC9F;
  --sky:       #B8D0DC;    /* weather only — never interactive */

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif; /* overridable */
  --sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);

  --motion: 1;            /* 0 = still, 1 = subtle, scaled by Tweaks */
  --ease: cubic-bezier(.22,.61,.36,1);

  --paper-grain: .06;     /* texture opacity */
}

/* dark mode — auto, plus explicit override from Tweaks preview */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:        #1A1714;
    --bg-break:  #211C16;
    --ink:       #EFE9DC;
    --body:      #C8BCA8;
    --muted:     #8E8270;
    --border:    #36302700;
    --border:    #3A332B;
    --paper-grain: .05;
  }
}
:root[data-theme="dark"] {
  --bg:        #1A1714;
  --bg-break:  #211C16;
  --ink:       #EFE9DC;
  --body:      #C8BCA8;
  --muted:     #8E8270;
  --border:    #3A332B;
  --paper-grain: .05;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
img, video { max-width: 100%; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--body);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color .5s var(--ease), color .5s var(--ease);
}

/* subtle paper grain over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: var(--paper-grain);
  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' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
:root[data-theme="dark"] body::before,
@media (prefers-color-scheme: dark) { body::before { mix-blend-mode: screen; } }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { position: relative; z-index: 2; padding-block: clamp(96px, 13vw, 184px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;       /* label styling only — copy stays sentence-case words */
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--ochre);
  border-radius: 50%;
  flex: none;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  color: #EFE9DC;   /* hero imagery is always dark — keep nav light until scrolled */
  transition: background-color .4s var(--ease), color .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  color: var(--ink);
  padding-top: 16px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.nav.menu-open {
  background: var(--bg);
  color: var(--ink);
  border-bottom-color: var(--border);
}
.brand {
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: currentColor;
}
.brand .dot { color: var(--ochre); }
.nav-end {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  font-size: 15px;
  font-weight: 500;
}
.nav-links a { position: relative; padding-block: 4px; white-space: nowrap; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1.5px; width: 0;
  background: var(--ochre);
  transition: width calc(.35s / var(--motion, 1)) var(--ease);
}
.nav-links a:hover { color: var(--ochre); }
.nav-links a:hover::after { width: 100%; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 11px;
  min-width: 44px;
  min-height: 44px;
  color: currentColor;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .2s, transform .3s var(--ease);
  transform-origin: center;
}
.nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0 0 auto 0;
  padding: 76px var(--gutter) 28px;
  background: var(--bg);
  z-index: 49;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color .2s;
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link:hover { color: var(--ochre); }
.nav-mobile-cta { margin-top: 20px; width: 100%; justify-content: center; font-size: 16px; padding: 16px 24px; }
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ---------- MOBILE FLOATING CTA ---------- */
.mobile-fab {
  display: none;
}
@keyframes fabIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .mobile-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--ochre);
    color: #161310;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 17px 24px;
    padding-bottom: calc(17px + env(safe-area-inset-bottom));
    box-shadow: 0 -3px 24px rgba(0,0,0,0.38);
    animation: fabIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 1s backwards;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.12s ease, box-shadow 0.12s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-fab:active {
    background: #c88e1a;
    transform: scale(0.97);
    box-shadow: 0 -1px 10px rgba(0,0,0,0.2);
  }
  .fab-arrow { flex-shrink: 0; }
  .mobile-fab.fab-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }
}
@media (max-width: 480px) {
  .brand { font-size: 19px; }
}
@media (min-width: 721px) {
  .nav-mobile { display: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 17px 26px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform calc(.4s / var(--motion,1)) var(--ease), background-color .3s var(--ease), box-shadow .4s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn-ochre {
  background: var(--ochre);
  color: var(--on-ochre);
}
.btn-ochre .arrow { transition: transform calc(.4s / var(--motion,1)) var(--ease); }
.btn-ochre:hover {
  transform: translateY(calc(-3px * var(--motion,1)));
  box-shadow: 0 14px 34px -12px color-mix(in srgb, var(--ochre) 70%, #000);
}
.btn-ochre:hover .arrow { transform: translateX(5px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--ochre); color: var(--ochre); }

/* text link with growing ochre underline */
.ulink {
  position: relative;
  display: inline-block;
  font-weight: 500;
  color: inherit;
}
.ulink::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  height: 1.5px; width: 100%;
  background: currentColor;
  opacity: .35;
  transform-origin: left;
  transition: transform calc(.4s / var(--motion,1)) var(--ease), background-color .3s var(--ease), opacity .3s var(--ease);
}
.ulink:hover { color: var(--ochre); }
.ulink:hover::after { background: var(--ochre); opacity: 1; transform: scaleX(1.0); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 200dvh;
  display: block;
  overflow: hidden;
  z-index: 2;
}

/* ---------- SCREEN 1: stat panel ---------- */
.hero-stat-panel {
  position: relative;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-stat-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22,19,16,0.28);
  pointer-events: none;
}
.hero-stat-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: min(88vw, 560px);
  padding: 0 var(--gutter);
  gap: clamp(28px, 4dvh, 44px);
  opacity: 0;
  animation: statFadeIn 1.4s 0.5s cubic-bezier(0.25,0.1,0.25,1) forwards;
}
.hero-stat-inner .scroll-cue {
  position: static;
}
@keyframes statFadeIn { to { opacity: 1; } }
.hero-stat-primary {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  font-weight: 400;
  color: #EFE9DC;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: pretty;
}
.hero-stat-ochre { color: var(--ochre); font-style: normal; }
.hero-stat-secondary {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--ochre);
  line-height: 1.5;
  margin: 0;
  text-wrap: pretty;
}

/* ---------- SCREEN 2: existing hero content ---------- */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(64px, 9vw, 120px);
}
.hero-inner--s2 {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero-inner--s2.in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-stat-inner { animation: none; opacity: 1; }
  .hero-inner--s2 { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 720px) {
  .hero-stat-inner { animation: none; opacity: 1; }
  .hero-inner--s2 { opacity: 1; transform: none; transition: none; }
}
.hero-media {
  position: absolute;
  inset: 0;
  background: #1A1714 url("assets/hero.jpg") center 38% / cover no-repeat;
  z-index: 0;
}
/* dual-video crossfade loop */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
  opacity: 0;
  transition: opacity .9s linear;
  pointer-events: none;
}
.hero-video.is-active { opacity: 1; }
/* warm-dark scrim for legibility over busy iPhone video */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(22,19,16,.92) 0%, rgba(22,19,16,.72) 45%, rgba(22,19,16,.30) 70%, rgba(22,19,16,.40) 100%),
    linear-gradient(180deg, rgba(22,19,16,.45) 0%, rgba(22,19,16,0) 30%, rgba(22,19,16,0) 55%, rgba(22,19,16,.70) 100%);
}
@media (max-width: 640px) {
  .hero-scrim {
    background:
      rgba(22,19,16,.62),
      linear-gradient(180deg, rgba(22,19,16,.50) 0%, rgba(22,19,16,.10) 40%, rgba(22,19,16,.55) 100%);
  }
}
/* sky 'weather' — a faint atmospheric haze top-left of the hero, environmental only */
.hero-weather {
  position: absolute;
  top: -10%; left: -8%;
  width: 60%; height: 70%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--sky) 34%, transparent), transparent 75%);
  opacity: .5;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(64px, 9vw, 120px);
}
.hero-text { max-width: min(62ch, 760px); }
.hero .eyebrow { color: color-mix(in srgb, #EFE9DC 78%, transparent); margin-bottom: 26px; }
.hero h1 {
  color: #EFE9DC;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.028em;
  margin-bottom: 26px;
}
.hero-sub {
  list-style: none;
  margin: 0 0 38px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-sub li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 300;
  font-style: italic;
  color: color-mix(in srgb, #EFE9DC 86%, transparent);
  letter-spacing: -0.01em;
}
.hero-sub li::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--ochre);
  flex: none;
}
.hero-cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-lead {
  max-width: 46ch;
  margin: 0 0 clamp(12px, 1.8vw, 22px);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.5;
  color: #EFE9DC;
  text-wrap: pretty;
}
@media (max-width: 720px) { .hero-cta { display: none; } }
.hero-sig {
  max-width: 46ch;
  margin: 0 0 38px;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  color: color-mix(in srgb, #EFE9DC 68%, transparent);
  line-height: 1.4;
}
.hero-sig-name {
  font-family: "Dancing Script", cursive;
  font-size: 2em;
  font-weight: 500;
  color: var(--ochre);
  line-height: 1;
  display: inline-block;
  vertical-align: baseline;
  transform: translateY(0.08em);
}
.h1-ochre { color: var(--ochre); font-style: normal; }
.hero-cta .ulink { color: color-mix(in srgb, #EFE9DC 88%, transparent); }
.scroll-cue {
  position: absolute;
  left: var(--gutter); bottom: 26px;
  z-index: 2;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: color-mix(in srgb, #EFE9DC 64%, transparent);
  display: flex; align-items: center; gap: 10px;
}
.scroll-cue .line { display:block; width: 34px; height: 1px; background: currentColor; opacity:.6;
  animation: cuepush 2.4s var(--ease) infinite; transform-origin: left; }
@keyframes cuepush { 0%,100%{ transform: scaleX(.5); opacity:.3;} 50%{ transform: scaleX(1); opacity:.8;} }
@media (max-width: 640px){ .scroll-cue{ display:none; } }

/* ---------- WHO I AM ---------- */
.who { background: var(--bg); position: relative; padding-block: 0; }
.who-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: stretch;
  min-height: clamp(580px, 70vw, 800px);
}
.who-portrait {
  position: relative;
  overflow: visible;
  will-change: transform;
}
.who-photo {
  width: 100%;
  height: 100%;
  min-height: clamp(500px, 64vw, 760px);
  display: block;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 0 10px 10px 0;
  filter: brightness(0.94) saturate(0.82) contrast(0.97) sepia(0.08);
}
/* right-edge blend into cream content + warm grain */
.who-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 55%,
    color-mix(in srgb, var(--bg) 55%, transparent) 80%,
    var(--bg) 100%
  ), linear-gradient(
    180deg,
    transparent 70%,
    color-mix(in srgb, var(--bg) 40%, transparent) 100%
  );
  border-radius: 0 10px 10px 0;
  pointer-events: none;
  z-index: 2;
}
/* warm grain overlay */
.who-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.09;
  mix-blend-mode: multiply;
  pointer-events: none;
  border-radius: 0 10px 10px 0;
  z-index: 3;
}
.who-portrait .stamp {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-30%) rotate(-2.2deg);
  background: var(--ochre);
  color: var(--on-ochre);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 15px;
  max-width: 196px;
  line-height: 1.3;
  z-index: 4;
  box-shadow: 0 6px 22px rgba(0,0,0,.2);
}
.who-copy {
  padding: clamp(64px, 8vw, 110px) clamp(40px, 5.5vw, 80px) clamp(64px, 8vw, 110px) clamp(52px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.who h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 26px; margin-top: 22px; }
.who .lead {
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  color: var(--ink);
  margin-bottom: 0;
  line-height: 1.6;
}
.who p + p { margin-top: 22px; }
.who-pullout {
  margin-top: 40px !important;
  font-style: italic;
  font-size: clamp(1.24rem, 1.9vw, 1.65rem);
  line-height: 1.5;
  color: var(--ink);
  padding-top: 34px;
  border-top: 1px solid var(--border);
}
.who-ochre { color: var(--ochre); font-style: normal; }
.who p + p { margin-top: clamp(14px, 2vw, 22px); }
.who-pain-list {
  list-style: none;
  padding: 0;
  margin: clamp(14px, 2vw, 20px) 0 clamp(14px, 2vw, 20px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(9px, 1.4vw, 13px);
}
.who-pain-list li {
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.65;
  color: #B8AD9A;
  padding-left: 1.3em;
  position: relative;
}
.who-pain-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--ochre);
  opacity: 0.6;
}
.who-payoff {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--ochre);
  margin-top: clamp(18px, 2.5vw, 28px) !important;
  letter-spacing: -0.01em;
}

/* ---------- WHO STAT BRIDGE ---------- */
.who-stat-bridge {
  background: var(--bg);
  text-align: center;
  padding: clamp(20px, 3vw, 32px) var(--gutter);
}
.who-stat-bridge-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: color-mix(in srgb, var(--ochre) 55%, transparent);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

/* ---------- $7,000 STORY (feature, neutral break) ---------- */
.story { background: var(--bg-break); position: relative; overflow: hidden; }
/* paper grain */
.story::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.055;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.story .wrap { position: relative; z-index: 1; }
/* $7k figure — starts invisible, animates in via JS */
#acc-amount {
  display: inline-block;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#acc-amount.counted {
  opacity: 1;
  transform: scale(1);
}
.story .eyebrow { margin-bottom: 32px; }
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: end;
}
.story h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
}
.story h2 .accent { color: var(--ochre); }
.story .story-body { color: var(--body); font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.6; }
.story .story-body p + p { margin-top: 18px; }
.story-subhead {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 28px 0 10px;
}
.story-list {
  list-style: none;
  margin: 22px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.story-list li {
  padding-left: 1.6em;
  position: relative;
  color: var(--body);
}
.story-list li::before {
  content: '\00D7';
  position: absolute;
  left: 0;
  color: var(--ochre);
  font-weight: 700;
  font-size: 1.05em;
  line-height: 1.5;
}
@media (max-width: 860px){ .story-grid { grid-template-columns: 1fr; align-items: start; } }

/* ---------- WHY IT COSTS LESS (dark) + comparison ---------- */
.why { background: #161310; color: #EFE9DC; --ink: #EFE9DC; }
.why .eyebrow { margin-bottom: 20px; color: color-mix(in srgb, #EFE9DC 62%, transparent); }
.why-pull {
  max-width: 680px;
  margin: 0 0 clamp(40px, 5vw, 68px);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: #EFE9DC;
}
.why-pull-hl { font-style: normal; color: var(--ochre); }
.compare {
  margin-top: 0;
  border-top: 1px solid color-mix(in srgb, #EFE9DC 18%, transparent);
}
.crow {
  display: grid;
  grid-template-columns: 17ch 1fr 1fr;
  border-bottom: 1px solid color-mix(in srgb, #EFE9DC 10%, transparent);
  align-items: center;
}
.crow > div {
  padding: clamp(13px, 1.5vw, 19px) clamp(12px, 1.8vw, 26px);
  font-size: clamp(0.93rem, 1.25vw, 1.04rem);
  line-height: 1.4;
}
.crow > div + div { border-left: 1px solid color-mix(in srgb, #EFE9DC 10%, transparent); }
/* label column */
.clabel {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ochre);
}
/* agency column */
.cold { color: color-mix(in srgb, #EFE9DC 38%, transparent); }
.cold s { text-decoration-color: color-mix(in srgb, #EFE9DC 28%, transparent); }
/* groundwork column */
.cnew { color: #EFE9DC; font-weight: 500; }
.cnew-hl { color: var(--ochre); }
/* header row */
.crow.chead { border-bottom-color: color-mix(in srgb, #EFE9DC 22%, transparent); }
.crow.chead > div { padding-top: 0; padding-bottom: 16px; }
.crow.chead .clabel { visibility: hidden; }
.crow.chead .cold { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: color-mix(in srgb, #EFE9DC 50%, transparent); }
.crow.chead .cnew { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ochre); }
/* closing notes */
.compare-note { margin-top: 28px; font-size: .95rem; color: color-mix(in srgb, #EFE9DC 50%, transparent); max-width: 64ch; }
.compare-note2 { margin-top: 10px; font-size: .95rem; font-style: italic; color: color-mix(in srgb, #EFE9DC 68%, transparent); max-width: 64ch; }
/* mobile: card per row */
@media (max-width: 760px) {
  .crow { grid-template-columns: 1fr; border: none; border-radius: 8px; background: rgba(255,255,255,.04); margin-bottom: 8px; }
  .crow > div { border-left: none !important; font-size: .95rem; }
  .clabel { padding-bottom: 8px !important; border-bottom: 1px solid color-mix(in srgb, #EFE9DC 10%, transparent) !important; }
  .cold { padding-top: 6px !important; }
  .cold::before {
    content: "Agency";
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: color-mix(in srgb, #EFE9DC 38%, transparent);
    margin-bottom: 4px;
  }
  .cnew { border-top: 1px solid color-mix(in srgb, #EFE9DC 8%, transparent) !important; padding-bottom: 14px !important; padding-top: 6px !important; }
  .cnew::before {
    content: "Groundwork";
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 4px;
  }
  .crow.chead { display: none; }
}

/* ---------- THE WHOLE IDEA (light neutral) ---------- */
.idea { background: var(--bg); }
.idea-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 10px 0 clamp(48px, 7vw, 88px);
  max-width: 100%;
}
.idea-line1 {
  display: block;
}
.idea-line2 {
  display: block;
  margin-top: clamp(16px, 2.5vw, 28px);
  color: var(--ochre);
}
.idea-items {
  display: flex;
  flex-direction: column;
  gap: clamp(52px, 7.5vw, 88px);
}
.idea-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 52px);
}
.idea-num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ochre);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  width: clamp(52px, 8vw, 88px);
  padding-top: 4px;
}
.idea-content { flex: 1; padding-top: 6px; }
.idea-heading {
  display: block;
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.idea-content p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.55;
  color: var(--body);
  max-width: 46ch;
}
.idea-close {
  margin-top: clamp(48px, 7vw, 80px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--ink);
}

/* ---------- HOW IT PLAYS OUT (dark step flow) ---------- */
.flow { background: #161310; color: #EFE9DC; --ink: #EFE9DC; --body: #B8AD9A; }
.flow .eyebrow { color: color-mix(in srgb, #EFE9DC 62%, transparent); }
.flow-headline {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #EFE9DC;
  margin: 10px 0 clamp(20px, 3vw, 32px);
  max-width: 22ch;
}
.flow-intro {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.65;
  color: #B8AD9A;
  max-width: 52ch;
  margin-bottom: clamp(12px, 2vw, 18px);
}
.flow-stat {
  font-family: var(--sans);
  font-size: clamp(0.83rem, 1.1vw, 0.93rem);
  line-height: 1.6;
  color: color-mix(in srgb, #B8AD9A 70%, transparent);
  max-width: 52ch;
  font-style: italic;
}
.flow-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4.5vw, 52px);
  margin-top: clamp(48px, 7vw, 88px);
}
/* the vertical line */
.flow-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--ochre);
  opacity: 0.45;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.flow-steps.line-drawn::before { transform: scaleY(1); }
@media (prefers-reduced-motion: reduce) {
  .flow-steps::before { transition: none; transform: scaleY(1); }
}
.flow-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 clamp(20px, 3vw, 36px);
  align-items: start;
}
.flow-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
  position: relative;
  z-index: 1;
}
.flow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ochre);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(224, 169, 46, 0.18);
}
.flow-num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--ochre);
  line-height: 1;
  margin-top: 6px;
  letter-spacing: -0.03em;
  opacity: 0.7;
}
.flow-body { padding-top: 0; }
.flow-heading {
  display: block;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  color: #EFE9DC;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.flow-why {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: #B8AD9A;
  max-width: 52ch;
}
.flow-close {
  margin-top: clamp(36px, 5vw, 56px);
  background: rgba(224, 169, 46, 0.07);
  border: 1px solid rgba(224, 169, 46, 0.18);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 32px);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: #EFE9DC;
  max-width: 58ch;
}
.flow-hl { color: var(--ochre); font-style: normal; }
.flow-close-lead {
  display: block;
  font-size: clamp(1.05rem, 1.65vw, 1.3rem);
  font-weight: 500;
  margin-bottom: 0.45em;
}

/* ---------- FLOW VISUAL — Jim & Sally scenes ---------- */
.flow-visual { margin-top: clamp(40px, 6vw, 72px); }

.flow-cast {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: clamp(18px, 2.5vw, 28px);
  border-bottom: 1px solid rgba(224,169,46,0.15);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.flow-cast-person {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.flow-cast-person--right { justify-content: flex-end; }
.flow-cast-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(224,169,46,0.09);
  border: 1px solid rgba(224,169,46,0.28);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 400;
  color: var(--ochre);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.flow-cast-info { display: flex; flex-direction: column; gap: 3px; }
.flow-cast-info--right { text-align: right; }
.flow-cast-name {
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: #EFE9DC;
}
.flow-cast-role { font-size: 0.7rem; color: #B8AD9A; font-style: italic; }
.flow-cast-mid { flex-shrink: 0; text-align: center; padding: 0 10px; }
.flow-cast-gw {
  font-family: var(--sans);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ochre); opacity: 0.65;
}

/* 3-col scene grid: jim | node | sally */
.flow-scene {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0 clamp(10px, 1.8vw, 22px);
  margin-bottom: clamp(16px, 2.5vw, 28px);
  align-items: start;
}
.flow-col { display: flex; flex-direction: column; }
.flow-col--jim { align-items: flex-end; }
.flow-col--sally { align-items: flex-start; }

/* Centre node */
.flow-node { display: flex; flex-direction: column; align-items: center; }
.flow-node-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(224,169,46,0.32);
  background: rgba(224,169,46,0.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.flow-node-num span {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 300;
  color: var(--ochre); letter-spacing: -0.02em; line-height: 1;
}
.flow-node-num--alert { border-color: rgba(184,173,154,0.2); background: transparent; }
.flow-node-num--alert span { color: rgba(184,173,154,0.38); }
.flow-node-num--gw { border-color: rgba(224,169,46,0.5); background: rgba(224,169,46,0.11); }
.flow-node-num--gw span {
  font-family: var(--sans);
  font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.flow-node-num--win {
  border-color: var(--ochre);
  background: rgba(224,169,46,0.16);
  box-shadow: 0 0 0 3px rgba(224,169,46,0.09);
}
.flow-node-line {
  width: 1px; flex: 1; min-height: 14px;
  background: rgba(224,169,46,0.17);
  margin: 4px 0;
}
.flow-node-line--last { display: none; }

/* Cards */
.flow-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(184,173,154,0.11);
  border-radius: 3px;
  padding: clamp(11px,1.6vw,17px) clamp(13px,1.8vw,19px);
  width: 100%; max-width: 295px;
}
.flow-card--dim {
  border-style: dashed;
  border-color: rgba(184,173,154,0.09);
  background: transparent; opacity: 0.68;
}
.flow-card--win {
  border-color: rgba(224,169,46,0.2);
  background: rgba(224,169,46,0.05);
}
.flow-card--gw {
  border-color: rgba(224,169,46,0.24);
  background: rgba(224,169,46,0.07);
}
.flow-card--sally {
  border-color: rgba(184,173,154,0.24);
  background: rgba(184,173,154,0.08);
}
/* "All handled by Groundwork" divider */
.flow-gw-note {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ochre); opacity: 0.72;
  padding: clamp(10px,1.5vw,14px) 0;
  border-top: 1px solid rgba(224,169,46,0.14);
  border-bottom: 1px solid rgba(224,169,46,0.14);
  margin-bottom: clamp(16px,2.5vw,26px);
}
.flow-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 2px 6px; border-radius: 2px; margin-bottom: 7px;
}
.flow-tag--jim {
  background: rgba(239,233,220,0.09); color: #EFE9DC;
  border: 1px solid rgba(239,233,220,0.22);
}
.flow-tag--sally {
  background: rgba(239,233,220,0.06); color: #B8AD9A;
  border: 1px solid rgba(184,173,154,0.18);
}
.flow-tag--gw {
  background: rgba(224,169,46,0.16); color: var(--ochre);
  border: 1px solid rgba(224,169,46,0.36);
}
/* Cast avatar wrap + role icons */
.flow-cast-avatar-wrap { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.flow-cast-icon { width: 14px; height: 14px; flex-shrink: 0; }
/* Jim — cream */
.flow-cast-person--jim .flow-cast-avatar { color: #EFE9DC; border-color: rgba(239,233,220,0.28); background: rgba(239,233,220,0.07); }
.flow-cast-person--jim .flow-cast-name { color: #EFE9DC; }
.flow-cast-person--jim .flow-cast-icon { color: rgba(239,233,220,0.55); }
/* Sally — taupe */
.flow-cast-person--sally .flow-cast-avatar { color: #B8AD9A; border-color: rgba(184,173,154,0.28); background: rgba(184,173,154,0.06); }
.flow-cast-person--sally .flow-cast-name { color: #B8AD9A; }
.flow-cast-person--sally .flow-cast-icon { color: rgba(184,173,154,0.55); }
/* SMS "received by" label */
.flow-sms-to {
  font-family: var(--sans);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(184,173,154,0.42);
  margin-bottom: 4px;
}
.flow-card-title {
  display: block;
  font-family: var(--sans);
  font-size: clamp(0.85rem,1.15vw,0.98rem);
  font-weight: 700; color: #EFE9DC;
  margin-bottom: 5px; letter-spacing: -0.01em; line-height: 1.3;
}
.flow-card-body {
  font-size: clamp(0.78rem,1vw,0.88rem);
  line-height: 1.6; color: #B8AD9A; margin: 0;
}
.flow-card-body--hint {
  font-style: italic; color: rgba(184,173,154,0.6); margin-bottom: 5px;
}

/* SMS bubbles */
.flow-sms { margin: 8px 0 7px; display: flex; flex-direction: column; gap: 5px; }
.flow-bubble {
  background: #191612;
  border: 1px solid rgba(184,173,154,0.1);
  border-radius: 2px 9px 9px 9px;
  padding: 7px 10px;
  font-size: clamp(0.74rem,0.95vw,0.82rem);
  line-height: 1.5; color: #B8AD9A; font-style: italic;
}
.flow-bubble--cta {
  background: rgba(224,169,46,0.07);
  border-color: rgba(224,169,46,0.18);
  color: var(--ochre); font-style: normal; font-weight: 600;
  border-radius: 2px 9px 9px 9px;
}

/* Slide-in transitions for cards */
.flow-col--jim .flow-card {
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.5s var(--ease) 0.12s, transform 0.5s cubic-bezier(0.16,1,0.3,1) 0.12s;
}
.flow-scene.in .flow-col--jim .flow-card { opacity: 1; transform: translateX(0); }
.flow-col--sally .flow-card {
  opacity: 0; transform: translateX(12px);
  transition: opacity 0.5s var(--ease) 0.22s, transform 0.5s cubic-bezier(0.16,1,0.3,1) 0.22s;
}
.flow-scene.in .flow-col--sally .flow-card { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .flow-col--jim .flow-card,
  .flow-col--sally .flow-card { opacity: 1 !important; transform: none !important; }
}

/* Mobile: left-rail single column */
@media (max-width: 640px) {
  .flow-cast { flex-wrap: wrap; gap: 10px; }
  .flow-cast-mid {
    order: 3; flex: 0 0 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(224,169,46,0.1);
  }
  .flow-scene {
    display: block;
    position: relative;
    padding-left: 50px;
  }
  .flow-node {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 38px;
    flex-direction: column;
    align-items: center;
  }
  .flow-node-line { min-height: 100%; flex: 1; }
  .flow-col--jim, .flow-col--sally {
    align-items: stretch;
    margin-bottom: 8px;
  }
  .flow-col--jim:empty, .flow-col--sally:empty { display: none; margin: 0; }
  .flow-card { max-width: 100%; }
  .flow-col--jim .flow-card,
  .flow-col--sally .flow-card {
    transform: translateY(8px);
    transition: opacity 0.5s var(--ease) 0.12s, transform 0.5s cubic-bezier(0.16,1,0.3,1) 0.12s;
  }
  .flow-scene.in .flow-col--jim .flow-card,
  .flow-scene.in .flow-col--sally .flow-card { opacity: 1; transform: none; }
}

/* ---------- TESTIMONIAL (dark, with portrait) ---------- */
.proof { background: #161310; color: #EFE9DC; --ink: #EFE9DC; }
.proof .eyebrow { color: color-mix(in srgb, #EFE9DC 62%, transparent); }
/* Quote block — Brian's portrait blended behind text only */
.proof-inner {
  max-width: 800px;
  margin-inline: auto;
  margin-top: clamp(24px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
}
.proof-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('brian-finn.webp') 55% top / cover no-repeat;
  filter: grayscale(1) brightness(0.30) contrast(1.1);
  z-index: 0;
}
.proof-inner blockquote,
.proof-inner .attrib { position: relative; z-index: 1; }

/* Website screenshot card */
.proof-card {
  max-width: 350px;
  margin-inline: auto;
  margin-top: clamp(44px, 6vw, 72px);
  text-align: center;
}
.proof-site { display: block; text-decoration: none; }
.proof-site-thumb {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proof-site:hover .proof-site-thumb {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.65);
}
.proof-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 14px 32px;
  background: var(--ochre);
  color: var(--on-ochre);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.proof-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px -10px color-mix(in srgb, var(--ochre) 70%, #000); }

/* Quote typography */
.proof blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.55rem);
  line-height: 1.26;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.proof .qmark { color: var(--ochre); font-size: 1.1em; line-height: 0; }
.proof .underline { position: relative; white-space: nowrap; }
.proof .underline svg {
  position: absolute; left: 0; right: 0; width: 100%; bottom: -0.16em; height: .42em;
  overflow: visible;
}
.proof .underline path { fill: none; stroke: var(--ochre); stroke-width: 4; stroke-linecap: round; }
.proof .attrib {
  margin-top: 36px;
  display: flex; align-items: center; gap: 18px;
  font-family: var(--sans);
}
.proof .attrib .rule { width: 40px; height: 1px; background: var(--ochre); }
.proof .attrib b { color: #EFE9DC; font-weight: 600; }
.proof .attrib span { color: color-mix(in srgb, #EFE9DC 60%, transparent); }

/* ---------- RECENT WORK (two quiet cards) ---------- */
.work2 { background: var(--bg); }
.work2-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 3.5vw, 44px); }
.work2-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.work2-head .note { color: var(--muted); font-size: 1rem; }
.work-cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.2vw, 28px); }
.wcard {
  border: 1px solid var(--border);
  padding: clamp(16px, 1.6vw, 22px);
  display: flex; flex-direction: column; gap: 18px;
  text-decoration: none;
  transition: transform calc(.45s / var(--motion,1)) var(--ease), border-color .4s var(--ease), box-shadow .45s var(--ease);
}
.wcard:hover { transform: translateY(calc(-4px * var(--motion,1))); border-color: var(--ochre); box-shadow: 0 22px 44px -28px rgba(26,23,20,.4); }
.wcard image-slot { width: 100%; aspect-ratio: 16 / 10; display: block; border: 1px solid var(--border); }
.wcard .wthumb { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; display: block; border: 1px solid var(--border); }
.wmeta { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.wmeta .wtext { display: flex; flex-direction: column; flex: 1 1 auto; min-width: 0; }
.wmeta .wname { font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.12; color: var(--ink); display: block; }
.wmeta .wlabel { color: var(--muted); font-size: .92rem; margin-top: 7px; display: block; }
.wmeta .warrow { color: var(--ochre); font-size: 1.2rem; transition: transform calc(.4s / var(--motion,1)) var(--ease); flex: none; align-self: flex-start; }
.wcard:hover .warrow { transform: translate(3px, -3px); }
@media (max-width: 700px){ .work-cards { grid-template-columns: 1fr; } }

/* ---------- WHAT YOU GET ---------- */
.whatyouget { background: #0f0d0b; color: #EFE9DC; --ink: #EFE9DC; }
.whatyouget .eyebrow { color: color-mix(in srgb, #EFE9DC 62%, transparent); }
.wyg-head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 62ch; }
.wyg-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin: 20px 0; color: #EFE9DC; }
.wyg-head p { color: color-mix(in srgb, #EFE9DC 70%, transparent); font-size: 1.12rem; }
.wyg-table {
  border: 1px solid color-mix(in srgb, #EFE9DC 10%, transparent);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: clamp(48px, 7vw, 88px);
}
.wyg-table-head {
  display: grid;
  grid-template-columns: 25% 45% 30%;
  background: color-mix(in srgb, #EFE9DC 4%, transparent);
  border-bottom: 1px solid color-mix(in srgb, #EFE9DC 10%, transparent);
}
.wyg-th {
  padding: 12px clamp(16px, 2vw, 28px);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: color-mix(in srgb, #EFE9DC 35%, transparent);
}
.wyg-row {
  display: grid;
  grid-template-columns: 25% 45% 30%;
  align-items: start;
  border-top: 1px solid color-mix(in srgb, #EFE9DC 8%, transparent);
}
.wyg-row:first-of-type { border-top: none; }
.wyg-col {
  padding: clamp(18px, 2.5vw, 32px) clamp(16px, 2vw, 28px);
}
.wyg-col + .wyg-col {
  border-left: 1px solid color-mix(in srgb, #EFE9DC 7%, transparent);
}
.wyg-col--name strong {
  display: block;
  font-size: clamp(.9rem, 1.2vw, 1rem);
  font-weight: 700;
  color: #EFE9DC;
  line-height: 1.45;
  margin-bottom: 7px;
}
.wyg-jargon {
  display: block;
  font-size: .75rem;
  color: var(--ochre);
  letter-spacing: .04em;
  opacity: .85;
  line-height: 1.4;
}
.wyg-col--explain {
  font-size: .91rem;
  color: color-mix(in srgb, #EFE9DC 75%, transparent);
  line-height: 1.72;
}
.wyg-col--cost {
  font-size: .82rem;
  color: color-mix(in srgb, #EFE9DC 38%, transparent);
  line-height: 1.62;
  font-style: italic;
}
@media (max-width: 780px) {
  .wyg-table-head { display: none; }
  .wyg-row {
    grid-template-columns: 1fr;
    padding: clamp(20px, 4vw, 32px) clamp(16px, 4vw, 24px);
    gap: 0;
  }
  .wyg-col { padding: 0; border-left: none !important; }
  .wyg-col--explain { margin: 10px 0 12px; }
  .wyg-col--cost { padding-top: 10px; border-top: 1px solid color-mix(in srgb, #EFE9DC 8%, transparent); }
  .wyg-col--cost::before { content: "Agencies charge: "; display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: color-mix(in srgb, #EFE9DC 45%, transparent); margin-bottom: 4px; font-style: normal; }
  .wyg-col--name::before, .wyg-col--explain::before { display: none; }
}
/* price comparison block */
.wyg-compare {
  border: 1px solid color-mix(in srgb, var(--ochre) 30%, transparent);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 52px) clamp(20px, 3vw, 40px);
}
.wyg-compare-header,
.wyg-compare-row {
  display: grid;
  grid-template-columns: 22% 1fr 1fr;
  gap: clamp(16px, 2.5vw, 40px);
  align-items: baseline;
}
.wyg-compare-header { margin-bottom: 12px; }
.wyg-compare-row {
  padding: clamp(18px, 2.5vw, 28px) 0;
  border-top: 1px solid color-mix(in srgb, #EFE9DC 8%, transparent);
}
@media (max-width: 640px) {
  .wyg-compare-header { display: none; }
  .wyg-compare-row { grid-template-columns: 1fr; gap: 8px; }
  .wyg-compare-cell--gw::before {
    content: 'Groundwork: ';
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--ochre) 70%, transparent);
  }
}
.wyg-compare-col-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.wyg-compare-col-label--agency { color: color-mix(in srgb, #EFE9DC 35%, transparent); }
.wyg-compare-col-label--gw { color: color-mix(in srgb, var(--ochre) 80%, transparent); }
.wyg-compare-row-label {
  font-size: .82rem;
  font-weight: 600;
  color: color-mix(in srgb, #EFE9DC 45%, transparent);
  letter-spacing: .02em;
}
.wyg-compare-cell { display: flex; flex-direction: column; gap: 4px; }
.wyg-compare-figure {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: color-mix(in srgb, #EFE9DC 38%, transparent);
}
.wyg-compare-figure--gw { color: var(--ochre); }
.wyg-compare-detail {
  font-size: .82rem;
  color: color-mix(in srgb, #EFE9DC 35%, transparent);
  line-height: 1.45;
}
.wyg-compare-cell--gw .wyg-compare-detail { color: color-mix(in srgb, #EFE9DC 50%, transparent); }
.wyg-compare-punch {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--ochre);
  text-align: center;
  margin: clamp(16px, 2vw, 28px) 0 0;
  line-height: 1.3;
}
/* ---------- ADMIN STAT STRIP ---------- */
.stat-strip { background: #161310; color: #EFE9DC; }
.stat-strip-inner { text-align: center; max-width: 52ch; margin-inline: auto; }
.stat-strip-eyebrow { display: block; margin-bottom: 18px; color: color-mix(in srgb, #EFE9DC 62%, transparent); }
.stat-strip-headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #EFE9DC;
  margin: 0 0 clamp(16px, 2vw, 24px);
}
.stat-strip-gold { color: var(--ochre); }
.stat-strip-sub {
  color: color-mix(in srgb, #EFE9DC 55%, transparent);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.6;
  margin: 0;
}
/* ---------- WYG row footnote ---------- */
.wyg-row-footnote {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: color-mix(in srgb, #EFE9DC 38%, transparent);
  font-style: italic;
  line-height: 1.4;
}
/* ---------- PRICING (dark, expanded) ---------- */
.pricing { background: #161310; color: #EFE9DC; --ink: #EFE9DC; }
.pricing .eyebrow { color: color-mix(in srgb, #EFE9DC 62%, transparent); }
.pricing-head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 62ch; }
.pricing-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin: 20px 0; color: #EFE9DC; }
.pricing-head p { color: color-mix(in srgb, #EFE9DC 70%, transparent); font-size: 1.12rem; }
.pricing-brian {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: color-mix(in srgb, #EFE9DC 68%, transparent);
  line-height: 1.65;
  margin: 0 0 clamp(48px, 6vw, 80px);
  max-width: 68ch;
  text-wrap: pretty;
}
.pricing-profit {
  font-style: normal;
  font-weight: 700;
  color: var(--ochre);
  letter-spacing: 0.04em;
}
.pricing-stars {
  font-style: normal;
  color: var(--ochre);
  letter-spacing: 0.05em;
}
/* ---------- SINGLE OFFER CARD ---------- */
.price-solo {
  border: 1px solid color-mix(in srgb, var(--ochre) 40%, transparent);
  border-radius: 6px;
  padding: clamp(32px, 5vw, 64px) clamp(28px, 5vw, 64px);
  max-width: 780px;
  margin-inline: auto;
}
.price-solo .price {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  font-weight: 400;
  color: #EFE9DC;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.price-solo .price-mo {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  letter-spacing: 0;
  color: color-mix(in srgb, #EFE9DC 60%, transparent);
  vertical-align: middle;
  margin-left: 4px;
}
.price-solo-period {
  font-size: .95rem;
  color: color-mix(in srgb, #EFE9DC 50%, transparent);
  margin: -4px 0 24px;
  letter-spacing: .02em;
}
.price-solo-note {
  font-size: .88rem;
  color: color-mix(in srgb, #EFE9DC 48%, transparent);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 60ch;
}
.price-solo-lead {
  font-size: 1rem;
  font-weight: 600;
  color: #EFE9DC;
  margin: 0 0 20px;
}
.price-solo .feats { margin-bottom: 28px; }
.price-how-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  border-top: 1px solid color-mix(in srgb, #EFE9DC 14%, transparent);
  border-bottom: 1px solid color-mix(in srgb, #EFE9DC 14%, transparent);
  padding: 14px 0;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
  font-size: .93rem;
  font-weight: 600;
  color: color-mix(in srgb, #EFE9DC 75%, transparent);
  cursor: pointer;
  letter-spacing: .01em;
}
.price-how-btn:hover { color: var(--ochre); }
.price-how-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .45s var(--ease), opacity .35s var(--ease);
}
.price-how-body.open { max-height: 400px; opacity: 1; }
.price-how-body p {
  padding: 18px 0 20px;
  font-size: .95rem;
  color: color-mix(in srgb, #EFE9DC 65%, transparent);
  line-height: 1.72;
  margin: 0;
}
.price-solo-value {
  margin: 24px 0 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: color-mix(in srgb, #EFE9DC 72%, transparent);
  line-height: 1.55;
}
.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}
.tier { height: 100%; box-sizing: border-box; }
@media (max-width: 960px){ .tiers { grid-template-columns: 1fr; } }
.tier {
  border: 1px solid color-mix(in srgb, #EFE9DC 16%, transparent);
  background: color-mix(in srgb, #EFE9DC 4%, transparent);
  padding: clamp(26px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  transition: transform calc(.45s / var(--motion,1)) var(--ease), box-shadow .45s var(--ease), border-color .4s var(--ease);
}
.tier:hover { transform: translateY(calc(-5px * var(--motion,1))); box-shadow: 0 28px 56px -30px rgba(0,0,0,.6); }
.tier .label {
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  letter-spacing: .12em; text-transform: uppercase; color: color-mix(in srgb, #EFE9DC 58%, transparent);
}
.tier.feature { border-color: var(--ochre); border-width: 1.5px; position: relative; }
.tier.feature::after {
  content: "Most popular";
  position: absolute; top: -1px; right: clamp(24px,3vw,40px);
  background: var(--ochre); color: var(--on-ochre);
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .08em;
  padding: 6px 12px;
}
.tier .price {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.2vw, 3.5rem);
  color: #EFE9DC;
  letter-spacing: -0.03em;
  margin: 22px 0 4px;
  line-height: 1;
}
.tier .price-mo {
  font-size: 0.45em;
  letter-spacing: 0;
  font-family: var(--sans);
  font-weight: 500;
  opacity: 0.7;
  vertical-align: baseline;
}
.tier .price-sub {
  color: color-mix(in srgb, #EFE9DC 50%, transparent);
  font-family: var(--sans);
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.tier .blurb { color: color-mix(in srgb, #EFE9DC 72%, transparent); margin-bottom: 24px; }
.tier .plus-intro { color: #EFE9DC; font-weight: 600; margin-bottom: 18px; }
.feats { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.feat { display: flex; gap: 13px; align-items: flex-start; }
.feat::before { content: ""; flex: none; margin-top: .42em; width: 7px; height: 7px; background: var(--ochre); border-radius: 50%; }
.feat-text { color: color-mix(in srgb, #EFE9DC 82%, transparent); font-size: .96rem; line-height: 1.5; }
.feat-inherited { color: color-mix(in srgb, #EFE9DC 38%, transparent); font-size: .96rem; line-height: 1.5; }
.feat.dimmed::before { background: color-mix(in srgb, var(--ochre) 35%, transparent); }
.feat .ft { display: block; }
.feat .ft b { display: block; color: #EFE9DC; font-weight: 600; font-size: 1.02rem; margin-bottom: 3px; }
.feat .ft span { color: color-mix(in srgb, #EFE9DC 58%, transparent); font-size: .94rem; line-height: 1.5; }
.more { display: none; flex-direction: column; gap: 16px; margin: 0 0 8px; }
.more.open { display: flex; }
.more-toggle {
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-weight: 600; font-size: .98rem; color: var(--ochre);
  display: inline-flex; align-items: center; gap: 8px; padding: 0 0 26px; align-self: flex-start;
}
.more-toggle .tg-arrow { transition: transform .35s var(--ease); }
.more-toggle.open .tg-arrow { transform: rotate(90deg); }
.tier .btn { margin-top: auto; justify-content: center; }
.pricing .btn-ghost { border-color: color-mix(in srgb, #EFE9DC 30%, transparent); color: #EFE9DC; }
.pricing .btn-ghost:hover { border-color: var(--ochre); color: var(--ochre); }
.tier-custom {
  margin-top: clamp(24px, 3vw, 40px);
  padding: clamp(16px, 2vw, 24px) clamp(18px, 2.5vw, 32px);
  border-top: 1px solid color-mix(in srgb, #EFE9DC 12%, transparent);
}
.tier-custom-head {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: color-mix(in srgb, #EFE9DC 45%, transparent);
  display: block;
  margin-bottom: 8px;
}
.tier-custom-body {
  font-size: .9rem;
  color: color-mix(in srgb, #EFE9DC 45%, transparent);
  line-height: 1.65;
  margin: 0;
  max-width: 80ch;
}
.tier-reassurance {
  margin-top: clamp(28px, 3.5vw, 44px);
  color: color-mix(in srgb, #EFE9DC 50%, transparent);
  font-size: .93rem;
  line-height: 1.65;
  max-width: 72ch;
}

/* ---------- CONTACT FOOTER (deliberate dark band in BOTH modes) ---------- */
.contact { background: #161310; color: #EFE9DC; --ink: #EFE9DC; }
.contact .eyebrow { color: color-mix(in srgb, #EFE9DC 62%, transparent); margin-bottom: 28px; }
.contact h2 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); color: #EFE9DC; margin-bottom: 40px; max-width: 18ch; }
.contact-rows { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 80px); align-items: flex-end; }
.contact .phone {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  color: #EFE9DC;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  position: relative; display: inline-block;
}
.contact .phone::after {
  content:""; position:absolute; left:0; bottom:-6px; height:2px; width:100%;
  background: var(--ochre); transform: scaleX(.0); transform-origin:left;
  transition: transform calc(.5s / var(--motion,1)) var(--ease);
}
.contact .phone:hover::after { transform: scaleX(1); }
.contact .ico-label { display:block; font-family: var(--sans); font-size: 13px; letter-spacing:.12em; text-transform:uppercase; color: color-mix(in srgb,#EFE9DC 58%, transparent); margin-bottom: 12px; }
.contact .email { font-size: clamp(1.1rem, 2vw, 1.5rem); color:#EFE9DC; }
.foot {
  margin-top: clamp(64px, 9vw, 120px);
  padding-top: 28px;
  border-top: 1px solid color-mix(in srgb, #EFE9DC 16%, transparent);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 14px; color: color-mix(in srgb, #EFE9DC 56%, transparent);
}
.foot .brand { font-size: 16px; color:#EFE9DC; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(calc(26px * var(--motion, 1)));
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-media { animation: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; min-height: auto; }
  .who-portrait { overflow: hidden; }
  .who-photo { min-height: 380px; border-radius: 0; object-position: center 20%; }
  .who-portrait::after { border-radius: 0; }
  .who-portrait .stamp { left: auto; right: 20px; bottom: -10px; transform: rotate(-1.5deg); }
  .who-copy { padding: clamp(60px, 9vw, 96px) var(--gutter); }
}

/* ---------- FAQ (neutral break) ---------- */
.faq { background: var(--bg-break); }
.faq-head { margin-bottom: clamp(32px, 4vw, 52px); }
.faq-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.faq-head .eyebrow { margin-bottom: 26px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 28px;
  padding: clamp(22px, 2.6vw, 32px) 0;
  font-family: var(--serif); color: var(--ink);
  font-size: clamp(1.15rem, 1.9vw, 1.55rem); letter-spacing: -0.015em;
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--ochre); }
.faq-q .ind { flex: none; color: var(--ochre); font-size: 1.7rem; line-height: 1; transition: transform .35s var(--ease); font-family: var(--sans); font-weight: 300; }
.faq-item.open .faq-q .ind { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .5s var(--ease), opacity .4s var(--ease); }
.faq-item.open .faq-a { max-height: 1200px; opacity: 1; }
.faq-a-inner { padding: 0 clamp(0px, 4vw, 56px) clamp(24px, 2.8vw, 34px) 0; max-width: 76ch; color: var(--body); font-size: 1.05rem; line-height: 1.62; }
.faq-a-inner p + p { margin-top: 14px; }
.faq-uber { font-style: italic; color: var(--ochre); margin-top: 18px !important; }
.faq-inline-link { color: var(--ochre); text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--ochre) 40%, transparent); text-underline-offset: 3px; transition: text-decoration-color 0.2s; }
.faq-inline-link:hover { text-decoration-color: var(--ochre); }
.tier-profit { color: var(--ochre); font-style: italic; font-weight: 700; }

/* ---------- CONTACT lead form ---------- */
.contact-form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.2vw, 26px) clamp(20px, 2.6vw, 34px);
  max-width: 660px; margin-bottom: clamp(44px, 5vw, 60px);
}
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: color-mix(in srgb, #EFE9DC 55%, transparent); }
.field-req { color: var(--ochre); font-size: 11px; letter-spacing: 0; vertical-align: middle; margin-left: 2px; }
.field input {
  width: 100%; background: transparent; border: 0;
  border-bottom: 1px solid color-mix(in srgb, #EFE9DC 28%, transparent);
  color: #EFE9DC; font-family: var(--sans); font-size: 1.08rem; padding: 12px 2px;
  min-height: 48px;
  transition: border-color .3s var(--ease);
}
.field input::placeholder { color: color-mix(in srgb, #EFE9DC 35%, transparent); }
.field input:focus { outline: none; border-color: var(--ochre); }
.form-foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 6px; }
.form-note { color: color-mix(in srgb, #EFE9DC 62%, transparent); font-size: .98rem; }
.form-confirm {
  display: none;
  grid-column: 1 / -1;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
  border-radius: 10px;
  background:
    linear-gradient(rgba(22,19,16,0.86), rgba(22,19,16,0.86)),
    url("ryan-confirm.webp") center 18% / cover no-repeat;
  overflow: hidden;
}
.confirm-got {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #EFE9DC;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.15;
}
.confirm-text {
  color: color-mix(in srgb, #EFE9DC 72%, transparent);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.65;
  margin: 0 0 20px;
}
.confirm-email {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--ochre);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--ochre) 40%, transparent);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.confirm-email:hover { border-color: var(--ochre); }
.confirm-reset {
  display: block;
  margin-top: 28px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.85rem;
  color: color-mix(in srgb, #EFE9DC 42%, transparent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.confirm-reset:hover { color: color-mix(in srgb, #EFE9DC 72%, transparent); }
.contact-form.sent .field, .contact-form.sent .form-foot { display: none; }
.contact-form.sent .form-confirm { display: block; }
@media (max-width: 600px){ .contact-form { grid-template-columns: 1fr; } }
