/* ==========================================================================
   SPEARHEAD MARKETING — OPTION B · "BROADSHEET"
   Bold editorial print-shop system. Warm paper, hard ink borders, offset
   shadows, marquees, stickers, huge grotesque type.
   Fonts: Archivo (display + body) · Fraunces italic (accent words)
   No frameworks. No third-party JS. Vanilla everything.
   ========================================================================== */

:root {
  --paper: #fbf6ec;
  --paper-deep: #f3ecdc;
  --card: #fffdf7;
  --ink: #1c2447;
  --navy: #242f5d;
  --flame: #f25a1b;
  --marigold: #f99f0a;
  --brick: #c81c29;
  --cream: #fbf6ec;
  --muted: #565e7e;
  --line: rgba(28, 36, 71, 0.16);

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-accent: "Fraunces", "Iowan Old Style", Georgia, serif;

  --text-hero: clamp(2.75rem, 1.4rem + 6vw, 6.25rem);
  --text-h2: clamp(2rem, 1.2rem + 3.2vw, 3.6rem);
  --text-h3: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  --text-lede: clamp(1.075rem, 1rem + 0.45vw, 1.3rem);

  --space-section: clamp(4.5rem, 3rem + 6vw, 8.5rem);
  --container: 1220px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-ink: 8px 8px 0 var(--ink);
  --shadow-ink-sm: 5px 5px 0 var(--ink);
}

/* ---------- Base ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

::selection { background: var(--flame); color: var(--cream); }

:focus-visible {
  outline: 3px solid var(--flame);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: var(--space-section); }
.section--deep { background: var(--paper-deep); border-block: 2px solid var(--ink); }

.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 550;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.3rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "✦";
  color: var(--flame);
  font-size: 0.9em;
}

.eyebrow--bare::before { content: none; }

.lede {
  font-size: var(--text-lede);
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 300;
  padding: 0.7rem 1.1rem;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--cream);
}

.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border: 2px solid var(--ink);
  background: var(--flame);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-ink-sm);
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), background 0.18s;
}

.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.btn--ink { background: var(--ink); color: var(--cream); box-shadow: 5px 5px 0 var(--flame); }
.btn--ink:hover { box-shadow: 7px 7px 0 var(--flame); }
.btn--ink:active { box-shadow: 1px 1px 0 var(--flame); }

.btn--ghost { background: transparent; }

.btn--big { padding: 1.15rem 2.2rem; font-size: 1.1rem; }

.btn .arrow { transition: transform 0.18s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--flame);
  padding-bottom: 0.15rem;
}

.arrow-link span { transition: transform 0.18s var(--ease-out); }
.arrow-link:hover span { transform: translateX(4px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  transition: box-shadow 0.25s;
}

.site-header.is-stuck { box-shadow: 0 6px 0 rgba(28, 36, 71, 0.08); }

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.8rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-logo { width: 54px; }

.brand-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-word small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--flame);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.primary-nav > a {
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  position: relative;
}

.primary-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: var(--flame);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}

.primary-nav > a:not(.btn):hover::after,
.primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }

.primary-nav .btn { padding: 0.65rem 1.2rem; font-size: 0.92rem; box-shadow: 4px 4px 0 var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 2px solid var(--ink);
  background: var(--card);
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
  z-index: 160; /* stays tappable above the open mobile menu */
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.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;
}

/* ---------- Hero ---------- */

.hero { position: relative; overflow: clip; padding-block: clamp(3.5rem, 2rem + 5vw, 7rem) 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  padding-bottom: clamp(3.5rem, 2rem + 5vw, 6.5rem);
}

.hero h1 {
  font-size: var(--text-hero);
  margin-bottom: 0.4em;
}

.hero h1 .accent { color: var(--brick); }

.underline-wrap { position: relative; display: inline-block; white-space: nowrap; }

.underline-wrap .scribble {
  position: absolute;
  left: -2%;
  bottom: -0.22em;
  width: 104%;
  height: 0.28em;
  overflow: visible;
}

.underline-wrap .scribble path {
  fill: none;
  stroke: var(--flame);
  stroke-width: 7;
  stroke-linecap: round;
}

.js .underline-wrap .scribble path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1s var(--ease-out) 0.55s;
}

.js .underline-wrap.is-in .scribble path { stroke-dashoffset: 0; }

.hero .lede { margin-bottom: 1.9rem; }

.button-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.sticker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2.3rem 0 0;
  padding: 0;
  list-style: none;
}

.sticker {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border: 2px solid var(--ink);
  background: var(--card);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.sticker strong { color: var(--brick); }
.sticker:nth-child(1) { transform: rotate(-2deg); background: var(--marigold); }
.sticker:nth-child(2) { transform: rotate(1.4deg); }
.sticker:nth-child(3) { transform: rotate(-1deg); background: var(--card); }

/* Hero art */

.hero-art { position: relative; display: grid; place-items: center; }

.hero-card {
  position: relative;
  width: min(400px, 88%);
  padding: clamp(1.6rem, 3vw, 2.8rem);
  background: var(--card);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-ink);
  transform: rotate(1.6deg);
}

.hero-card img { width: 100%; }

.hero-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed rgba(28, 36, 71, 0.25);
  pointer-events: none;
}

.badge-spin {
  position: absolute;
  top: -46px;
  right: max(-10px, 2%);
  width: 132px;
  height: 132px;
  z-index: 3;
  filter: drop-shadow(4px 4px 0 rgba(28, 36, 71, 0.9));
}

.badge-spin svg { width: 100%; height: 100%; }
.js .badge-spin svg { animation: spin 26s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

.badge-spin .badge-bg { fill: var(--flame); stroke: var(--ink); stroke-width: 4; }
.badge-spin text {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  fill: var(--cream);
  text-transform: uppercase;
}
.badge-spin .badge-core { fill: var(--cream); stroke: var(--ink); stroke-width: 3.5; }

.hero-scrawl {
  position: absolute;
  bottom: -26px;
  left: max(-14px, 1%);
  transform: rotate(-4deg);
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--flame);
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  z-index: 3;
}

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--flame);
  color: var(--cream);
  user-select: none;
}

.marquee--ink { background: var(--ink); }
.marquee--paper { background: var(--paper-deep); color: var(--ink); }

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
}

.js .marquee-track { animation: marquee var(--marquee-speed, 26s) linear infinite; }

.marquee-chunk {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding: 0.85rem 1.1rem 0.85rem 2.2rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 0.9rem + 0.7vw, 1.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-chunk .star { color: var(--marigold); }
.marquee--ink .marquee-chunk .star { color: var(--flame); }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Trades wall ---------- */

.trades-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.6rem;
}

.trades-head h2 { font-size: var(--text-h2); margin: 0; max-width: 16ch; }

.trade-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trade-cloud li {
  padding: 0.7rem 1.25rem;
  border: 2px solid var(--ink);
  background: var(--card);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.2rem);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.16s var(--ease-out), background 0.16s;
}

.trade-cloud li:hover { transform: translate(-2px, -2px) rotate(-0.8deg); background: var(--marigold); }

.trade-cloud li.is-you {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 3px 3px 0 var(--flame);
}

/* ---------- Statement / problem ---------- */

.statement { max-width: 980px; }

.statement h2 {
  font-size: var(--text-h2);
  line-height: 1.08;
}

.statement h2 .accent { color: var(--flame); }

.statement .lede { max-width: 62ch; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.stat-card {
  padding: 1.6rem 1.5rem 1.4rem;
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: 6px 6px 0 var(--ink);
}

.stat-card .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 2rem + 2.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brick);
}

.stat-card .num sup { font-size: 0.45em; top: -0.85em; }

.stat-card p { margin: 0.55rem 0 0; font-weight: 600; font-size: 0.98rem; line-height: 1.45; }

.stat-src {
  margin-top: 1.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- Services ---------- */

.services-head { max-width: 760px; margin-bottom: 3rem; }
.services-head h2 { font-size: var(--text-h2); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.6rem);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  background: var(--card);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-ink);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}

.service-card:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0 var(--ink); }

.service-num {
  position: absolute;
  top: -24px;
  left: 22px;
  padding: 0.35rem 0.85rem;
  background: var(--flame);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  transform: rotate(-2deg);
}

.service-card:nth-child(2) .service-num { background: var(--marigold); transform: rotate(1.5deg); }

.service-card h3 { font-size: var(--text-h3); margin-top: 0.6rem; }

.service-card > p { color: var(--muted); }

.check-list {
  margin: 1.1rem 0 1.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
  font-weight: 600;
  font-size: 0.99rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 1.05em;
  height: 1.05em;
  background: var(--marigold);
  border: 2px solid var(--ink);
}

.check-list li::after {
  content: "✓";
  position: absolute;
  left: 0.16em;
  top: 0.06em;
  font-size: 0.85em;
  font-weight: 900;
  color: var(--ink);
}

.price-plate {
  margin-top: auto;
  padding: 1.1rem 1.3rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1rem;
}

.price-plate strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.3rem);
  letter-spacing: -0.02em;
}

.price-plate span { font-weight: 600; font-size: 0.92rem; color: var(--muted); }

.service-card .arrow-link { margin-top: 1.4rem; }

/* ---------- Process ---------- */

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  display: grid;
  grid-template-columns: minmax(90px, 150px) 1fr 1.2fr;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  padding: 2.2rem 0;
  border-top: 2px solid var(--ink);
}

.process-list li:last-child { border-bottom: 2px solid var(--ink); }

.process-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 2rem + 4vw, 5.5rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2.5px var(--ink);
  letter-spacing: -0.02em;
}

.process-list h3 { font-size: var(--text-h3); margin: 0; }
.process-list h3 small { display: block; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--flame); margin-bottom: 0.5rem; }
.process-list p { margin: 0; color: var(--muted); }

/* ---------- Founder note (dark editorial moment) ---------- */

.founder {
  background: var(--ink);
  color: var(--cream);
  border-block: 2px solid var(--ink);
  position: relative;
  overflow: clip;
}

.founder::before {
  content: "“";
  position: absolute;
  top: -0.28em;
  right: 2%;
  font-family: var(--font-accent);
  font-size: clamp(16rem, 30vw, 30rem);
  line-height: 1;
  color: rgba(242, 90, 27, 0.16);
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.founder-mark {
  width: clamp(120px, 16vw, 190px);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(251, 246, 236, 0.25);
}

.founder blockquote {
  margin: 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 480;
  font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2.3rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 26em;
}

.founder blockquote strong { color: var(--marigold); font-weight: 600; }

.founder figcaption {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.founder figcaption span { color: var(--flame); }

.founder .eyebrow { color: var(--marigold); }

/* ---------- Trust tiles ---------- */

.trust-head { max-width: 720px; margin-bottom: 2.8rem; }
.trust-head h2 { font-size: var(--text-h2); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-grid li {
  padding: 1.5rem 1.4rem;
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: 5px 5px 0 var(--ink);
}

.trust-grid strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
}

.trust-grid span { font-size: 0.93rem; color: var(--muted); line-height: 1.5; display: block; }

.trust-grid li:nth-child(odd) { transform: rotate(-0.5deg); }
.trust-grid li:nth-child(even) { transform: rotate(0.5deg); }

/* ---------- FAQ / accordion ---------- */

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.faq-layout .sticky-col { position: sticky; top: 110px; }
.faq-layout h2 { font-size: var(--text-h2); }

.accordion { display: grid; gap: 1rem; }

.accordion-item {
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: 4px 4px 0 var(--ink);
}

.accordion-item h3 { margin: 0; }

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.3rem;
  background: none;
  border: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}

.accordion-trigger .ind {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  background: var(--marigold);
  font-weight: 900;
  transition: transform 0.25s var(--ease-out), background 0.2s;
}

.accordion-trigger[aria-expanded="true"] .ind { transform: rotate(45deg); background: var(--flame); }

.accordion-panel {
  overflow: hidden;
  height: 0;
  transition: height 0.32s var(--ease-out);
}

html:not(.js) .accordion-panel { height: auto; }

.accordion-panel-inner { padding: 0 1.3rem 1.3rem; color: var(--muted); }
.accordion-panel-inner p { margin-bottom: 0.6em; }
.accordion-panel-inner p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--flame);
  border-block: 2px solid var(--ink);
  color: var(--ink);
  text-align: center;
  position: relative;
  overflow: clip;
}

.cta-band::before,
.cta-band::after {
  content: "→";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 11rem);
  color: rgba(28, 36, 71, 0.14);
  pointer-events: none;
}

.cta-band::before { left: 2%; }
.cta-band::after { right: 2%; }

.cta-band h2 {
  font-size: clamp(2.4rem, 1.5rem + 4.5vw, 5rem);
  margin-bottom: 0.5em;
}

.cta-band h2 .accent { color: var(--cream); }

.cta-band .cta-sub { font-weight: 600; margin: -0.4rem 0 1.8rem; }

.cta-band .btn { background: var(--ink); color: var(--cream); box-shadow: 6px 6px 0 rgba(28, 36, 71, 0.35); }

.cta-mail {
  display: block;
  margin-top: 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: clamp(3.5rem, 6vw, 6rem);
  overflow: clip;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-grid p { color: rgba(251, 246, 236, 0.72); font-size: 0.95rem; max-width: 34ch; }

.footer-brand img { width: 74px; margin-bottom: 1rem; }

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marigold);
  margin-bottom: 1.1rem;
}

.footer-col { display: grid; gap: 0.55rem; align-content: start; }

.footer-col a, .footer-col span {
  color: rgba(251, 246, 236, 0.85);
  text-decoration: none;
  font-size: 0.97rem;
  width: fit-content;
}

.footer-col a:hover { color: var(--flame); text-decoration: underline; text-underline-offset: 3px; }

.footer-mega {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 14vw, 13.5rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 2px rgba(251, 246, 236, 0.22);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  margin: 0 -2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(251, 246, 236, 0.2);
  font-size: 0.87rem;
  color: rgba(251, 246, 236, 0.65);
}

.footer-bottom a { color: inherit; }
.footer-bottom .legal-links { display: flex; gap: 1.4rem; }

/* ---------- Page hero (subpages) ---------- */

.page-hero {
  padding: clamp(3.5rem, 3rem + 4vw, 6.5rem) 0 clamp(2.5rem, 2rem + 3vw, 4.5rem);
  border-bottom: 2px solid var(--ink);
  background:
    radial-gradient(38rem 16rem at 88% -10%, rgba(249, 159, 10, 0.22), transparent),
    var(--paper);
}

.page-hero h1 { font-size: clamp(2.6rem, 1.6rem + 4.6vw, 5.2rem); max-width: 18ch; }
.page-hero h1 .accent { color: var(--brick); }
.page-hero .lede { max-width: 60ch; }

/* ---------- Services detail ---------- */

.svc-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.svc-summary { position: sticky; top: 110px; }

.svc-summary .service-num { position: static; display: inline-block; margin-bottom: 1.2rem; }

.svc-summary h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem); }

.svc-price-card {
  margin-top: 1.6rem;
  padding: 1.5rem 1.6rem;
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: 6px 6px 0 var(--ink);
}

.svc-price-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
}

.svc-price-card .row + .row { border-top: 1.5px dashed var(--line); }

.svc-price-card .row span { font-weight: 600; font-size: 0.95rem; color: var(--muted); }

.svc-price-card .row strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.svc-price-card .btn { width: 100%; margin-top: 1.1rem; }

.svc-note { margin-top: 0.9rem; font-size: 0.85rem; color: var(--muted); }

.svc-body h3 {
  font-size: 1.25rem;
  margin: 2.2rem 0 0.9rem;
  padding-top: 2rem;
  border-top: 2px solid var(--ink);
}

.svc-body h3:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.svc-body p { color: var(--muted); max-width: 62ch; }

.include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.include-grid li {
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  position: relative;
  border: 2px solid var(--ink);
  background: var(--card);
  font-weight: 600;
  font-size: 0.95rem;
}

.include-grid li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 1.05rem;
  width: 0.95em;
  height: 0.95em;
  background: var(--marigold);
  border: 2px solid var(--ink);
}

.include-grid li::after {
  content: "✓";
  position: absolute;
  left: 1.02rem;
  top: 0.78rem;
  font-size: 0.8em;
  font-weight: 900;
}

.not-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.not-list li { position: relative; padding-left: 1.8rem; font-weight: 600; color: var(--muted); }
.not-list li::before { content: "✕"; position: absolute; left: 0; color: var(--brick); font-weight: 900; }

.bundle-band {
  border: 2px solid var(--ink);
  background: var(--marigold);
  box-shadow: var(--shadow-ink);
  padding: clamp(1.8rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.bundle-band h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem); margin: 0 0 0.3em; }
.bundle-band p { margin: 0; font-weight: 600; }

/* ---------- About ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.story-grid h2 { font-size: var(--text-h2); }
.story-grid .lede { max-width: 54ch; }
.story-grid p { color: var(--muted); max-width: 58ch; }

.story-art { position: relative; display: grid; place-items: center; padding: 2rem 0; }

.story-art .hero-card { transform: rotate(-2deg); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-grid li {
  padding: 1.7rem 1.6rem;
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: 5px 5px 0 var(--ink);
}

.values-grid .val-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--flame);
  letter-spacing: 0.1em;
}

.values-grid strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0.4rem 0 0.5rem;
}

.values-grid p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.contact-grid > * { min-width: 0; }

.contact-form {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: var(--shadow-ink);
}

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}

.contact-form .optional { color: var(--muted); font-weight: 600; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.8rem 0.95rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  transition: box-shadow 0.15s, background 0.15s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: 4px 4px 0 var(--marigold);
}

.contact-form textarea { resize: vertical; min-height: 150px; }

.contact-form .field-error input,
.contact-form .field-error select,
.contact-form .field-error textarea { border-color: var(--brick); }

.checkbox-row {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  font-weight: 500 !important;
  font-size: 0.86rem !important;
  color: var(--muted);
  align-items: start;
}

.checkbox-row input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  accent-color: var(--flame);
}

.checkbox-row a { color: var(--ink); font-weight: 700; }

.form-status { font-weight: 700; margin-bottom: 0.8rem; min-height: 1.4em; }
.form-status.is-error { color: var(--brick); }
.form-status.is-ok { color: #1d7a3d; }

.form-note { margin: 1rem 0 0; font-size: 0.82rem; color: var(--muted); }

.contact-rail { display: grid; gap: 1.4rem; }

.info-card {
  padding: 1.5rem 1.6rem;
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: 5px 5px 0 var(--ink);
}

.info-card h2 { font-size: 1.15rem; margin-bottom: 0.8rem; }
.info-card a { font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--flame); }
.info-card p, .info-card span { color: var(--muted); font-size: 0.96rem; }
.info-card a, .info-card span, .footer-col a, .cta-mail { overflow-wrap: anywhere; }

.next-steps { margin: 0.6rem 0 0; padding: 0; list-style: none; counter-reset: ns; }

.next-steps li {
  position: relative;
  counter-increment: ns;
  padding: 0.5rem 0 0.5rem 2.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.next-steps li::before {
  content: counter(ns, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.55rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--flame);
}

/* ---------- Legal ---------- */

.legal-article { max-width: 780px; }

.legal-article h2 {
  font-size: 1.45rem;
  margin: 2.6rem 0 0.8rem;
  padding-top: 2.2rem;
  border-top: 2px solid var(--ink);
}

.legal-article h2:first-of-type { margin-top: 1rem; }
.legal-article h3 { font-size: 1.1rem; margin: 1.6rem 0 0.5rem; }
.legal-article p, .legal-article li { color: var(--muted); }
.legal-article ul { padding-left: 1.3rem; }
.legal-article li { margin-bottom: 0.5rem; }
.legal-article .legal-date { font-weight: 700; color: var(--flame); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; }

.legal-note {
  margin-top: 3rem;
  padding: 1.3rem 1.5rem;
  border: 2px dashed var(--ink);
  background: var(--paper-deep);
  font-size: 0.9rem;
}

/* ---------- 404 ---------- */

.notfound {
  min-height: 62vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding-block: 5rem;
}

.notfound .code {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(6rem, 20vw, 15rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
}

.notfound h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
.notfound p { color: var(--muted); margin-bottom: 2rem; }

/* ---------- Editorial figures (illustration set) ---------- */

.editorial-figure {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

.editorial-figure img {
  width: 100%;
  height: auto;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-ink);
}

.editorial-figure .figure-note {
  margin-top: 1.9rem;
  max-width: 54ch;
  padding-left: 0.95rem;
  border-left: 3px solid var(--flame);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--muted);
}

/* Figure set into a prose column — the home page problem section */
.statement .editorial-figure { margin-block: clamp(2.75rem, 5vw, 4rem) 0; }

/* Figure in its own band directly beneath a page hero */
.editorial-band { padding-block: clamp(2.75rem, 5vw, 4.5rem) 0; }

/* Portrait plate — replaces the rotated logo card in the About story */
.editorial-figure--portrait {
  width: min(420px, 100%);
  max-width: none;
}

/* Full-bleed illustrated rule between the trades wall and the problem section.
   The illustration's paper is colour-matched to --paper, so the strip's own
   padding reads as an extension of the artwork rather than a mount. The
   problem section below supplies the closing rule. */
.trades-banner {
  border-top: 2px solid var(--ink);
  background: var(--paper);
  padding-block: clamp(1.1rem, 2.6vw, 2.4rem);
  overflow: hidden;
}

.trades-banner img { width: 100%; height: auto; }

/* ---------- Reveal system ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
  transition-delay: var(--rd, 0s);
}

.js [data-reveal="left"] { transform: translateX(-26px); }
.js [data-reveal="right"] { transform: translateX(26px); }
.js [data-reveal="pop"] { transform: scale(0.94); }

.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; margin-bottom: 1rem; }
  .hero-card { width: min(340px, 80%); }
  .badge-spin { width: 108px; height: 108px; top: -34px; }
  .stat-row { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-layout .sticky-col { position: static; }
  .svc-detail { grid-template-columns: 1fr; }
  .svc-summary { position: static; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .editorial-figure--portrait { width: min(420px, 86%); }
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 150;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 6.5rem 2rem 2rem;
    background: var(--paper);
    transform: translateY(-102%);
    transition: transform 0.4s var(--ease-out);
    visibility: hidden;
  }

  .primary-nav.is-open { transform: translateY(0); visibility: visible; }

  .primary-nav > a:not(.btn) {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 900;
  }

  .primary-nav .btn { font-size: 1.1rem; padding: 1rem 1.8rem; }

  html:not(.js) .primary-nav {
    position: static;
    transform: none;
    visibility: visible;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 0 1rem;
  }

  .site-header.menu-open { background: var(--paper); }

  .service-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .stat-row { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 70px 1fr; }
  .process-list p { grid-column: 2; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-mark { display: none; }
  .include-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .bundle-band { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .trades-head { flex-direction: column; align-items: flex-start; }

  .editorial-figure img { box-shadow: var(--shadow-ink-sm); }
  .editorial-figure .figure-note { margin-top: 1.35rem; font-size: 0.9rem; }

  /* The tool row is a repeating rhythm, so cropping it horizontally keeps the
     objects legible instead of shrinking them to slivers. */
  .trades-banner img { height: 150px; object-fit: cover; object-position: center; }
}

@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticker-row { gap: 0.6rem; }
  .hero-scrawl { font-size: 0.8rem; }
  .cta-band::before, .cta-band::after { display: none; }
  .trades-banner img { height: 124px; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] { opacity: 1; transform: none; }
  .js .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
  .js .underline-wrap .scribble path { stroke-dashoffset: 0; }
}

/* ==========================================================================
   SEO PASS — July 2026
   Additive only: nothing above this line was modified.
   Covers the footer NAP block, the "serving" geo sections, in-copy link
   treatments, and the image slots reserved for the illustrated editorial set.
   ========================================================================== */

/* ---------- Footer NAP + demoted column headings ---------- */

/* Column headings moved from <h2> to <p class="footer-heading"> for a clean
   document outline; this restores their original appearance over .footer-grid p. */
.footer-grid p.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marigold);
  margin: 0 0 1.1rem;
  max-width: none;
}

.footer-nap {
  font-style: normal;
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.footer-nap strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.97rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.footer-nap span,
.footer-nap a {
  color: rgba(251, 246, 236, 0.85);
  text-decoration: none;
  font-size: 0.97rem;
  width: fit-content;
}

.footer-nap a:hover { color: var(--flame); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- "Serving" geo sections (home + contact) ---------- */

.serving-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.serving-grid h2 { font-size: var(--text-h2); max-width: 16ch; }
.serving-grid h2 .accent { color: var(--flame); }
.serving-grid .lede { max-width: 52ch; }
.serving-grid > div > p { color: var(--muted); max-width: 58ch; }

.serving-chips {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.serving-chips li {
  border: 2px solid var(--ink);
  background: var(--card);
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  font-size: 0.87rem;
  letter-spacing: -0.01em;
  box-shadow: 3px 3px 0 var(--ink);
}

.serving-chips li:nth-child(3n+1) { transform: rotate(-1.2deg); }
.serving-chips li:nth-child(3n+2) { transform: rotate(0.9deg); background: var(--marigold); }
.serving-chips li:nth-child(3n)   { transform: rotate(-0.4deg); }

.serving-chips li.is-wide {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(1.1deg);
  box-shadow: 3px 3px 0 var(--flame);
}

.nap-card {
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: var(--shadow-ink);
  padding: 1.6rem 1.7rem;
  position: sticky;
  top: 110px;
}

.nap-kicker {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--flame);
  margin: 0 0 0.9rem;
}

.nap-address {
  font-style: normal;
  display: grid;
  gap: 0.15rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}

.nap-address strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nap-address span { color: var(--muted); font-weight: 600; font-size: 0.96rem; }

.nap-list { margin: 0 0 1.3rem; display: grid; gap: 0.15rem; }

.nap-list dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
}

.nap-list dt:first-child { margin-top: 0; }

.nap-list dd {
  margin: 0;
  font-weight: 700;
  font-size: 0.97rem;
  overflow-wrap: anywhere;
}

.nap-list dd a { text-decoration: none; border-bottom: 2px solid var(--flame); }
.nap-list dd a:hover { background: var(--marigold); }

.nap-card .btn { width: 100%; }

/* Contact page: address block inside the existing info card */
.info-card .nap-address { border-bottom-width: 1.5px; margin-bottom: 0.8rem; padding-bottom: 0.8rem; }
.info-card .nap-address strong { font-size: 1.02rem; }

/* ---------- In-copy link treatments ---------- */

.problem-links {
  font-weight: 700;
  max-width: 62ch;
  border-left: 4px solid var(--flame);
  padding-left: 1.1rem;
}

.problem-links a,
.bundle-band p a,
.trust-grid span a {
  text-decoration: none;
  border-bottom: 2px solid var(--flame);
  font-weight: 800;
}

.problem-links a:hover,
.bundle-band p a:hover,
.trust-grid span a:hover { background: var(--marigold); }

.trust-grid--pair { grid-template-columns: repeat(2, 1fr); }

.service-card h3 a { text-decoration: none; }
.service-card h3 a:hover { color: var(--flame); }

.hero-nap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.6rem;
  margin-top: 1.9rem;
}

.hero-nap .arrow-link strong { font-weight: 800; }

/* The illustrated editorial image set reserved here in Part 1 now ships for
   real — see "Editorial figures (illustration set)" above, which is the single
   source of truth so nothing here overrides its responsive rules. */

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .serving-grid { grid-template-columns: 1fr; }
  .nap-card { position: static; }
}

@media (max-width: 780px) {
  .trust-grid--pair { grid-template-columns: 1fr; }
}

/* ---------- Contact form: honeypot, busy state, success panel ---------- */

/* Honeypot. Off-screen rather than display:none — bots skip display:none
   fields, but happily fill this one. Hidden from AT and keyboard order. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-status.is-pending { color: var(--muted); }
.form-status a { color: var(--brick); }

.btn[aria-busy="true"],
.btn:disabled {
  opacity: 0.72;
  cursor: progress;
  transform: none;
  box-shadow: var(--shadow-ink-sm);
}

.btn[aria-busy="true"] .arrow {
  animation: btn-pulse 0.9s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50%      { transform: translateX(5px); opacity: 0.45; }
}

.form-success[hidden] { display: none; }

.form-success {
  padding: clamp(1.8rem, 3vw, 3rem);
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: var(--shadow-ink);
  outline: none;
}

.form-success:focus-visible { box-shadow: var(--shadow-ink), 0 0 0 4px var(--marigold); }

.form-success__kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.32rem 0.8rem;
  border: 2px solid var(--ink);
  background: var(--marigold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-success__title {
  font-size: var(--text-h2);
  line-height: 0.98;
  margin: 0 0 1rem;
}

.form-success__title .accent { color: var(--flame); }

.form-success__body {
  font-size: var(--text-lede);
  margin: 0 0 1rem;
  max-width: 46ch;
}

.form-success__meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-success__meta a { color: var(--ink); font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  .btn[aria-busy="true"] .arrow { animation: none; }
}

/* ==========================================================================
   GoHighLevel embedded contact form (contact.html)
   --------------------------------------------------------------------------
   The iframe is framed in the Broadsheet card treatment (2px ink border +
   offset ink shadow) so a third-party widget reads as part of the page.

   NOTE ON HEIGHT: GHL's snippet ships `height:100%`. The parent has no fixed
   height in normal document flow, so that percentage cannot resolve and the
   iframe falls back to the browser's 150px intrinsic default — measured, not
   assumed. A real pixel height is set here instead; form_embed.js overrides it
   inline once the form reports its true height. The value below therefore only
   governs first paint, and the case where that script is blocked.
   ========================================================================== */

.embed-card {
  padding: clamp(0.85rem, 2vw, 1.35rem);
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: var(--shadow-ink);
}

.ghl-embed {
  display: block;
  width: 100%;
  height: 743px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color-scheme: light;
}

.embed-card .form-note { margin-top: 0.9rem; }
.embed-card .form-note a { color: var(--ink); font-weight: 700; }

/* Taller default on narrow screens: stacked fields run longer than 743px,
   so this avoids an inner scrollbar in the moment before the script resizes. */
@media (max-width: 640px) {
  .ghl-embed { height: 980px; }
}
