/*
 * LBK Digital Studio — assets/styles.css
 * Last consolidation: 2026-05-17 (collapsed 6 stacked override passes into single source of truth)
 *
 * Structure:
 *   1. @font-face declarations
 *   2. Design tokens (:root)
 *   3. Base resets & typography
 *   4. Layout primitives
 *   5. Header / nav system
 *   6. Buttons
 *   7. Cards & surfaces
 *   8. Section-specific styles
 *   9. Sticky notes & stickers
 *  10. Hero composition
 *  11. Page-specific (results, how-it-works, services, book)
 *  12. Footer
 *  13. Media queries (consolidated by breakpoint)
 *  14. prefers-reduced-motion
 *
 * Variation D brand: cream/warm-white base, teal lead (#5da5af), orange accent (#d78143),
 * espresso/green/blush/peach support. Locked dark sections: proof-strip, personality, social-connect.
 */

/* ── 1. FONTS ─────────────────────────────────────────────── */
@font-face {
  font-family: "Roca";
  src: url("/assets/fonts/Roca-.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roca";
  src: url("/assets/fonts/Roca-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roca Black Italic";
  src: url("/assets/fonts/Roca-Black.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Brittany";
  src: url("/assets/fonts/BrittanySignature.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── 2. DESIGN TOKENS ────────────────────────────────────── */
:root {
  /* Variation D brand palette */
  --color-teal:     #5da5af;
  --color-teal-deep:#4a8f99;
  --color-teal-deeper:#3d7a83;
  --color-orange:   #d78143;
  --color-espresso: #3a2e29;
  --color-green:    #456a49;
  --color-tan:      #d0bbab;
  --color-peach:    #ffbb9e;
  --color-cream:    #fffbf8;
  --color-blush:    #f0e4da;
  --color-muted:    #8a7060;

  /* Brand alpha values for shadows/borders */
  --teal-rgb:    93 165 175;
  --espresso-rgb: 58 46 41;
  --cream-rgb:   255 251 248;
  --tan-rgb:     208 187 171;
  --green-rgb:   69 106 73;

  /* Typography */
  --font-heading: "Roca", Georgia, serif;
  --font-body: "Open Sans", sans-serif;
  --font-accent: "Brittany", cursive;

  /* Layout */
  --max: 1180px;
  --header-height: 84px;
  --section-pad: clamp(52px, 6vw, 74px);
  --section-pad-compact: clamp(40px, 5vw, 58px);
  --page-hero-pad-top: clamp(48px, 6vw, 78px);
  --page-hero-pad-bottom: clamp(32px, 4.5vw, 50px);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadows (premium soft-layered system, no hard offsets) */
  --shadow-soft:    0 4px 16px rgb(var(--espresso-rgb) / 0.07), 0 1px 4px rgb(var(--espresso-rgb) / 0.04);
  --shadow-md:      0 8px 32px rgb(var(--espresso-rgb) / 0.10), 0 2px 8px rgb(var(--espresso-rgb) / 0.05);
  --shadow-lg:      0 12px 48px rgb(var(--espresso-rgb) / 0.16), 0 4px 16px rgb(var(--espresso-rgb) / 0.08);
  --shadow-teal-soft: 0 4px 16px rgb(var(--teal-rgb) / 0.18), 0 2px 6px rgb(var(--teal-rgb) / 0.10);
  --shadow-teal-md:   0 6px 24px rgb(var(--teal-rgb) / 0.28), 0 2px 8px rgb(var(--teal-rgb) / 0.14);
  --shadow-green-md:  0 6px 24px rgb(var(--green-rgb) / 0.22), 0 2px 8px rgb(var(--green-rgb) / 0.12);

  color-scheme: light;
}
/* ── 3. BASE RESETS & TYPOGRAPHY ─────────────────────────── */
* { box-sizing: border-box; }

html {
  overflow-x: hidden; /* fallback for older browsers */
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--color-cream);
  color: var(--color-espresso);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden; /* fallback for older browsers */
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: visible; }

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

a {
  color: inherit;
  text-decoration: none;
}

main a:not(.button):not(.btn) {
  color: var(--color-teal);
  transition: color 160ms ease, box-shadow 160ms ease;
}

main a:not(.button):not(.btn):hover,
main a:not(.button):not(.btn):focus-visible {
  color: var(--color-orange);
}

main a:not(.button):not(.btn):focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 4px;
  border-radius: 6px;
}

main section {
  position: relative;
  overflow: visible;
}

button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  background-color: var(--color-teal);
  color: var(--color-cream);
  padding: 10px 14px;
  border-radius: 6px;
}
.skip-link:focus { transform: translateY(0); }

/* Headings */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  font-kerning: normal;
  letter-spacing: 0;
  color: var(--color-espresso);
  text-wrap: balance;
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: 6.15rem;
  line-height: 0.9;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.8rem;
  line-height: 0.98;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.16;
  font-weight: 800;
}

p { margin-top: 0; }

/* Eyebrows — single rule, exceptions handled per-section */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--color-teal);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.eyebrow::before {
  content: "";
  width: 22px;
  flex: 0 0 22px;
  height: 2px;
  background-color: var(--color-teal);
}

/* Hero eyebrow gets a slightly longer dash */
.hero .eyebrow::before {
  width: 28px;
  flex: 0 0 28px;
}

/* Hero eyebrow — Brittany script exception (homepage only) */
.hero-copy .eyebrow .eyebrow-script {
  font-family: "Brittany", cursive;
  font-size: 1.65em;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-orange);
  line-height: 0.85;
  display: inline;
  vertical-align: -0.15em;
  margin-left: 3px;
}

/* Brittany accent on hero (hero-accent helper class) */
.hero-accent {
  display: block;
  font-family: "Brittany", cursive;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-orange);
  line-height: 1.1;
  margin: 4px 0 18px -6px;
  pointer-events: none;
}

/* Lede paragraph */
.lede {
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}
/* ── 4. LAYOUT PRIMITIVES ────────────────────────────────── */
.section, .hero, .page-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--section-pad) 0;
}

.section.compact {
  padding: var(--section-pad-compact) 0;
}

/* Full-bleed background bands: .section is width-constrained, paint behind it */
.hero, .section {
  isolation: isolate;
}

.hero::before, .section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background-color: inherit;
  pointer-events: none;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 54px);
}

/* Industries Served section header — center the right descriptor vertically with heading */
section[aria-labelledby="industries-heading"] .section-header {
  align-items: center;
}

section[aria-labelledby="industries-heading"] .section-header > p {
  text-align: left;
  max-width: 38ch;
}

.section-header.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

/* Section-header center descriptor: width constraint only — spacing handled by flex gap */
.section-header.center > p:not(.eyebrow) {
  max-width: 56ch;
  margin-top: 0;
}

/* Section-header center: zero out child margins so flex gap is the only spacing source */
.section-header.center > .eyebrow,
.section-header.center > h2,
.section-header.center > h1 {
  margin-top: 0;
  margin-bottom: 0;
}

.section-header p {
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

/* ── 5. HEADER / NAV SYSTEM ──────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background-color: var(--color-cream);
  border-top: 3px solid var(--color-teal);
  box-shadow: 0 1px 0 rgb(var(--espresso-rgb) / 0.08);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  width: clamp(44px, 4vw, 48px);
  height: clamp(44px, 4vw, 48px);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1.5px solid rgb(var(--teal-rgb) / 0.3);
  border-radius: 50%;
  background-color: rgb(var(--teal-rgb) / 0.08);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-name {
  color: var(--color-espresso);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
}

.brand-wordmark {
  display: block;
  width: clamp(156px, 14vw, 212px);
  height: auto;
}

.brand-line {
  display: none;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

/* Footer tagline (Brittany script) */
.footer-tagline {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--color-teal);
  line-height: 1.2;
  margin-top: 2px;
}

/* Nav links */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
  position: relative;
  padding-left: 28px;
}

.site-nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  width: 1px;
  background-color: rgb(var(--teal-rgb) / 0.35);
}

.site-nav a {
  color: var(--color-espresso);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 8px 14px;
  border-radius: 20px;
  transition: color 0.2s, background-color 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-teal);
  background-color: rgb(var(--teal-rgb) / 0.08);
}

.site-nav a:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 3px;
}

/* Active page: teal outline pill */
.site-nav a.is-active {
  color: var(--color-teal);
  background-color: transparent;
  border: 1.5px solid var(--color-teal);
}

.site-nav a.is-active:hover,
.site-nav a.is-active:focus-visible {
  background-color: rgb(var(--teal-rgb) / 0.08);
}

/* Nav CTA — deeper teal, strongest element in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border: 1.5px solid var(--color-teal-deep);
  border-radius: var(--radius-pill);
  background-color: var(--color-teal-deep);
  color: var(--color-cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background-color: var(--color-teal-deeper);
  border-color: var(--color-teal-deeper);
  transform: translateY(-1px);
}

.nav-cta:active { transform: translateY(0); }

.nav-cta:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 4px;
}

.nav-cta[aria-disabled="true"],
.nav-cta:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--color-teal);
  border-radius: 12px;
  background-color: var(--color-cream);
  color: var(--color-espresso);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.menu-toggle:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 4px;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines { position: relative; }

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before { top: -7px; }
.menu-lines::after  { top: 7px; }

.menu-toggle[aria-expanded="true"] .menu-lines { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines::before { transform: translateY(7px) rotate(90deg); }
.menu-toggle[aria-expanded="true"] .menu-lines::after { opacity: 0; }

/* Nav mosaic strip (5-color tile band beneath nav) */
.nav-mosaic {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 32px));
  height: 10px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  pointer-events: none;
  z-index: 1;
}

.nav-mosaic span {
  border-radius: 3px 3px 0 0;
  flex-shrink: 0;
  display: block;
}

.nm-teal   { background-color: var(--color-teal);   flex: 32; height: 8px;  }
.nm-orange { background-color: var(--color-orange); flex: 18; height: 11px; }
.nm-green  { background-color: var(--color-green);  flex: 22; height: 8px;  }
.nm-blush  { background-color: var(--color-tan);    flex: 12; height: 5px;  }
.nm-peach  { background-color: var(--color-peach);  flex: 8;  height: 11px; }

/* Header wordmark (espresso, not tinted) */
.site-header .brand-wordmark { filter: none; }
/* ── 6. BUTTONS ──────────────────────────────────────────── */
.button, .btn, a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-height: 48px;
  padding: 0 26px;
  border: 1.5px solid var(--color-teal);
  border-radius: var(--radius-pill);
  background-color: var(--color-teal);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgb(var(--teal-rgb) / 0.22);
  cursor: pointer;
  transition: background-color 0.18s, transform 0.12s, box-shadow 0.18s, border-color 0.18s, color 0.18s;
}

.button:hover, a.button:hover,
.button:focus-visible, a.button:focus-visible,
.btn:hover, .btn:focus-visible {
  background-color: var(--color-teal-deep);
  border-color: var(--color-teal-deep);
  color: var(--color-cream);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgb(var(--teal-rgb) / 0.32);
}

.button:active, .btn:active { transform: translateY(0); }

.button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 4px;
}

/* Secondary: teal outline */
.button.secondary, a.button.secondary, .btn--secondary {
  background-color: transparent;
  color: var(--color-teal);
  border: 1.5px solid var(--color-teal);
  box-shadow: none;
}

.button.secondary:hover, a.button.secondary:hover,
.button.secondary:focus-visible, a.button.secondary:focus-visible {
  background-color: rgb(var(--teal-rgb) / 0.07);
  color: var(--color-teal);
  border-color: var(--color-teal);
  transform: translateY(-1px);
}

.button.secondary:active { transform: none; }

/* CTA band buttons: white-fill primary, white-outline secondary */
.cta-band .button:not(.secondary) {
  background-color: var(--color-cream);
  color: var(--color-teal);
  border-color: var(--color-cream);
  box-shadow: 0 2px 8px rgb(var(--espresso-rgb) / 0.12);
}

.cta-band .button:not(.secondary):hover,
.cta-band .button:not(.secondary):focus-visible {
  background-color: var(--color-blush);
  color: var(--color-teal);
  border-color: var(--color-blush);
}

.cta-band .button.secondary {
  background-color: transparent;
  color: var(--color-cream);
  border-color: rgb(var(--cream-rgb) / 0.55);
  box-shadow: none;
}

.cta-band .button.secondary:hover,
.cta-band .button.secondary:focus-visible {
  background-color: rgb(var(--cream-rgb) / 0.1);
  color: var(--color-cream);
  border-color: var(--color-cream);
}

/* Quiet/text-style CTA */
.button.quiet, .text-cta, .inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 3px solid var(--color-teal);
  border-radius: 0;
  background-color: transparent;
  color: var(--color-espresso);
  box-shadow: none;
}

.button.quiet:hover,
.button.quiet:focus-visible,
.text-cta:hover, .inline-cta:hover {
  background-color: transparent;
  color: var(--color-teal);
  box-shadow: inset 0 -0.18em 0 rgb(var(--teal-rgb) / 0.18);
}

/* Submit buttons inherit primary button styling */
button[type="submit"],
input[type="submit"] {
  min-height: 48px;
  border: 1.5px solid var(--color-teal);
  border-radius: var(--radius-pill);
  background-color: var(--color-teal);
  color: var(--color-cream);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgb(var(--teal-rgb) / 0.22);
  transition: background-color 0.18s, transform 0.12s, box-shadow 0.18s;
}

button[type="submit"]:hover,
button[type="submit"]:focus-visible {
  background-color: var(--color-teal-deep);
  border-color: var(--color-teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgb(var(--teal-rgb) / 0.32);
}

button[type="submit"]:active { transform: translateY(0); }

button[type="submit"]:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 4px;
}

.button[aria-disabled="true"],
.button:disabled,
button[type="submit"]:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button.full { width: 100%; }

.btn-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1.5px dashed rgb(var(--cream-rgb) / 0.4);
  border-radius: var(--radius-pill);
  background-color: transparent;
  color: rgb(var(--cream-rgb) / 0.6);
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: not-allowed;
  opacity: 0.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
/* ── 7. CARDS & SURFACES ─────────────────────────────────── */

/* Generic card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Best Fit cards (.card) — teal-tinted border, top gradient, lift on hover */
.card {
  position: relative;
  padding: 28px;
  background-color: var(--color-cream);
  border: 1.5px solid rgb(var(--teal-rgb) / 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgb(var(--espresso-rgb) / 0.09), 0 1px 4px rgb(var(--espresso-rgb) / 0.06);
  overflow: visible;
  transition: box-shadow 0.2s, transform 0.18s, border-color 0.18s;
}

.card:hover {
  border-color: rgb(var(--teal-rgb) / 0.65);
  box-shadow: 0 8px 32px rgb(var(--espresso-rgb) / 0.13), 0 2px 8px rgb(var(--espresso-rgb) / 0.07);
  transform: translateY(-2px);
}

/* Teal top gradient line on each card */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(to right, var(--color-teal), rgb(var(--teal-rgb) / 0));
  border-radius: 2px;
}

.card p {
  color: var(--color-muted);
  margin-bottom: 0;
}

/* Card numbers */
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 26px;
  flex-shrink: 0;
  background-color: var(--color-teal);
  color: var(--color-cream);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgb(var(--teal-rgb) / 0.3);
}

/* Result cards (results page) — same base as .card */
.result-card {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(20px, 3vw, 30px);
  background-color: var(--color-cream);
  border: 1.5px solid rgb(var(--teal-rgb) / 0.22);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s, transform 0.18s;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.result-row {
  display: grid;
  gap: 5px;
  padding-top: 16px;
  border-top: 1px solid var(--color-tan);
}

.result-row span {
  color: var(--color-teal);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Service snapshot cards (homepage Core Support) */
.service-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-snapshot {
  min-height: 285px;
  padding: 28px;
  background-color: var(--color-cream);
  border: 1.5px solid rgb(var(--teal-rgb) / 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s, transform 0.18s;
}

.service-snapshot:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgb(var(--espresso-rgb) / 0.12), 0 2px 8px rgb(var(--espresso-rgb) / 0.06);
}

.service-snapshot h3 { font-size: 1.22rem; }

.service-snapshot p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.service-snapshot.management,
.service-snapshot--featured {
  border: 2px solid var(--color-teal);
  background-color: var(--color-cream);
  box-shadow: 0 6px 24px rgb(var(--teal-rgb) / 0.14), 0 2px 8px rgb(var(--espresso-rgb) / 0.06);
}

.service-snapshot.management .card-number,
.service-snapshot.management p {
  color: var(--color-espresso);
}

.service-snapshot.management p { color: var(--color-muted); }

.service-snapshot.planning,
.service-snapshot.strategy {
  background-color: var(--color-cream);
  border-color: rgb(var(--teal-rgb) / 0.15);
}

/* Service grid (services page) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  padding: clamp(20px, 3vw, 30px);
  background-color: var(--color-cream);
  border: 1.5px solid rgb(var(--teal-rgb) / 0.22);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s, transform 0.18s;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-card.featured {
  border-color: var(--color-teal);
  box-shadow: 0 22px 66px rgb(var(--teal-rgb) / 0.12);
}

.service-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.price {
  color: var(--color-green);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 14ch;
  text-align: right;
}

/* Badge / sticker-tab pill */
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background-color: var(--color-peach);
  color: var(--color-espresso);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-with-sticker-tab {
  padding-top: clamp(30px, 3.5vw, 40px);
}

.sticker-tab {
  position: absolute;
  top: -14px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 3px solid var(--color-cream);
  border-radius: var(--radius-pill);
  background-color: var(--color-green);
  color: var(--color-cream);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 0 5px 0 rgb(var(--espresso-rgb) / 0.16);
  pointer-events: none;
  user-select: none;
}

.sticker-tab--soft {
  background-color: var(--color-peach);
  color: var(--color-espresso);
  transform: rotate(2deg);
}

/* Feature list (services page bullets) */
.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  color: var(--color-espresso);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "";
  flex: 0 0 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 50%;
  background-color: var(--color-teal);
}

/* Step cards (How It Works timeline) */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(270px, 25vw, 350px);
  padding: 28px;
  background-color: var(--color-teal);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: visible;
  transition: box-shadow 0.2s, transform 0.18s;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgb(var(--espresso-rgb) / 0.11), 0 2px 8px rgb(var(--espresso-rgb) / 0.05);
}

.step-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 34px;
  color: var(--color-espresso);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 900;
}

/* Step 01 — teal */
.step-card:first-child {
  background-color: var(--color-teal);
  transform: rotate(-1deg);
  box-shadow: var(--shadow-teal-md);
}

.step-card:first-child::before,
.step-card:first-child h3 { color: var(--color-cream); }
.step-card:first-child p { color: rgb(var(--cream-rgb) / 0.84); }

/* Middle steps — cream with blush border */
.step-card:not(:first-child):not(:last-child) {
  background-color: var(--color-cream);
  border: 1.5px solid #c8b09e;
}

.step-card:not(:first-child):not(:last-child) h3,
.step-card:not(:first-child):not(:last-child) p { color: var(--color-espresso); }

.step-card:nth-child(2) { transform: rotate(1deg); }
.step-card:nth-child(3) { transform: rotate(-0.6deg); }
.step-card:nth-child(4) { transform: rotate(1.2deg); }

/* Step 05 — green */
.step-card:last-child {
  background-color: var(--color-green);
  transform: rotate(-0.4deg);
  box-shadow: var(--shadow-green-md);
}

.step-card:last-child::before,
.step-card:last-child h3 { color: var(--color-cream); }
.step-card:last-child p { color: rgb(var(--cream-rgb) / 0.84); }

/* Problem panel — cream surface with teal left border */
.problem-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(24px, 5vw, 56px);
  background-color: var(--color-blush);
  border: 2px solid var(--color-tan);
  border-left: 5px solid var(--color-teal);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgb(var(--espresso-rgb) / 0.10), 0 2px 8px rgb(var(--espresso-rgb) / 0.05);
  overflow: hidden;
}

.problem-copy {
  position: relative;
  z-index: 2;
}

.problem-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  display: flex;
  align-items: start;
  gap: 12px;
  color: var(--color-espresso);
}

.problem-list li::before {
  content: "";
  flex: 0 0 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background-color: var(--color-teal);
}

/* Beyond-feed-note (homepage Core Support callout) */
.beyond-feed-note {
  background-color: var(--color-espresso);
  color: var(--color-tan);
  border-left: 3px solid var(--color-teal);
  border-radius: 16px;
  padding: 20px 26px;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 20px;
}

/* Metric cards (proof strip — espresso section) */
.metric-card {
  padding: 22px;
  background-color: rgb(var(--cream-rgb) / 0.1);
  border: 1.5px solid rgb(var(--cream-rgb) / 0.3);
  border-radius: 18px;
  color: var(--color-cream);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-teal);
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.metric-card span {
  color: rgb(var(--cream-rgb) / 0.78);
  font-size: 0.95rem;
}

.metric-card--results {
  background-color: var(--color-teal);
  border-color: var(--color-teal);
  box-shadow: 0 4px 16px rgb(var(--teal-rgb) / 0.3);
}

.metric-card--results strong,
.metric-card--results span { color: var(--color-cream); }

/* Client Wins CTA box */
.client-wins-cta {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 36px);
  background-color: var(--color-cream);
  border: 1.5px solid rgb(var(--teal-rgb) / 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.client-wins-cta p {
  margin: 0 auto 18px;
  max-width: 48ch;
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

/* Industry tag chips */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-tag {
  display: inline-block;
  padding: 5px 16px;
  margin: 4px;
  background-color: var(--color-cream);
  color: var(--color-espresso);
  border: 1.5px solid rgb(var(--teal-rgb) / 0.35);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: default;
  transition: background-color 0.15s, border-color 0.15s;
}

.industry-tag:hover {
  background-color: rgb(var(--teal-rgb) / 0.06);
  border-color: var(--color-teal);
}
/* ── 8. SECTION-SPECIFIC ─────────────────────────────────── */

/* Page-base / hero / page-hero — warm white */
.hero, .page-hero { background-color: var(--color-cream); }

/* Real Problem and any "section" not in a more specific class — cream */
.section:not(.compact):not(.personality-section):not(.client-wins-section):not(.workflow-section):not(.final-cta-section):not(.dashboard-section) {
  background-color: var(--color-blush);
}

/* Best Fit, Industries, ".compact" sections (except specific overrides) — warm white */
.section.compact:not(.services-snapshot):not(.social-connect-section):not(.final-cta-section) {
  background-color: var(--color-cream);
}

/* Core Support (services-snapshot) — cream */
.section.services-snapshot { background-color: var(--color-blush); }

/* Client Wins — cream */
.section.client-wins-section { background-color: var(--color-blush); }

/* Workflow / How It Works — warm white */
.section.workflow-section { background-color: var(--color-cream); }

/* Final CTA section (the band inside carries teal) — warm white */
.section.final-cta-section { background-color: var(--color-cream); }

/* Locked dark sections */
.proof-strip {
  position: relative;
  padding: 28px 0;
  background-color: var(--color-espresso);
  color: var(--color-cream);
  overflow: visible;
  isolation: isolate;
}

.proof-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background-color: var(--color-espresso);
}

.proof-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.proof-title {
  display: flex;
  align-items: center;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.15;
}

.personality-section { background-color: var(--color-green); }

.personality-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(48px, 7vw, 76px) clamp(28px, 6vw, 60px) clamp(28px, 6vw, 60px);
  background-color: var(--color-green);
  color: var(--color-cream);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.personality-panel h2 { color: var(--color-cream); }

.personality-panel p {
  max-width: 680px;
  color: rgb(var(--cream-rgb) / 0.78);
}

.founder-note-photo {
  position: relative;
  z-index: 1;
  margin: 0;
  justify-self: end;
  width: min(100%, 350px);
  transform: rotate(1deg);
}

.founder-note-photo > img:not(.brand-sticker) {
  aspect-ratio: 4 / 5;
  width: 100%;
  border: 3px solid rgb(var(--cream-rgb) / 0.28);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 54px rgb(var(--espresso-rgb) / 0.18);
}

.social-connect-section {
  position: relative;
  background-color: var(--color-espresso);
  isolation: isolate;
}

.social-connect-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background-color: var(--color-espresso);
}

.social-connect-card {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: clamp(22px, 5vw, 72px);
  align-items: center;
  padding: 44px 52px;
  background-color: rgb(var(--cream-rgb) / 0.04);
  border: 1.5px solid rgb(var(--tan-rgb) / 0.5);
  border-radius: var(--radius-lg);
}

.social-connect-card h2 {
  max-width: 12ch;
  color: var(--color-cream);
}

.social-connect-card p {
  max-width: 680px;
  color: rgb(var(--cream-rgb) / 0.82);
}

.social-connect-actions {
  display: grid;
  gap: 12px;
  min-width: min(100%, 280px);
}

/* Dashboard sections (how-it-works "team" section — espresso bg) */
.dashboard-section:not(.contact-fit-section) {
  padding-inline: clamp(24px, 4.5vw, 56px);
  padding-block: clamp(36px, 4vw, 46px);
  background-color: var(--color-espresso);
  color: var(--color-cream);
}

.dashboard-section:not(.contact-fit-section) h1,
.dashboard-section:not(.contact-fit-section) h2,
.dashboard-section:not(.contact-fit-section) h3,
.dashboard-section:not(.contact-fit-section) p,
.dashboard-section:not(.contact-fit-section) li { color: var(--color-cream); }

/* Cards inside dark dashboard sections — translucent cream on espresso */
.dashboard-section:not(.contact-fit-section) .card {
  background-color: rgb(var(--cream-rgb) / 0.05);
  border: 1.5px solid rgb(var(--cream-rgb) / 0.18);
  box-shadow: none;
}

.dashboard-section:not(.contact-fit-section) .card:hover {
  border-color: rgb(var(--cream-rgb) / 0.32);
  box-shadow: 0 8px 28px rgb(var(--espresso-rgb) / 0.22);
}

.dashboard-section:not(.contact-fit-section) .card h3,
.dashboard-section:not(.contact-fit-section) .card p {
  color: var(--color-cream);
}

.dashboard-section:not(.contact-fit-section) .card p {
  color: rgb(var(--cream-rgb) / 0.78);
}

.dashboard-section:not(.contact-fit-section) .card::before {
  background: linear-gradient(to right, var(--color-teal), rgb(var(--teal-rgb) / 0));
}

.dashboard-section:not(.contact-fit-section) .section-header {
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.5fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: start;
  margin-bottom: clamp(22px, 2.6vw, 30px);
}

.dashboard-section:not(.contact-fit-section) .section-header h2 {
  max-width: 13.5ch;
  font-size: clamp(3rem, 4.1vw, 4.2rem);
  line-height: 0.98;
}

.dashboard-section:not(.contact-fit-section) .section-header > p {
  justify-self: end;
  max-width: 440px;
  margin-top: clamp(30px, 4vw, 48px);
  color: rgb(var(--cream-rgb) / 0.84);
}

/* Contact "Best fit" section overrides the dashboard treatment */
.contact-fit-section {
  background-color: var(--color-blush);
  color: var(--color-espresso);
}

.contact-fit-section h2,
.contact-fit-section h3,
.contact-fit-section p:not(.eyebrow) { color: var(--color-espresso); }

/* Client wins section adjustments */
.client-wins-section {
  position: relative;
  isolation: isolate;
}

.client-wins-section .section-header {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.68fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  margin-bottom: clamp(26px, 3.5vw, 38px);
}

.client-wins-section .section-header > p {
  justify-self: end;
  max-width: 560px;
  margin-top: clamp(44px, 4vw, 50px);
}

.client-wins-cta {
  margin: 0 auto;
}

/* Workflow section */
.workflow-section {
  padding-bottom: clamp(36px, 4vw, 48px);
}

/* Transformations & client-proof sections (results page) */
.transformations-section,
.client-proof-section {
  position: relative;
  isolation: isolate;
}

.transformations-section::after,
.client-proof-section::after {
  background-color: var(--color-blush);
}

/* ── Eyebrow exceptions per section ──────────────────────── */
.personality-section .eyebrow,
.personality-panel .eyebrow { color: var(--color-peach); }
.personality-section .eyebrow::before,
.personality-panel .eyebrow::before { background-color: var(--color-peach); }

.social-connect-section .eyebrow,
.proof-strip .eyebrow { color: var(--color-tan); }
.social-connect-section .eyebrow::before,
.proof-strip .eyebrow::before { background-color: var(--color-tan); }

.dashboard-section:not(.contact-fit-section) .eyebrow { color: var(--color-cream); }
.dashboard-section:not(.contact-fit-section) .eyebrow::before {
  background-color: rgb(var(--cream-rgb) / 0.45);
}

/* Contact fit section eyebrow returns to teal */
.contact-fit-section .eyebrow { color: var(--color-teal); }
.contact-fit-section .eyebrow::before { background-color: var(--color-teal); }

/* ── CTA bands ───────────────────────────────────────────── */
.cta-band {
  position: relative;
  display: block;
  grid-template-columns: none;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: clamp(28px, 5vw, 56px);
  background-color: var(--color-teal);
  border: 2px solid var(--color-teal);
  border-radius: var(--radius-xl);
  color: var(--color-cream);
  box-shadow: 0 12px 48px rgb(var(--teal-rgb) / 0.22), 0 4px 16px rgb(var(--teal-rgb) / 0.12);
  overflow: visible;
}

.cta-band h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  color: var(--color-cream);
}

.cta-band p {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  color: rgb(var(--cream-rgb) / 0.88);
}

.cta-band-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-band .button-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(20px, 3vw, 28px);
}

.cta-band .eyebrow { color: var(--color-cream); }
.cta-band .eyebrow::before { background-color: var(--color-cream); }

.cta-accent {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-cream);
  line-height: 1;
  margin-bottom: 6px;
  opacity: 0.9;
}

/* Final CTA — same teal band, different layout */
.section.final-cta-section {
  padding-top: clamp(28px, 3.5vw, 38px);
  padding-bottom: clamp(28px, 3.5vw, 38px);
}

.final-cta {
  display: block;
  grid-template-columns: none;
  grid-template-areas: none;
  column-gap: clamp(28px, 5vw, 70px);
  row-gap: clamp(14px, 2vw, 22px);
  align-items: center;
  min-height: 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 56px);
  background-color: var(--color-teal);
  border-color: var(--color-teal);
  box-shadow: 0 24px 66px rgb(var(--teal-rgb) / 0.2);
  overflow: visible;
}

.final-cta-copy {
  grid-area: auto;
  align-self: auto;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.final-cta-copy h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(12px, 2vw, 16px);
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  line-height: 0.98;
}

.final-cta-copy p {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  color: rgb(var(--cream-rgb) / 0.9);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
  font-weight: 700;
  line-height: 1.5;
}

.final-cta-copy .cta-accent {
  margin-left: auto;
  margin-right: auto;
}

.final-cta-actions {
  grid-area: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: auto;
  max-width: 560px;
  margin: clamp(20px, 3vw, 28px) auto 0;
}

.final-cta-actions .button {
  width: auto;
  min-width: 220px;
}
/* ── 9. STICKY NOTES & STICKERS ──────────────────────────── */

.sticky-note {
  position: relative;
  border: 1px solid rgb(var(--espresso-rgb) / 0.2);
  border-radius: 16px;
  background-color: var(--note-bg, var(--color-peach));
  color: var(--color-espresso);
  box-shadow: 0 10px 20px rgb(var(--espresso-rgb) / 0.1);
  transform: rotate(var(--note-rotate, -1deg));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sticky-note:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 0 16px 34px rgb(var(--espresso-rgb) / 0.14);
}

.sticky-note--peach { --note-bg: var(--color-peach); }

/* Hero sticky-note pill: tight fit-content badge */
.sticky-note--thought {
  width: fit-content;
  max-width: 100%;
  min-height: 36px;
  margin: 0 0 16px;
  padding: 7px 18px;
  background-color: var(--color-peach);
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgb(215 129 67 / 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  --note-rotate: -0.35deg;
}

.sticky-note--thought .tagline-phrase {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-espresso);
  letter-spacing: 0.02em;
  display: block;
  white-space: nowrap;
  line-height: 1;
}

@media (max-width: 640px) {
  .sticky-note--thought {
    border-radius: 18px;
  }

  .sticky-note--thought .tagline-phrase {
    white-space: normal;
    line-height: 1.3;
    text-align: left;
  }
}

/* Tip-style sticky note */
.sticky-note--tip {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  --note-bg: var(--color-peach);
  --note-rotate: 1deg;
}

.sticky-note--tip strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.12;
}

.sticky-note--tip p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.sticky-note__label {
  color: var(--color-teal);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Tagline phrase (single static state — no rotation) */
.tagline-phrase {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 1;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

/* Social post cards (homepage Core Support section) */
.social-post {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgb(var(--espresso-rgb) / 0.22);
  border-radius: 24px;
  background-color: var(--color-cream);
  color: var(--color-espresso);
  box-shadow: 0 18px 40px rgb(var(--espresso-rgb) / 0.14);
  transform: rotate(var(--post-rotate, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-post:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 0 22px 48px rgb(var(--espresso-rgb) / 0.16);
}

.social-post--quote {
  aspect-ratio: 1;
  align-content: space-between;
  background-color: var(--color-green);
  color: var(--color-cream);
  border-color: var(--color-green);
  --post-rotate: -1deg;
}

.social-post--tip { --post-rotate: -1.2deg; }

.social-post--promo {
  border-color: var(--color-teal);
  background-color: var(--color-blush);
  --post-rotate: 1.4deg;
}

.social-post__label,
.social-post__footer {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.76;
  text-transform: uppercase;
}

.social-post__label::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 7px;
  margin-right: 8px;
  border-radius: var(--radius-pill);
  background-color: var(--color-orange);
  vertical-align: 2px;
}

.social-post__title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.04;
}

.social-post--tip .social-post__title {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.18;
}

.social-post__list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-post__list li {
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.social-post__list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: var(--color-teal);
  vertical-align: 1px;
}

/* Layered system grid (homepage social-post + sticky-note pair) */
.layered-system {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(210px, 0.72fr);
  gap: 12px;
  align-items: end;
  max-width: 580px;
  margin: -6px auto 30px;
}

.layered-system .social-post { min-height: 210px; }

.layered-system .sticky-note--tip {
  margin-bottom: 14px;
  --note-rotate: 1deg;
}

/* Sticker heading container (decorative wrapper) */
.sticker-heading {
  position: relative;
  width: fit-content;
  max-width: 100%;
  isolation: isolate;
}

/*
 * Decorative stickers — placement system
 *
 * Every sticker MUST:
 *   1. Be inside a content container (.problem-panel, .cta-band, .page-visual-proof,
 *      .card, .hero-visual--founder, etc.) that has `position: relative`
 *   2. Use `position: absolute` (set on base .decorative-sticker rule below)
 *   3. Have both `width` AND `max-width` set to the same clamp() so the rendered size
 *      is capped even if the containing block calculation goes sideways
 *   4. Use corner offset values (top/right/bottom/left) between -30px and +30px
 *      Inside the container = positive values. Bleeding outside the edge = small negatives.
 *   5. Have a rotation between -10deg and +10deg (set via --decorative-sticker-rotation)
 *
 * Color rules (Lindsey's brand preferences):
 *   - peach assets fit warm/blush sections
 *   - brown assets fit cream/blush content cards
 *   - green assets fit cream sections, avoid the personality-section (already green)
 *   - teal assets fit blush content cards
 *
 * If a new sticker container doesn't already have `position: relative`, ADD it
 * to that container's class rule. Without this, the sticker walks up the DOM to
 * the nearest positioned ancestor and renders at the wrong location and (often)
 * wrong size.
 *
 * Decorative stickers — global base
 */
.decorative-sticker {
  position: absolute;
  z-index: 3;
  width: var(--decorative-sticker-size, clamp(50px, 4.5vw, 78px));
  max-width: var(--decorative-sticker-size, clamp(50px, 4.5vw, 78px));
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 0.88;
  filter: drop-shadow(0 12px 16px rgb(var(--espresso-rgb) / 0.12));
  transform: rotate(var(--decorative-sticker-rotation, 0deg));
  transition: opacity 0.2s;
}

/* Hero quote sticker — upper-inner-left of founder card (teal accent on the warm hero) */
.decorative-sticker--hero-quote, .hero-visual--founder > .decorative-sticker--hero-quote {
  top: 28px;
  right: auto;
  bottom: auto;
  left: 18px;
  width: clamp(110px, 10vw, 160px);
  max-width: clamp(110px, 10vw, 160px);
  transform: rotate(-8deg);
  z-index: 3;
  opacity: 0.92;
  filter: drop-shadow(0 10px 14px rgb(var(--espresso-rgb) / 0.14));
}

.decorative-sticker--problem-camera {
  top: 24px;
  right: 40px;
  left: auto;
  bottom: auto;
  --decorative-sticker-size: clamp(54px, 4.5vw, 74px);
  --decorative-sticker-rotation: 6deg;
}

.decorative-sticker--client-review {
  top: 24px;
  right: 40px;
  bottom: auto;
  left: auto;
  --decorative-sticker-size: clamp(54px, 4.5vw, 74px);
  --decorative-sticker-rotation: -4deg;
}

.decorative-sticker--howitworks-quote {
  top: -22px;
  right: -14px;
  bottom: auto;
  left: auto;
  --decorative-sticker-size: clamp(52px, 4.3vw, 70px);
  --decorative-sticker-rotation: 5deg;
}

.decorative-sticker--howitworks-cta-message {
  top: -24px;
  right: 36px;
  bottom: auto;
  left: auto;
  --decorative-sticker-size: clamp(58px, 4.8vw, 80px);
  --decorative-sticker-rotation: 6deg;
}

.decorative-sticker--services-camera {
  top: 14px;
  right: 14px;
  bottom: auto;
  left: auto;
  --decorative-sticker-size: clamp(48px, 4vw, 64px);
  --decorative-sticker-rotation: -4deg;
}

/* Stickers on dark sections: brighter for visibility */
.social-connect-section .decorative-sticker,
.proof-strip .decorative-sticker { opacity: 0.95; }

/* Generic sticker utility positions */
.sticker {
  position: absolute;
  width: 90px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}

.sticker-top-right    { top: -24px;    right: -24px; }
.sticker-top-left     { top: -24px;    left: -24px;  }
.sticker-bottom-right { bottom: -24px; right: -24px; }
.sticker-bottom-left  { bottom: -24px; left: -24px;  }

/* ── 10. HERO COMPOSITION ────────────────────────────────── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  min-height: clamp(640px, calc(100svh - var(--header-height)), 780px);
  padding: clamp(44px, 5vw, 62px) 0 clamp(36px, 4.5vw, 50px);
  isolation: isolate;
}

.hero h1 {
  max-width: 10.9ch;
  font-size: clamp(4.05rem, 5.9vw, 4.8rem);
}

.hero-copy {
  max-width: 710px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.hero-copy > p {
  max-width: 620px;
  color: var(--color-espresso);
  font-size: 1.14rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.hero-action-stack {
  display: grid;
  width: min(100%, 560px);
  margin-top: 22px;
}

.hero .button-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 0;
}

.hero .button {
  width: 100%;
  font-size: clamp(0.84rem, 0.95vw, 0.92rem);
  white-space: nowrap;
}

/* Hero visual — founder card */
.hero-visual {
  position: relative;
  min-width: 0;
  isolation: isolate;
}

.hero-visual--founder {
  justify-self: center;
  width: min(100%, 520px);
  top: -54px;
  position: relative;
}

.hero-founder-card {
  position: relative;
  width: 100%;
  aspect-ratio: 2967 / 3708;
  margin: 0;
  overflow: hidden;
  background-color: var(--color-blush);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgb(var(--espresso-rgb) / 0.16), 0 8px 24px rgb(var(--espresso-rgb) / 0.08);
}

/* Lindsey fills the card */
.hero-founder-card > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* Teal right-edge accent bar — signature touch */
.hero-founder-card::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background-color: var(--color-teal);
  z-index: 2;
}

/* Subtle teal glow at top of card */
.hero-founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, rgb(var(--teal-rgb) / 0.4), transparent);
  z-index: 2;
}
/* ── 11. PAGE-SPECIFIC ───────────────────────────────────── */

/* Page hero (used on inner pages) */
.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  padding: var(--page-hero-pad-top) 0 var(--page-hero-pad-bottom);
  background-color: var(--color-cream);
}

.page-hero h1 { max-width: 13ch; }

.page-hero p {
  color: var(--color-muted);
  font-size: 1.18rem;
}

/* Contact / book page hero photo */
.page-photo {
  position: relative;
  align-self: stretch;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background-color: var(--color-blush);
  border: 2px solid rgb(var(--tan-rgb) / 0.72);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgb(var(--espresso-rgb) / 0.18), 0 8px 24px rgb(var(--espresso-rgb) / 0.10);
}

.page-photo::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background-color: var(--color-teal);
  z-index: 2;
  pointer-events: none;
}

.page-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 15%;
}

.contact-hero-photo img { object-position: center 42%; }

/* Results page: page-visual-proof aside on hero */
.page-visual-proof {
  position: relative;
  align-self: center;
  display: grid;
  gap: 16px;
  padding: clamp(16px, 2vw, 20px);
  background-color: var(--color-blush);
  border: 2px solid rgb(var(--espresso-rgb) / 0.12);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgb(var(--espresso-rgb) / 0.1);
}

.page-visual-proof__header {
  display: grid;
  gap: 6px;
}

.page-visual-proof__header span {
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-visual-proof__header strong {
  max-width: 13ch;
  color: var(--color-espresso);
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  font-weight: 800;
  line-height: 0.98;
  text-wrap: balance;
}

.page-visual-proof__frames {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-visual-proof figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background-color: var(--color-cream);
  border: 2px solid rgb(var(--espresso-rgb) / 0.1);
  border-radius: 18px;
}

.page-visual-proof img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.page-visual-proof figcaption {
  position: absolute;
  left: 8px;
  top: 8px;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background-color: rgb(var(--cream-rgb) / 0.9);
  color: var(--color-teal);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-visual-proof p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Transformation cards (results page) */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.transformation-card {
  display: grid;
  gap: 18px;
  padding: clamp(16px, 2vw, 22px);
  background-color: rgb(var(--cream-rgb) / 0.9);
  border: 2px solid rgb(var(--espresso-rgb) / 0.12);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgb(var(--espresso-rgb) / 0.08);
}

.transformation-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.transformation-pair figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background-color: var(--color-blush);
  border: 2px solid rgb(var(--espresso-rgb) / 0.1);
  border-radius: 18px;
}

.transformation-pair img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.transformation-pair figcaption {
  position: absolute;
  left: 8px;
  top: 8px;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background-color: rgb(var(--cream-rgb) / 0.92);
  color: var(--color-teal);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.transformation-card h3 {
  margin-bottom: -8px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.transformation-card p {
  margin: 0;
  color: var(--color-muted);
}

/* Client proof / review cards (results page) */
.embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.embed-grid--reviews { padding-top: clamp(34px, 4vw, 48px); }

.embed-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  background-color: rgb(var(--cream-rgb) / 0.88);
  border: 2px solid var(--color-tan);
  border-radius: 24px;
}

.embed-card--review {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 14px 14px 22px;
  background-color: rgb(var(--cream-rgb) / 0.88);
}

.review-screenshot {
  display: grid;
  place-items: center;
  min-height: 190px;
  margin: 0;
  padding: 10px;
  background-color: var(--color-blush);
  border: 1px solid rgb(var(--espresso-rgb) / 0.12);
  border-radius: 18px;
  overflow: hidden;
}

.review-screenshot img {
  width: 100%;
  height: 188px;
  object-fit: contain;
  border-radius: 12px;
  filter: saturate(0.96) contrast(1.02);
}

.embed-card--review span,
.embed-card--review h3,
.embed-card--review p { margin-inline: 10px; }

.embed-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--color-teal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.embed-card--review span { margin-bottom: 0; }

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

/* How-it-works specifics */
.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  width: 100%;
  min-width: 0;
}

@media (max-width: 640px) {
  .split-grid {
    padding-inline: clamp(4px, 2vw, 12px);
  }
}

.split-grid .card-grid { grid-template-columns: 1fr; }

.process-photo-section { padding-top: 0; }

.process-photo-card {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--color-blush);
  border: 2px solid rgb(var(--tan-rgb) / 0.76);
  border-radius: 30px;
  box-shadow: 0 18px 54px rgb(var(--espresso-rgb) / 0.09);
}

.process-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 48%;
}

/* Form fields (book page) */
.form-card {
  position: relative;
  padding: clamp(20px, 3vw, 30px);
  background-color: var(--color-cream);
  border: 2px solid rgb(var(--espresso-rgb) / 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.form-card > .button.full {
  width: calc(100% - 40px);
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 540px) {
  .form-card > .button.full {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full { grid-column: 1 / -1; }

.field label,
.field legend {
  color: var(--color-espresso);
  font-size: 0.9rem;
  font-weight: 700;
}

.choice-field {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.field-help {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  background-color: var(--color-cream);
  border: 2px solid rgb(var(--tan-rgb) / 0.82);
  border-radius: 14px;
  color: var(--color-espresso);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgb(var(--teal-rgb) / 0.18);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 5px;
}

@media (max-width: 640px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }
}

.choice-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 56px;
  padding: 12px 13px;
  background-color: var(--color-cream);
  border: 2px solid rgb(var(--tan-rgb) / 0.82);
  border-radius: 14px;
  color: var(--color-espresso);
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.choice-card:hover {
  border-color: var(--color-teal);
  transform: translateY(-1px);
}

.choice-card:focus-within {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgb(var(--teal-rgb) / 0.18);
}

.choice-card:has(input:checked) {
  border-color: var(--color-teal);
  box-shadow: inset 0 0 0 1px var(--color-teal);
}

.choice-card input[type="checkbox"] {
  appearance: auto;
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--color-teal);
  border-radius: 4px;
}

.choice-card span {
  color: var(--color-espresso);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.3;
}

.form-note {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

/* ── 12. FOOTER ──────────────────────────────────────────── */
.site-footer {
  position: relative;
  background-color: var(--color-espresso);
  color: var(--color-cream);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 9px;
  transform: translateX(-50%);
  background-color: var(--color-teal);
  pointer-events: none;
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 0.85fr 0.85fr;
  gap: 32px;
  padding: 46px 0;
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: var(--color-teal);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}

.site-footer .brand-name,
.site-footer .brand-line {
  color: var(--color-cream);
}

.site-footer .footer-tagline {
  color: var(--color-teal);
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

.site-footer .brand-wordmark {
  width: clamp(162px, 16vw, 220px);
}

.site-footer .brand-mark {
  background-color: transparent;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgb(var(--cream-rgb) / 0.16);
}

.footer-grid p,
.footer-grid a {
  color: rgb(var(--cream-rgb) / 0.78);
  font-size: 0.95rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-grid a:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 4px;
  border-radius: 6px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgb(var(--cream-rgb) / 0.16);
  color: rgb(var(--cream-rgb) / 0.7);
  font-size: 0.86rem;
}

.footer-bottom .inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.footer-brand-line {
  color: var(--color-tan);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

/* Reveal animations */
[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Pin Roca face to upright bold (avoid italic Black fallback) */
h1, h2, h3,
.social-post__title,
.metric-card strong,
.page-visual-proof__header strong {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
}
/* ── 13. MEDIA QUERIES ───────────────────────────────────── */

/* Hide mosaic strip below 820px */
@media (max-width: 820px) {
  .nav-mosaic { display: none; }
}

/* Tablet/medium adjustments — 1180px down to 1041px */
@media (max-width: 1180px) and (min-width: 1041px) {
  .hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(330px, 0.7fr);
    gap: 32px;
  }
  .hero h1 {
    max-width: 10.2ch;
    font-size: 4rem;
  }
  .hero-copy > p { max-width: 520px; }
  .hero-action-stack { width: min(100%, 470px); }
  .hero-visual--founder {
    width: min(100%, 470px);
    top: -42px;
  }
}

/* Below 1040px — collapse multi-column layouts, expose mobile menu */
@media (max-width: 1040px) {
  h1 { font-size: 4rem; }
  .hero h1 { font-size: 3.8rem; }
  h2 { font-size: 3.2rem; }

  .hero {
    align-items: start;
    min-height: auto;
    padding-top: 52px;
  }
  .hero-visual--founder { top: -28px; }

  /* Mobile nav drawer */
  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - var(--header-height) - 20px);
    padding: 14px;
    background-color: rgb(var(--cream-rgb) / 0.98);
    border: 2px solid var(--color-tan);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    overflow: auto;
    padding-left: 14px;
  }
  .site-nav::before { display: none; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 14px; }
  .nav-cta { display: none; }
  .menu-toggle { display: grid; }

  .page-hero,
  .section-header,
  .problem-panel,
  .split-grid,
  .personality-panel {
    grid-template-columns: 1fr;
  }

  .dashboard-section:not(.contact-fit-section) .section-header {
    grid-template-columns: 1fr;
    gap: clamp(8px, 2vw, 16px);
  }

  .dashboard-section:not(.contact-fit-section) .section-header > p {
    justify-self: start;
    max-width: 100%;
    margin-top: 0;
  }

  .dashboard-section:not(.contact-fit-section) .section-header h2 {
    max-width: 100%;
  }

  /* Allow eyebrow to wrap on phone so long strings like "FOUNDER-LED, TEAM-SUPPORTED" don't overflow */
  .eyebrow {
    white-space: normal;
    letter-spacing: 0.12em;
  }

  .client-wins-section .section-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .client-wins-section .section-header > p {
    justify-self: start;
    max-width: 660px;
    margin-top: 0;
  }

  .service-snapshot-grid,
  .transformation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-connect-card { grid-template-columns: 1fr; }

  .layered-system { grid-template-columns: 1fr 1fr; }

  .proof-grid { grid-template-columns: 1fr; }

  .proof-title { padding: 8px 0; }

  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Below 820px */
@media (max-width: 820px) {
  :root { --header-height: 72px; }

  .nav-shell,
  .section,
  .hero,
  .page-hero,
  .proof-grid,
  .footer-grid,
  .footer-bottom .inner {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 36px;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
    top: 0;
  }

  .hero-visual--founder {
    width: min(100%, 470px);
    margin-top: 12px;
  }

  .founder-note-photo {
    justify-self: start;
    width: min(100%, 260px);
  }

  h1 { font-size: 3.55rem; }
  .hero h1 { font-size: 3.55rem; }
  h2 { font-size: 2.65rem; }
  h3 { font-size: 1.22rem; }

  .hero-copy > p,
  .page-hero p { font-size: 1.08rem; }

  .metric-card strong { font-size: 1.8rem; }

  .card-grid,
  .service-grid,
  .service-snapshot-grid,
  .layered-system,
  .transformation-grid,
  .embed-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding-bottom: clamp(28px, 5vw, 56px);
  }

  .cta-band .button-row { margin-top: 0; }

  .final-cta {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "actions";
    min-height: 0;
    gap: 24px;
  }

  .final-cta-copy h2 { max-width: 13ch; }

  .final-cta-actions {
    justify-self: start;
    width: min(100%, 400px);
  }

  .form-grid { grid-template-columns: 1fr; }

  .service-snapshot { min-height: 0; }

  /* Card sticker tab becomes inline label */
  .card-with-sticker-tab { padding-top: clamp(20px, 3vw, 30px); }
  .sticker-tab {
    position: static;
    width: fit-content;
    margin-bottom: 12px;
    transform: none;
  }
}

/* Below 680px */
@media (max-width: 680px) {
  .hero-action-stack {
    width: min(100%, 420px);
    margin-inline: auto;
  }
  .hero .button-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Below 560px — smallest mobile */
@media (max-width: 560px) {
  h1 { font-size: 2.62rem; }
  .hero h1 { font-size: 2.62rem; }
  h2 { font-size: 2.25rem; }

  .brand-line { display: none; }

  .hero,
  .page-hero { padding-top: 40px; }

  .hero-copy { max-width: 100%; }

  .hero-copy > p {
    font-size: 1rem;
    line-height: 1.58;
    overflow-wrap: anywhere;
  }

  .hero-visual--founder {
    width: 100%;
    margin-top: 18px;
  }

  .hero-founder-card { aspect-ratio: 0.8; }

  .eyebrow {
    max-width: 100%;
    font-size: 0.66rem;
    line-height: 1.05;
    flex-wrap: nowrap;
  }

  .layered-system { margin-bottom: 24px; }
  .layered-system .social-post {
    min-height: 0;
    aspect-ratio: auto;
  }

  .timeline,
  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom .inner { flex-direction: column; }

  .button-row,
  .cta-band .button-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: clamp(0.92rem, 3.7vw, 1rem);
  }

  .button.secondary { min-height: 54px; }
}

/* Mobile defensive: keep all decorative stickers inside the viewport with sane sizes */
@media (max-width: 640px) {
  /* Client Wins panel containment (Batch 5) */
  .client-wins-section .problem-panel {
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Hero coffee sticker — tuck inside Lindsey's photo card */
  .decorative-sticker--hero-quote {
    top: 12px;
    left: 10px;
    width: clamp(64px, 18vw, 92px);
    max-width: clamp(64px, 18vw, 92px);
  }

  /* Real Problem camera sticker — pull in from right edge, scale down */
  .decorative-sticker--problem-camera {
    top: 12px;
    right: max(8px, 2vw);
    --decorative-sticker-size: clamp(44px, 13vw, 64px);
  }

  /* Client Wins review-stars sticker */
  .decorative-sticker--client-review {
    top: 12px;
    right: max(8px, 2vw);
    --decorative-sticker-size: clamp(48px, 14vw, 72px);
  }

  /* How It Works quote sticker — pull bleed inside container */
  .decorative-sticker--howitworks-quote {
    top: 8px;
    right: max(6px, 1.5vw);
    --decorative-sticker-size: clamp(44px, 13vw, 62px);
  }

  /* How It Works CTA message sticker */
  .decorative-sticker--howitworks-cta-message {
    top: -8px;
    right: max(8px, 2vw);
    --decorative-sticker-size: clamp(46px, 13vw, 64px);
  }

  /* Services camera sticker */
  .decorative-sticker--services-camera {
    top: 12px;
    right: max(8px, 2vw);
    --decorative-sticker-size: clamp(44px, 13vw, 62px);
  }
}

/* ── 14. PREFERS-REDUCED-MOTION ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
