/* ============================================================
   BIG ISLAND WEB DESIGN — v3 · "OLD HILO PRESS"
   The letterpress site: warm paper, green-black ink, cinnabar
   seal red. Modern grid, print-shop soul. Hand-written CSS.
   No framework, no build step, no templates.
   ============================================================ */

/* ------------------------------------------------------------
   1 · DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Paper — pulled from the logo artwork */
  --paper:    #F6EDDC;
  --paper-2:  #EFE2CA;
  --card:     #FBF4E4;

  /* Ink — the wordmark's green-black */
  --ink:    #1C2B24;
  --ink-2:  #3E5348;
  --ink-3:  #5A6B5F;

  /* Cinnabar — the seal. Two densities of the same ink. */
  --red:       #BE4433;  /* large display, stamps, rules, borders */
  --red-deep:  #9E3628;  /* buttons + small red text (AA normal) */
  --red-press: #8F3123;  /* hover density */

  /* Old gold — decorative only (stars, dark-band accents) */
  --gold: #C99B3F;

  /* Night — footer + dark bands (a shade below ink) */
  --night:   #121D17;
  --foam:    #F6EDDC;
  --foam-2:  rgba(246, 237, 220, .82);
  --foam-3:  rgba(246, 237, 220, .60);

  /* Lines — press hairlines are confident, not shy */
  --line:      rgba(28, 43, 36, .28);
  --line-soft: rgba(28, 43, 36, .14);
  --line-dark: rgba(246, 237, 220, .22);

  /* Print shadows — hard offsets, like stacked paper */
  --shadow-sm: 2px 2px 0 rgba(28, 43, 36, .10);
  --shadow-md: 3px 3px 0 rgba(28, 43, 36, .14);
  --shadow-lg: 5px 5px 0 rgba(28, 43, 36, .16);

  /* Type — wood type, book serif, typewriter */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Lora", Georgia, "Times New Roman", serif;
  --font-mono: "Courier Prime", "Courier New", monospace;

  --text-xs:   .72rem;
  --text-sm:   .875rem;
  --text-base: clamp(1rem, .97rem + .18vw, 1.1rem);
  --text-lg:   clamp(1.1rem, 1.03rem + .34vw, 1.28rem);
  --text-xl:   clamp(1.22rem, 1.08rem + .7vw, 1.66rem);
  --h3: clamp(1.32rem, 1.16rem + .8vw, 1.8rem);
  --h2: clamp(2.1rem, 1.4rem + 3.1vw, 3.7rem);
  --h1: clamp(2.75rem, 1.7rem + 4.8vw, 5.4rem);

  /* Space */
  --s1: .5rem;  --s2: 1rem;  --s3: 1.5rem;  --s4: 2.5rem;
  --s5: 4rem;   --s6: 6rem;
  --section-pad: clamp(4.25rem, 8vw, 7.5rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --container: 72rem;
  --container-wide: 86rem;

  /* Motion — restrained house easing */
  --eo: cubic-bezier(.22, 1, .36, 1);
  --t-fast: .22s;
  --t-med:  .5s;
  --t-slow: .9s;

  --nav-h: 4.75rem;
  /* Print corners — near-sharp */
  --radius: 3px;
  --radius-lg: 5px;
}

/* ------------------------------------------------------------
   2 · RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: var(--ink-3) var(--paper-2);
}
html.rm { scroll-behavior: auto; }

body {
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  min-height: 100vh;
}

/* Paper grain — one subtle press texture over everything */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 4000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .05;
  mix-blend-mode: multiply;
}

::selection { background: var(--red); color: var(--paper); }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--red-deep); text-decoration: none; }
main a:not(.btn):not(.card-link):not(.tile):hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* Wood-type headings — uppercase, condensed, confident */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: .012em;
  text-transform: uppercase;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: var(--h1); font-weight: 700; }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); line-height: 1.16; }
/* The red word — ink density shift, not italics */
h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: .06em;
  text-decoration-color: rgba(190, 68, 51, .5);
  text-underline-offset: .09em;
}

p { max-width: 62ch; }
strong { font-weight: 600; color: var(--ink); }
.on-dark strong { color: var(--foam); }

/* Accessibility ---------------------------------------------- */
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 5000;
  background: var(--red-deep); color: var(--paper);
  font-family: var(--font-mono); font-weight: 700; font-size: var(--text-sm);
  letter-spacing: .08em; text-transform: uppercase;
  padding: .8rem 1.4rem; border-radius: 0 0 var(--radius) var(--radius);
  transition: top var(--t-fast) var(--eo);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--red-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible, .site-foot :focus-visible, .band-dark :focus-visible {
  outline-color: var(--gold);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------
   3 · UTILITIES & MOTIFS
   ------------------------------------------------------------ */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 2 * var(--gutter), var(--container-wide)); margin-inline: auto; }

/* Typewriter labels */
.mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.mono strong { color: var(--red-deep); font-weight: 700; }
.on-dark .mono { color: var(--foam-3); }
.on-dark .mono strong { color: var(--gold); }

/* The press rule — v3's signature eyebrow: red stamp dot + hairline */
.horizon {
  display: flex; align-items: center; gap: .85rem;
  margin-bottom: var(--s3);
}
.horizon .sun-rise {
  position: relative; flex: none;
  width: 30px; height: 1px;
  background: var(--ink-3);
}
.horizon .sun-rise::before {
  content: "";
  position: absolute; left: 50%; bottom: -3.5px;
  width: 8px; height: 8px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--red);
}
.horizon .rule {
  flex: 0 1 7rem; height: 1px;
  background: var(--line);
}
.on-dark .horizon .sun-rise { background: var(--foam-3); }
.on-dark .horizon .rule { background: var(--line-dark); }

/* Section shells --------------------------------------------- */
.section { position: relative; padding-block: var(--section-pad); }
.section-tint {
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
/* Dark press band — the reverse-plate section */
.section-ink {
  background: var(--ink);
  color: var(--foam-2);
  border-top: 3px double var(--red);
  border-bottom: 3px double var(--red);
}
.section-ink h2, .section-ink h3 { color: var(--foam); }
.section-ink h2 em, .section-ink h3 em { color: var(--gold); text-decoration-color: rgba(201,155,63,.5); }
.section-ink p { color: var(--foam-2); }

/* Masthead-style section head */
.section-head { margin-bottom: clamp(2.25rem, 5vw, 4rem); max-width: 47rem; }
.section-head .lede { margin-top: var(--s3); }
.section-head h2 { padding-top: .35rem; }
.lede { font-size: var(--text-lg); color: var(--ink-2); line-height: 1.62; }
.on-dark .lede { color: var(--foam-2); }

/* Buttons — letterpress blocks, not pills -------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: .95rem;
  letter-spacing: .07em; text-transform: uppercase;
  line-height: 1.1;
  padding: 1rem 1.65rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: transform var(--t-fast) var(--eo), background var(--t-fast) var(--eo),
              color var(--t-fast) var(--eo), box-shadow var(--t-fast) var(--eo),
              border-color var(--t-fast) var(--eo);
}
.btn svg { width: 1em; height: 1em; flex: none; transition: transform var(--t-fast) var(--eo); }
.btn:hover svg { transform: translate(2px, -2px); }

.btn-primary {
  background: var(--red-deep); color: var(--paper);
  border-color: var(--red-deep);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--red-press); transform: translate(-1px, -1px); box-shadow: var(--shadow-lg); }

/* On dark bands: a cream plate button */
.btn-sun { background: var(--paper); color: var(--ink); border-color: var(--paper); box-shadow: 3px 3px 0 rgba(0,0,0,.35); }
.btn-sun:hover { background: #fff; transform: translate(-1px,-1px); box-shadow: 5px 5px 0 rgba(0,0,0,.4); }

.btn-ghost { border: 1.5px solid var(--ink-2); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translate(-1px,-1px); box-shadow: var(--shadow-md); }
.on-dark .btn-ghost { border-color: var(--foam-3); color: var(--foam); }
.on-dark .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn-sm { padding: .62rem 1.1rem; font-size: .8rem; }

/* Arrow text-link */
.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-mono); font-weight: 700; font-size: var(--text-sm);
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--red-deep);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform var(--t-fast) var(--eo); }
.link-arrow:hover svg { transform: translateX(3px); }

/* Chips — small stamped tags */
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--red-deep);
  border: 1.5px solid var(--red);
  font-family: var(--font-mono); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: var(--radius);
}
.chip svg { width: .95em; height: .95em; }

/* Stars — the one gold moment */
.stars { display: inline-flex; gap: .18rem; color: var(--gold); }
.stars svg { width: .95rem; height: .95rem; fill: var(--gold); stroke: #A87F2F; stroke-width: 1; }

/* ------------------------------------------------------------
   4 · MOTION SYSTEM — CSS transitions driven by IO; no libraries
   ------------------------------------------------------------ */
html.anim .reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--eo), transform var(--t-slow) var(--eo);
  transition-delay: var(--d, 0s);
}
html.anim .reveal.in { opacity: 1; transform: none; }
html.rm .reveal, html.no-js .reveal { opacity: 1; transform: none; }

html.anim .draw path.draw-line {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s var(--eo) .15s;
}
html.anim .draw.in path.draw-line { stroke-dashoffset: 0; }

/* ------------------------------------------------------------
   5 · HEADER & NAV — the shop front
   ------------------------------------------------------------ */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  transition: transform var(--t-med) var(--eo), border-color var(--t-fast), box-shadow var(--t-fast);
}
.site-head.is-solid { border-bottom-color: var(--line); box-shadow: 0 3px 0 rgba(28,43,36,.05); }
.site-head.is-hidden { transform: translateY(-100%); }

.head-inner {
  width: min(100% - 2 * var(--gutter), var(--container-wide));
  margin-inline: auto;
  height: 100%;
  display: flex; align-items: center; gap: var(--s4);
}

.brand { display: inline-flex; align-items: center; color: var(--ink); }
.brand-logo { height: 2.8rem; width: auto; flex: none; display: block; }

.head-nav { display: flex; gap: 1.7rem; margin-left: auto; }
.head-nav a {
  font-family: var(--font-mono);
  color: var(--ink-2); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase;
  position: relative; padding-block: .35rem;
}
.head-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--red);
  transition: right var(--t-fast) var(--eo);
}
.head-nav a:hover { color: var(--ink); }
.head-nav a:hover::after, .head-nav a[aria-current="page"]::after { right: 0; }
.head-nav a[aria-current="page"] { color: var(--ink); }

.head-cta { flex: none; }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  position: relative; flex: none;
  margin-right: -8px;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; display: block; position: absolute;
  width: 22px; height: 2px;
  background: var(--ink); left: 11px;
  transition: transform var(--t-fast) var(--eo), opacity var(--t-fast);
}
.nav-burger span { top: 21px; }
.nav-burger span::before { left: 0; top: -7px; }
.nav-burger span::after { left: 0; top: 7px; }
.nav-burger[aria-expanded="true"] span { background: transparent; }
.nav-burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 990;
  background: var(--paper);
  padding-top: calc(var(--nav-h) + 5vh);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-med) var(--eo), visibility 0s linear var(--t-med);
  overflow-y: auto;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.nav-overlay nav { display: flex; flex-direction: column; }
.nav-overlay nav a {
  display: flex; align-items: baseline; gap: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.1rem);
  font-weight: 600; text-transform: uppercase; letter-spacing: .015em;
  color: var(--ink);
  padding: .5rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.nav-overlay nav a .mono { font-size: .8rem; color: var(--red-deep); }
.nav-overlay nav a:hover { color: var(--red-deep); }
.nav-overlay-foot {
  margin-top: var(--s4); padding-bottom: var(--s5);
  display: flex; flex-direction: column; gap: .5rem;
  font-weight: 500;
}

/* ------------------------------------------------------------
   6 · HERO — the masthead
   ------------------------------------------------------------ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(2.75rem, 7vw, 5.25rem));
  padding-bottom: clamp(3rem, 6.5vw, 5.5rem);
  overflow: clip;
}
/* faint plate-edge frame around the whole opening spread */
.hero::before {
  content: ""; position: absolute; z-index: -1;
  inset: calc(var(--nav-h) + 1.1rem) 1.1rem 1.1rem;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: .85rem; margin-bottom: var(--s3); flex-wrap: wrap; }
.hero-eyebrow .mono { color: var(--red-deep); font-weight: 700; }
.hero-eyebrow .rule { width: 3.5rem; height: 1px; background: var(--line); }
.hero h1 { margin-bottom: var(--s3); max-width: 15ch; }
.hero-lede { font-size: var(--text-lg); max-width: 46ch; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: var(--s4); }
.hero-trust {
  display: flex; align-items: center; gap: .7rem; flex-wrap: wrap;
  margin-top: var(--s4);
  font-size: var(--text-sm); color: var(--ink-3);
}
.hero-trust .sep { color: var(--line); }

/* The plate — art in a printed frame, seal stamped on the corner */
.hero-visual { position: relative; }
.hero-visual .frame {
  position: relative;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 6px 6px 0 rgba(28,43,36,.12);
  background: var(--paper-2);
}
.hero-visual .frame img { width: 100%; aspect-ratio: 16 / 11.6; object-fit: cover; }
.hero-seal {
  position: absolute; right: -1.7rem; top: -1.9rem; z-index: 2;
  width: clamp(4.6rem, 8vw, 6.2rem); height: auto;
  transform: rotate(8deg);
  filter: drop-shadow(1.5px 2px 0 rgba(28,43,36,.18));
  pointer-events: none;
}
.hero-card {
  position: absolute; left: clamp(-1.1rem, -2vw, -1.8rem); bottom: 1.3rem;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: .95rem 1.15rem;
  display: flex; align-items: center; gap: .85rem;
  max-width: min(80%, 21.5rem);
}
.hero-card .pulse {
  width: 10px; height: 10px; border-radius: 50%; flex: none;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(190, 68, 51, .35);
}
html.anim .hero-card .pulse { animation: pulse 2.6s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(190, 68, 51, .35); }
  70% { box-shadow: 0 0 0 11px rgba(190, 68, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(190, 68, 51, 0); }
}
.hero-card p { font-size: var(--text-sm); line-height: 1.45; color: var(--ink-2); }
.hero-card p strong { display: block; color: var(--ink); font-family: var(--font-mono); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }

/* ------------------------------------------------------------
   7 · THE PROBLEM — reverse plate + the phone they never see
   ------------------------------------------------------------ */
.problem-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.problem-copy .lede { margin-bottom: var(--s3); }
.problem-copy p + p { margin-top: var(--s2); }
.problem-flip {
  margin-top: var(--s4);
  border-left: 3px solid var(--red);
  background: rgba(246, 237, 220, .07);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.15rem 1.35rem;
}
.problem-flip .mono { display: block; margin-bottom: .3rem; color: var(--gold); }
.problem-flip p { font-family: var(--font-display); font-size: var(--text-xl); line-height: 1.3; color: var(--foam); font-weight: 500; text-transform: uppercase; letter-spacing: .01em; }

/* The phone — a cream card that pops off the ink */
.phone {
  width: min(21.5rem, 100%);
  margin-inline: auto;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .3);
  padding: 1rem;
  position: relative;
  color: var(--ink-2);
}
.phone-notch { width: 34%; height: 5px; border-radius: 5px; background: var(--paper-2); margin: 0 auto .85rem; }
.phone-search {
  display: flex; align-items: center; gap: .55rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .62rem .95rem;
  font-size: var(--text-sm); color: var(--ink);
  font-weight: 500;
}
.phone-search svg { width: .95rem; height: .95rem; color: var(--ink-3); flex: none; }
.phone-results { display: flex; flex-direction: column; gap: .6rem; margin-top: .85rem; }
.p-result {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: .8rem .9rem;
  background: var(--card);
}
.p-result.is-winner { border: 1.5px solid var(--red); background: var(--paper); box-shadow: var(--shadow-sm); }
.p-result .pr-top { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.p-result .pr-name { font-weight: 600; color: var(--ink); font-size: var(--text-sm); }
.p-result .pr-badge {
  font-family: var(--font-mono); font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--paper); background: var(--red-deep);
  padding: .2rem .5rem; border-radius: var(--radius); white-space: nowrap;
}
.p-result .pr-meta { display: flex; align-items: center; gap: .45rem; margin-top: .3rem; font-size: var(--text-xs); color: var(--ink-3); }
.p-result .pr-meta .stars svg { width: .68rem; height: .68rem; }
.p-result .pr-cta {
  margin-top: .55rem; display: inline-block;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: .66rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: var(--radius);
}
.p-result.is-you { border-style: dashed; background: transparent; }
.p-result.is-you .pr-name { color: var(--ink-3); }
.p-result.is-you .pr-note { font-size: var(--text-xs); color: var(--ink-3); margin-top: .3rem; font-style: italic; }
.phone-caption { text-align: center; margin-top: .9rem; }

/* ------------------------------------------------------------
   8 · GROWTH ROADMAP — 4 numbered print blocks climbing
   ------------------------------------------------------------ */
.levers { position: relative; }
.levers-track {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  align-items: end;
}
.levers-path {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.levers-path svg { width: 100%; height: 100%; }
.lever {
  position: relative; z-index: 1;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem 1.5rem 1.5rem;
  transition: transform var(--t-fast) var(--eo), box-shadow var(--t-fast) var(--eo);
}
.lever:hover { transform: translate(-2px, -4px); box-shadow: var(--shadow-lg); }
.lever .lever-no { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.lever .lever-no .mono strong {
  color: var(--red-deep);
  border: 1.5px solid var(--red);
  border-radius: var(--radius);
  padding: .22rem .5rem;
  display: inline-block;
  transform: rotate(-2deg);
}
.lever-icon {
  width: 2.9rem; height: 2.9rem; border-radius: var(--radius); flex: none;
  display: grid; place-items: center;
  background: var(--paper-2); color: var(--red-deep);
  border: 1px solid var(--line);
  margin-bottom: 1.05rem;
}
.lever-icon svg { width: 1.45rem; height: 1.45rem; }
.lever h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.lever p { font-size: var(--text-sm); line-height: 1.6; }
.lever .lever-money {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-size: var(--text-sm); color: var(--ink);
  display: flex; gap: .55rem; align-items: flex-start;
  font-style: italic;
}
.lever .lever-money svg { width: 1rem; height: 1rem; flex: none; margin-top: .18rem; color: var(--red-deep); }
@media (min-width: 1024px) {
  .lever:nth-child(2) { transform: translateY(-1.6rem); }
  .lever:nth-child(3) { transform: translateY(-3.2rem); }
  .lever:nth-child(4) { transform: translateY(-4.8rem); }
  .lever:nth-child(2):hover { transform: translate(-2px, calc(-1.6rem - 4px)); }
  .lever:nth-child(3):hover { transform: translate(-2px, calc(-3.2rem - 4px)); }
  .lever:nth-child(4):hover { transform: translate(-2px, calc(-4.8rem - 4px)); }
  .levers { padding-top: 4.8rem; }
}

/* ------------------------------------------------------------
   9 · PROOF — catalog plates with the real numbers
   ------------------------------------------------------------ */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.story {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-fast) var(--eo), box-shadow var(--t-fast) var(--eo);
}
.story:hover { transform: translate(-2px, -4px); box-shadow: var(--shadow-lg); }
.story-shot { position: relative; aspect-ratio: 16 / 9.4; overflow: hidden; background: var(--paper-2); border-bottom: 1.5px solid var(--ink); }
.story-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .8s var(--eo); }
.story:hover .story-shot img { transform: scale(1.025); }
.story-shot .shot-tag {
  position: absolute; left: .9rem; bottom: .9rem;
  background: var(--ink); color: var(--foam);
  font-family: var(--font-mono); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .38rem .7rem; border-radius: var(--radius);
}
.story-body { padding: 1.6rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 1.1rem; flex: 1; }
.story-body h3 { font-size: 1.4rem; }
.story-kicker { display: flex; align-items: center; gap: .6rem; }
.story-stats { display: flex; flex-direction: column; gap: .85rem; }
.story-stat { display: flex; gap: .85rem; align-items: flex-start; }
.story-stat .stat-mark {
  width: 2rem; height: 2rem; border-radius: var(--radius); flex: none;
  display: grid; place-items: center;
  background: transparent; color: var(--red-deep);
  border: 1.5px solid var(--red);
}
.story-stat .stat-mark svg { width: 1.05rem; height: 1.05rem; }
.story-stat p { font-size: var(--text-sm); line-height: 1.5; }
.story-stat p strong { display: block; font-size: 1rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-weight: 600; }
.story-quote {
  border-left: 3px solid var(--red);
  padding: .35rem 0 .35rem 1.05rem;
  font-family: var(--font-body); font-style: italic;
  font-size: var(--text-xl);
  font-weight: 500; line-height: 1.35; color: var(--ink);
}
.story-quote-src { margin-top: .55rem; }
.story-foot { margin-top: auto; padding-top: .4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.proof-note { margin-top: 1.4rem; text-align: center; }
.proof-note .mono { font-size: .66rem; }

.spark { color: var(--red); }
.spark svg { width: 100%; height: 2.4rem; }

/* ------------------------------------------------------------
   10 · ROI — the ticket
   ------------------------------------------------------------ */
.roi-wrap {
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.roi-card {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 3.4vw, 2.4rem);
  position: relative;
}
.roi-card::before { /* ticket punch line */
  content: ""; position: absolute; inset: 8px;
  border: 1px dashed var(--line);
  border-radius: 2px;
  pointer-events: none;
}
.roi-tag { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.3rem; position: relative; }
.roi-tag .mono { color: var(--red-deep); font-weight: 700; }
.roi-field { position: relative; }
.roi-field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.roi-field .roi-readout { font-family: var(--font-mono); font-weight: 700; color: var(--red-deep); font-size: 1.05rem; }
.roi-slider { width: 100%; margin: 1rem 0 .4rem; accent-color: var(--red-deep); height: 2rem; position: relative; }
.roi-scale { display: flex; justify-content: space-between; }
.roi-outputs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; position: relative; }
.roi-out {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem;
  background: var(--paper);
}
.roi-out .num {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: var(--red); line-height: 1.05; font-weight: 700;
}
.roi-out .lab { font-size: var(--text-sm); color: var(--ink-2); margin-top: .25rem; line-height: 1.4; }
.roi-fine { margin-top: 1.25rem; font-size: var(--text-xs); color: var(--ink-3); line-height: 1.55; position: relative; }

/* ------------------------------------------------------------
   11 · SERVICES AS OUTCOMES — the four plates
   ------------------------------------------------------------ */
.outcomes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.card-link {
  display: flex; flex-direction: column; gap: .85rem;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.7rem 1.6rem;
  color: var(--ink-2);
  position: relative;
  transition: transform var(--t-fast) var(--eo), box-shadow var(--t-fast) var(--eo), border-color var(--t-fast);
}
.card-link:hover { transform: translate(-2px, -4px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.card-link .outcome-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.card-link .lever-icon { margin-bottom: 0; }
.card-link .go {
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  border: 1.5px solid var(--ink-2);
  display: grid; place-items: center; color: var(--ink);
  transition: background var(--t-fast) var(--eo), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast) var(--eo);
}
.card-link .go svg { width: 1rem; height: 1rem; }
.card-link:hover .go { background: var(--red-deep); border-color: var(--red-deep); color: var(--paper); transform: rotate(45deg); }
.card-link h3 { font-size: 1.4rem; }
.card-link h3 .mono { display: block; margin-bottom: .45rem; color: var(--red-deep); font-weight: 700; }
.card-link p { font-size: var(--text-sm); }
.card-link .outcome-foot { margin-top: .4rem; font-family: var(--font-mono); font-weight: 700; color: var(--red-deep); font-size: var(--text-xs); letter-spacing: .08em; text-transform: uppercase; display: flex; align-items: center; gap: .4rem; }

/* ------------------------------------------------------------
   12 · PROCESS — three stamped steps
   ------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-mono); font-size: .95rem; font-weight: 700; letter-spacing: .1em;
  color: var(--red-deep);
  border: 1.5px solid var(--red);
  border-radius: var(--radius);
  display: inline-block;
  padding: .25rem .6rem;
  transform: rotate(-2deg);
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.28rem; margin-bottom: .55rem; }
.step p { font-size: var(--text-sm); }
.step .step-meta { margin-top: 1rem; }
.reassure {
  margin-top: 2rem;
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.reassure svg { width: 1.5rem; height: 1.5rem; flex: none; color: var(--red-deep); margin-top: .15rem; }
.reassure p { color: var(--ink); }

/* ------------------------------------------------------------
   13 · TESTIMONIALS — pressed index cards
   ------------------------------------------------------------ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px double var(--ink);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.quote-card .stars { margin-bottom: .1rem; }
.quote-card blockquote {
  font-family: var(--font-body); font-style: italic;
  font-size: 1.08rem; line-height: 1.55; font-weight: 400;
  color: var(--ink);
}
.quote-card figcaption { margin-top: auto; display: flex; flex-direction: column; gap: .15rem; }
.quote-card figcaption strong { font-size: var(--text-sm); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; }

/* ------------------------------------------------------------
   14 · PRICE ANCHOR — the $500 stamp
   ------------------------------------------------------------ */
.quote-block {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.9rem, 4.5vw, 3.4rem);
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(1.8rem, 4.5vw, 3.5rem);
  align-items: center;
  position: relative; overflow: hidden;
}
.quote-block::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px;
  background: repeating-linear-gradient(90deg, var(--red) 0 14px, transparent 14px 22px);
}
.price-line { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; margin: 1.2rem 0; }
.price-line .price {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 4.1rem); font-weight: 700;
  color: var(--red);
  border: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: .05em .35em;
  transform: rotate(-3deg);
  display: inline-block;
  line-height: 1.1;
  box-shadow: var(--shadow-sm);
}
.price-line .mono { font-weight: 700; }
.inc-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.inc-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--text-sm); }
.inc-list li svg { width: 1.1rem; height: 1.1rem; flex: none; color: var(--red-deep); margin-top: .16rem; }
.inc-list li strong { color: var(--ink); }

/* ------------------------------------------------------------
   15 · WHERE WE WORK — luggage-tag tiles
   ------------------------------------------------------------ */
.islands { display: flex; flex-wrap: wrap; gap: .75rem; }
.tile {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1.5px solid var(--ink);
  background: var(--card);
  color: var(--ink);
  border-radius: var(--radius);
  padding: .7rem 1.15rem;
  font-family: var(--font-mono); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: .09em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-fast), transform var(--t-fast) var(--eo), box-shadow var(--t-fast) var(--eo), background var(--t-fast);
}
.tile:hover { border-color: var(--red); transform: translate(-1px, -2px); box-shadow: var(--shadow-md); background: var(--paper); }
.tile .sun-dot { width: 8px; height: 8px; flex: none; background: var(--red); transform: rotate(45deg); }

/* ------------------------------------------------------------
   16 · DARK CTA BAND — wayfinding by starlight
   ------------------------------------------------------------ */
.band-dark {
  position: relative;
  background: var(--night);
  color: var(--foam-2);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(2.6rem, 6vw, 4.75rem);
  text-align: center;
  box-shadow: 6px 6px 0 rgba(28,43,36,.14);
}
.band-dark .band-bg {
  position: absolute; inset: 0; z-index: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .9;
  transform: scale(1.04); /* nudge past the print's deckled edge */
}
.band-dark::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 90% at 50% 0%, rgba(18,29,23,.25), rgba(18,29,23,.82) 78%);
}
.band-dark > .band-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.band-dark h2 { color: var(--foam); max-width: 20ch; margin-inline: auto; }
.band-dark .lede { max-width: 44ch; margin-inline: auto; }
.band-dark .horizon { justify-content: center; margin-bottom: 0; }
.band-actions { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; }

/* ------------------------------------------------------------
   17 · FORMS — the intake card
   ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-line { display: flex; align-items: center; gap: .85rem; padding: .8rem 0; border-bottom: 1px solid var(--line-soft); max-width: 100%; }
.contact-line a { font-weight: 600; }
.contact-line .mono { margin-left: auto; text-align: right; }
.svc-icon {
  width: 2.3rem; height: 2.3rem; border-radius: var(--radius); flex: none;
  display: grid; place-items: center;
  background: var(--paper-2); color: var(--red-deep);
  border: 1px solid var(--line);
}
.svc-icon svg { width: 1.15rem; height: 1.15rem; }
.promise {
  margin-top: 1.6rem;
  display: flex; gap: .85rem; align-items: flex-start;
  background: var(--card); border: 1.5px solid var(--ink);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 1.05rem 1.2rem; font-size: var(--text-sm);
}

.form {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-family: var(--font-mono); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink); margin-bottom: .45rem;
}
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: .78rem .95rem;
  min-height: 3rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red-deep);
  box-shadow: 0 0 0 3px rgba(190, 68, 51, .18);
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233E5348' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; background-size: 1rem;
  padding-right: 2.6rem;
}
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: var(--red); }
.field-error { display: block; color: var(--red-deep); font-size: var(--text-sm); margin-top: .35rem; font-style: italic; }
.form-foot { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; margin-top: .4rem; }
.form-status { margin-top: 1rem; font-size: var(--text-sm); color: var(--ink); }
.form-status a { font-weight: 600; }

.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success .svc-icon { width: 3.4rem; height: 3.4rem; margin: 0 auto 1.1rem; border-radius: 50%; border: 1.5px solid var(--red); }
.form-success .svc-icon svg { width: 1.7rem; height: 1.7rem; }
.form-success h3 { margin-bottom: .6rem; }
.form-success h3:focus { outline: none; }
.form-success p { margin-inline: auto; }
.form.is-sent form { display: none; }
.form.is-sent .form-success { display: block; }

/* ------------------------------------------------------------
   18 · FOOTER — the colophon
   ------------------------------------------------------------ */
.site-foot {
  background: var(--night);
  color: var(--foam-2);
  margin-top: var(--section-pad);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  position: relative;
  overflow: clip;
  border-top: 4px double var(--red);
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: 2.6rem;
  border-bottom: 1px solid var(--line-dark);
}
.foot-brand .brand { color: var(--foam); }
.foot-brand p { font-size: var(--text-sm); margin-top: 1.1rem; max-width: 30ch; color: var(--foam-2); }
.foot-col h4 {
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--foam-3); margin-bottom: 1.1rem;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.foot-col a { color: var(--foam-2); font-size: var(--text-sm); }
.foot-col a:hover { color: var(--gold); }
.foot-col li { font-size: var(--text-sm); }
.foot-bottom {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  padding-top: 1.8rem;
  justify-content: space-between;
}
.foot-bottom .mono { color: var(--foam-3); }
.motion-toggle {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--foam-3);
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: .45rem .95rem;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.motion-toggle:hover { color: var(--foam); border-color: var(--foam-3); }
.motion-toggle .dot { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
html.rm .motion-toggle .dot { background: var(--foam-3); }

/* ------------------------------------------------------------
   19 · SUBPAGE MASTHEAD + BREADCRUMBS
   ------------------------------------------------------------ */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
  position: relative;
}
.page-hero h1 {
  max-width: 18ch;
  margin-bottom: var(--s3);
  padding-bottom: .35em;
  border-bottom: 3px double var(--ink);
}
.page-hero .lede { max-width: 52ch; }
.crumbs {
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: var(--text-xs); letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--s3);
}
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--red-deep); }
.crumbs .sep { color: var(--line); }
.crumbs [aria-current="page"] { color: var(--ink-2); font-weight: 700; }

/* ------------------------------------------------------------
   20 · FAQ — the ledger
   ------------------------------------------------------------ */
.faq-list { max-width: 46rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: .8rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  font-weight: 600; color: var(--ink);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-x {
  width: 1.9rem; height: 1.9rem; border-radius: 50%; flex: none;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  transition: transform var(--t-fast) var(--eo), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.faq-item summary .faq-x svg { width: .85rem; height: .85rem; }
.faq-item[open] { border-left-color: var(--red); }
.faq-item[open] summary .faq-x { transform: rotate(45deg); background: var(--red-deep); border-color: var(--red-deep); color: var(--paper); }
.faq-item .faq-a { padding: 0 1.3rem 1.25rem; }
.faq-item .faq-a p + p { margin-top: .7rem; }
.faq-item .faq-a { font-size: var(--text-sm); line-height: 1.65; }

/* ------------------------------------------------------------
   21 · PORTFOLIO — catalog plates
   ------------------------------------------------------------ */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.work-card {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  color: var(--ink-2);
  display: flex; flex-direction: column;
  transition: transform var(--t-fast) var(--eo), box-shadow var(--t-fast) var(--eo);
}
.work-card:hover { transform: translate(-2px, -4px); box-shadow: var(--shadow-lg); }
.work-shot { aspect-ratio: 16 / 9.6; overflow: hidden; background: var(--paper-2); position: relative; border-bottom: 1.5px solid var(--ink); }
.work-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .8s var(--eo); }
.work-card:hover .work-shot img { transform: scale(1.03); }
.work-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.work-body h3 { font-size: 1.3rem; display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.work-body p { font-size: var(--text-sm); }
.work-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: auto; padding-top: .6rem; }
.work-meta .tag {
  font-family: var(--font-mono); font-weight: 700; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: .28rem .6rem; color: var(--ink-3);
}
.work-outcome { display: flex; gap: .55rem; align-items: flex-start; font-size: var(--text-sm); color: var(--ink); }
.work-outcome svg { width: 1rem; height: 1rem; flex: none; color: var(--red-deep); margin-top: .18rem; }

/* ------------------------------------------------------------
   22 · CONTENT / SERVICE PAGES
   ------------------------------------------------------------ */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split .frame { border: 1.5px solid var(--ink); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 6px 6px 0 rgba(28,43,36,.12); }
.split .frame img { width: 100%; object-fit: cover; }

.check-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2.5rem; max-width: 52rem; }
.check-cols .inc-list { gap: .85rem; }

.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.mini-card {
  background: var(--card); border: 1px solid var(--line);
  border-top: 3px double var(--ink);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 1.35rem 1.3rem;
}
.mini-card .svc-icon { margin-bottom: .9rem; }
.mini-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.mini-card p { font-size: var(--text-sm); }

.prose { max-width: 46rem; }
.prose h2 { font-size: var(--text-xl); margin: 2.2rem 0 .8rem; }
.prose p + p { margin-top: 1rem; }
.prose ul { margin: 1rem 0 1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; }

.band { position: relative; border: 1.5px solid var(--ink); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 6px 6px 0 rgba(28,43,36,.12); }
.band img { width: 100%; aspect-ratio: 21 / 7.5; object-fit: cover; }
.band .band-tag {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  background: var(--ink); color: var(--foam);
  padding: .45rem .85rem; border-radius: var(--radius);
  font-size: .62rem; font-weight: 700;
}

.care-price {
  display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap;
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  margin: 1.4rem 0;
  box-shadow: var(--shadow-sm);
}
.care-price .price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--red-deep); }

/* ------------------------------------------------------------
   23 · 404 — lost at sea
   ------------------------------------------------------------ */
.err-wrap { min-height: 72vh; display: grid; place-items: center; text-align: center; padding-top: var(--nav-h); }
.err-wrap .mono { display: block; margin-bottom: 1rem; color: var(--red-deep); font-weight: 700; }
.err-wrap h1 { margin-bottom: 1rem; }
.err-wrap p { margin-inline: auto; margin-bottom: 1.8rem; }
.err-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ------------------------------------------------------------
   24 · RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1023px) {
  .head-nav { display: none; }
  .nav-burger { display: block; }
  .levers-track { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .levers-path { display: none; }
  .quotes { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .mini-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 899px) {
  .hero-grid, .problem-grid, .roi-wrap, .split, .contact-grid, .quote-block { grid-template-columns: 1fr; }
  .hero h1 { max-width: 16ch; }
  .hero-visual { order: -1; }
  .hero-visual .frame img { aspect-ratio: 16 / 9.5; }
  .hero-seal { right: -.4rem; top: -1.3rem; width: 4.4rem; }
  .hero-card { left: .9rem; bottom: .9rem; }
  .hero::before { display: none; }
  .problem-grid .phone { margin-top: .5rem; }
  .proof-grid, .outcomes, .work-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .split .frame { order: -1; }
  .check-cols { grid-template-columns: 1fr; }
}

@media (max-width: 719px) {
  .head-cta { display: none; }
}

@media (max-width: 560px) {
  .levers-track { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .roi-outputs { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn, .band-actions .btn, .err-actions .btn { width: 100%; }
  .form-foot .btn { width: 100%; }
  .contact-line { flex-wrap: wrap; }
  .contact-line .mono { margin-left: 3.15rem; width: 100%; text-align: left; }
}

@media (max-width: 768px) {
  .field input, .field select, .field textarea { min-height: 3rem; }
  .head-nav a, .foot-col a { padding-block: .25rem; }
}

/* ------------------------------------------------------------
   24.5 · STEPPER FORM — one question per card
   Without JS every step is visible and the form submits natively.
   ------------------------------------------------------------ */
.stepper-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.stepper-head .mono { font-weight: 700; color: var(--red-deep); }
.stepper-bar {
  flex: 1; height: 5px;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  overflow: hidden;
}
.stepper-bar span {
  display: block; height: 100%; width: 25%;
  background: var(--red);
  transition: width var(--t-med) var(--eo);
}
html.no-js .stepper-head { display: none; }

.stepper fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.stepper legend { padding: 0; display: block; width: 100%; }

.fstep-q {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 600; color: var(--ink);
  line-height: 1.3;
  margin-bottom: .4rem;
}
.fstep-hint { font-size: var(--text-sm); color: var(--ink-3); margin-bottom: 1.1rem; font-style: italic; }

html.js .stepper .fstep { display: none; }
html.js .stepper .fstep.is-active { display: block; }
html.anim .stepper .fstep.is-active { animation: stepIn .38s var(--eo); }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: none; }
}
html.no-js .stepper .fstep { display: block; margin-bottom: 1.6rem; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.choice .choice-card {
  display: flex; align-items: center; gap: .65rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: .85rem 1rem;
  font-weight: 500; font-size: var(--text-sm); color: var(--ink);
  min-height: 3.4rem;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast) var(--eo), box-shadow var(--t-fast);
}
.choice:hover .choice-card { border-color: var(--red); transform: translate(-1px, -2px); box-shadow: var(--shadow-sm); }
.choice .tick-dot { /* the ballot box */
  width: 1.15rem; height: 1.15rem; border-radius: 2px; flex: none;
  border: 1.5px solid var(--ink-3);
  display: grid; place-items: center;
  color: transparent;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.choice .tick-dot svg { width: .7rem; height: .7rem; }
.choice input:checked + .choice-card { border-color: var(--red-deep); background: var(--card); box-shadow: var(--shadow-sm); }
.choice input:checked + .choice-card .tick-dot { background: var(--red-deep); border-color: var(--red-deep); color: var(--paper); }
.choice input:focus-visible + .choice-card { outline: 2px solid var(--red-deep); outline-offset: 3px; }

.stepper-nav { display: flex; align-items: center; gap: .9rem; margin-top: 1.4rem; flex-wrap: wrap; }
.f-back {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-3);
  padding: .5rem .2rem;
}
.f-back:hover { color: var(--ink); }
.f-back svg { width: .95em; height: .95em; }
html.no-js .f-back, html.no-js .f-next { display: none; }
.stepper-nav .mono { margin-left: auto; }
.f-enter-hint { display: none; }
@media (min-width: 900px) { .f-enter-hint { display: inline; } }
@media (max-width: 560px) { .choice-grid { grid-template-columns: 1fr; } }

[data-rotate] { transition: opacity .28s var(--eo); }
[data-rotate].is-out { opacity: 0; }

/* ------------------------------------------------------------
   25 · REDUCED MOTION — hard fallback for everything
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
html.rm *, html.rm *::before, html.rm *::after {
  animation-duration: .001s !important;
  animation-iteration-count: 1 !important;
  transition-duration: .001s !important;
}
html.rm .reveal { opacity: 1 !important; transform: none !important; }
html.rm .draw path.draw-line { stroke-dashoffset: 0 !important; }
