/* ============================================================================
   KAKA KINGS — styles.css
   Visual system derived directly from the logo badge:
   navy shield · gold rim · green ribbon · sky-blue interior · cream lettering.
   Mobile-first. Tokens at the top; components below in page order.
   ========================================================================== */

/* ---------- 1. TOKENS ----------------------------------------------------- */
:root {
  /* Palette sampled from the Kaka Kings logo artwork */
  --navy:        #061B3A;   /* shield field */
  --navy-800:    #0C2A56;
  --navy-600:    #16407C;
  --green:       #0A6B18;   /* ribbon green, darkened for text contrast */
  --green-500:   #0E8420;   /* ribbon green as-is */
  --green-300:   #34A63F;
  --gold:        #FCCC24;   /* crown + rim */
  --gold-600:    #D9A503;
  --sky:         #78CCF0;   /* badge sky */
  --sky-100:     #E4F3FC;
  --cream:       #FCF0E4;   /* lettering cream */
  --cream-200:   #EFE1CE;
  --brown:       #603C18;   /* dachshund coat */
  --tan:         #E48424;
  --ink:         #14202F;
  --ink-muted:   #4A5768;
  --white:       #FFFFFF;

  /* Type */
  --font-display: "Anton", "Haettenschweiler", "Arial Narrow", sans-serif;
  --font-body:    "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Spacing + shape */
  --gutter: 1.25rem;
  --maxw: 1140px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(6, 27, 58, .08), 0 2px 10px rgba(6, 27, 58, .07);
  --shadow-md: 0 8px 34px rgba(6, 27, 58, .16);
  --shadow-badge: 0 10px 40px rgba(6, 27, 58, .35);
}

/* ---------- 2. RESET / BASE ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* Display face: Anton echoes the logo's varsity lettering. Used only on h1/h2
   and prices so it stays impactful instead of shouty. */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .004em;
  margin: 0 0 .5em;
  text-transform: uppercase;
}
h3, h4 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 11vw, 5rem); }
h2 { font-size: clamp(2rem, 6.4vw, 3.3rem); }
h3 { font-size: clamp(1.12rem, 3.2vw, 1.3rem); }
p  { margin: 0 0 1rem; }
a  { color: var(--navy-600); }
ul { padding-left: 1.15rem; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(3.25rem, 9vw, 6rem); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--sky   { background: var(--sky-100); }
.section--navy  { background: var(--navy); color: var(--sky-100); }
.section--navy h2, .section--navy h3 { color: var(--white); }

/* Green ribbon eyebrow — the logo's "PET WASTE REMOVAL" banner, miniaturised */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: .3rem .8rem;
  border-radius: 3px;
  margin: 0 0 1rem;
  box-shadow: 0 2px 0 var(--gold-600);
}
.section--navy .eyebrow, .commercial .eyebrow, .pricebox .eyebrow {
  background: var(--gold); color: var(--navy); box-shadow: 0 2px 0 rgba(0,0,0,.25);
}

.lede { font-size: 1.12rem; color: var(--ink-muted); max-width: 60ch; }
.section--navy .lede { color: var(--sky-100); opacity: .92; }

.center { text-align: center; }
.center .lede { margin-inline: auto; }

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

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

.skip-link {
  position: absolute; left: 50%; transform: translate(-50%, -140%);
  z-index: 200; background: var(--gold); color: var(--navy);
  padding: .7rem 1.2rem; border-radius: 0 0 10px 10px; font-weight: 700;
  transition: transform .15s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- 3. BUTTONS ---------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 54px; padding: .85rem 1.6rem;
  font-family: var(--font-body); font-weight: 800; font-size: 1.02rem;
  letter-spacing: -.01em;
  border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: transform .12s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 0 var(--gold-600), var(--shadow-sm);
}
.btn--primary:hover { background: #FFD948; }

.btn--green {
  background: var(--green-500); color: var(--white);
  box-shadow: 0 4px 0 #06520F, var(--shadow-sm);
}
.btn--green:hover { background: #129527; }

.btn--ghost { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.18); }

.btn--outline { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--block { width: 100%; }
.btn--sm { min-height: 44px; padding: .5rem 1.15rem; font-size: .92rem; box-shadow: none; }
.btn--sm.btn--green { box-shadow: 0 3px 0 #06520F; }

/* ---------- 4. HEADER / NAV ---------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 240, 228, .95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--gold);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 70px;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; flex-shrink: 0; }
.brand__logo { height: 52px; width: auto; object-fit: contain; }
.brand__name {
  font-family: var(--font-display); color: var(--navy);
  font-size: 1.3rem; letter-spacing: .01em; line-height: .92;
  text-transform: uppercase;
}
.brand__name span {
  display: block; font-family: var(--font-mono); font-size: .56rem;
  letter-spacing: .14em; color: var(--green); font-weight: 600; margin-top: 4px;
}
@media (max-width: 400px) { .brand__name { display: none; } }

.nav__toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--navy); color: var(--white); border: 0; cursor: pointer;
  border-radius: 999px; padding: .6rem 1.05rem; min-height: 44px;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
}
.nav__bars { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.nav__bars::before, .nav__bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav__bars::before { top: -6px; } .nav__bars::after { top: 6px; }

.nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-bottom: 4px solid var(--green-500);
  box-shadow: var(--shadow-md); padding: .5rem var(--gutter) 1.25rem;
}
.nav.is-open { display: block; }
.nav__list { list-style: none; margin: 0; padding: 0; }
.nav__list a {
  display: block; padding: .85rem .25rem; text-decoration: none; color: var(--navy);
  font-weight: 700; border-bottom: 1px solid var(--cream-200);
}
.nav__list a:hover { color: var(--green); }
.nav__cta { margin-top: 1rem; }

@media (min-width: 940px) {
  .nav__toggle { display: none; }
  .nav {
    display: flex; align-items: center; gap: 1.4rem; position: static;
    background: none; border: 0; box-shadow: none; padding: 0;
  }
  .nav__list { display: flex; align-items: center; gap: 1.4rem; }
  .nav__list a { border: 0; padding: .35rem 0; font-size: .95rem; font-weight: 600; }
  .nav__cta { margin: 0; }
  .brand__logo { height: 58px; }
}

/* ---------- 5. HERO ------------------------------------------------------- */
/* Real backyard photograph under a heavy navy scrim so the badge reads clean.
   Photo source + swap instructions are documented in the README. */
.hero {
  position: relative; overflow: hidden;
  background-color: var(--navy);
  padding-block: clamp(2.25rem, 7vw, 4rem) clamp(3rem, 8vw, 5rem);
  color: var(--white);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(6,27,58,.86) 0%, rgba(6,27,58,.80) 45%, rgba(6,27,58,.95) 100%),
    url("https://images.unsplash.com/photo-1729058015948-592a8e4a1772?auto=format&fit=crop&w=1800&q=70");
  background-size: cover;
  background-position: center 62%;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; text-align: center; }

/* Soft gold halo behind the badge — echoes the rim without redrawing the logo */
.hero__badge { position: relative; display: inline-block; margin: 0 auto 1.5rem; }
.hero__badge::before {
  content: ""; position: absolute; inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,204,36,.22) 0%, rgba(252,204,36,0) 68%);
}
.hero__logo {
  position: relative;
  width: min(240px, 62vw); height: auto;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.5));
}
@media (min-width: 760px) { .hero__logo { width: min(330px, 32vw); } }

.hero h1 { color: var(--white); margin-bottom: .3rem; text-shadow: 0 3px 18px rgba(0,0,0,.4); }
.hero h1 em { font-style: normal; color: var(--gold); display: block; }

.hero__sub {
  font-size: clamp(1.05rem, 3.1vw, 1.28rem); max-width: 34ch;
  margin: 0 auto .9rem; color: var(--sky-100); font-weight: 500;
}
.hero__area {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 1.9rem; font-weight: 600; line-height: 1.5;
}
.hero__area::before, .hero__area::after {
  content: ""; width: 26px; height: 2px; background: var(--gold);
  opacity: .6; flex: 0 0 26px;
}
.hero__actions { display: grid; gap: .75rem; max-width: 380px; margin: 0 auto 2.25rem; }
@media (min-width: 560px) { .hero__actions { grid-auto-flow: column; max-width: none; justify-content: center; } }

/* Trust strip */
.trust {
  list-style: none; margin: 0 auto; padding: 1.25rem;
  display: grid; gap: .6rem; max-width: 640px; text-align: left;
  background: rgba(6,27,58,.55);
  border: 1px solid rgba(252,204,36,.3);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(3px);
}
@media (min-width: 700px) { .trust { grid-template-columns: 1fr 1fr; gap: .7rem 2rem; padding: 1.4rem 1.75rem; } }
.trust li {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .95rem; color: var(--white); font-weight: 500;
}
.trust svg { flex: 0 0 20px; margin-top: 3px; color: var(--gold); }

/* ---------- 6. SIGNATURE: THE ROUTE RIBBON -------------------------------- */
.routeline { background: var(--green-500); padding: 1.1rem 0; border-bottom: 4px solid var(--gold); }
.routeline__track {
  position: relative; display: flex; justify-content: space-between;
  max-width: 720px; margin-inline: auto; padding: 0 .5rem;
}
.routeline__track::before {
  content: ""; position: absolute; left: 9%; right: 9%; top: 8px; height: 0;
  border-top: 2px dashed rgba(255,255,255,.55);
}
.routeline__stop {
  position: relative; text-align: center; flex: 1;
  font-family: var(--font-mono); font-size: .67rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--white); font-weight: 600;
}
.routeline__stop::before {
  content: ""; display: block; width: 12px; height: 12px; margin: 2px auto .55rem;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(252,204,36,.28);
}
.routeline__stop--soft { color: rgba(255,255,255,.72); }
.routeline__stop--soft::before { background: rgba(255,255,255,.6); box-shadow: none; }

/* ---------- 7. PHOTO TREATMENT (used site-wide) --------------------------- */
/* Every photograph gets the badge treatment: gold hairline, navy edge scrim,
   rounded corners. Keeps stock photography sitting under the brand. */
.photo {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-badge);
  background: var(--navy);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,27,58,0) 55%, rgba(6,27,58,.6) 100%);
}
.photo--tall  { aspect-ratio: 4 / 5; }
.photo--wide  { aspect-ratio: 16 / 10; }
.photo--square{ aspect-ratio: 1 / 1; }
.photo__cap {
  position: absolute; left: 1rem; right: 1rem; bottom: .85rem; z-index: 2;
  font-family: var(--font-mono); font-size: .71rem; letter-spacing: .07em;
  text-transform: uppercase; color: var(--white); font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,.75);
}

/* ---------- 8. PROBLEM / SOLUTION ---------------------------------------- */
.pullquote {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.7rem, 6vw, 2.7rem); line-height: 1.04;
  color: var(--navy); max-width: 16ch; margin: 0 0 1.25rem;
}
.pullquote span { color: var(--green-500); }
.split { display: grid; gap: 1.75rem; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; } }

/* ---------- 9. STEPS ------------------------------------------------------ */
.steps { list-style: none; margin: 2.25rem 0 0; padding: 0; display: grid; gap: 1rem; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.step {
  background: var(--white); border: 1px solid var(--cream-200);
  border-top: 5px solid var(--green-500);
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.step__num {
  font-family: var(--font-display); font-size: 2.1rem; color: var(--gold);
  display: block; line-height: 1; margin-bottom: .45rem;
  -webkit-text-stroke: 1.5px var(--navy);
}
.step h3 { margin-bottom: .4rem; color: var(--navy); }
.step p { margin: 0; color: var(--ink-muted); font-size: .97rem; }

/* ---------- 10. PRICING --------------------------------------------------- */
.plans { display: grid; gap: 1.1rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .plans { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.plan {
  background: var(--white); border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg); padding: 1.7rem 1.35rem 1.35rem;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  position: relative;
}
.plan--featured {
  border: 3px solid var(--gold); box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #FFFDF6 0%, var(--white) 40%);
}
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green-500); color: var(--white); white-space: nowrap;
  font-family: var(--font-mono); font-size: .65rem; letter-spacing: .12em;
  text-transform: uppercase; padding: .32rem .8rem; border-radius: 3px;
  font-weight: 600; box-shadow: 0 2px 0 var(--gold-600);
}
.plan h3 { color: var(--navy); margin-bottom: .3rem; font-size: 1.25rem; }
.plan__blurb { font-size: .9rem; color: var(--ink-muted); margin-bottom: 1.1rem; }
.plan__tiers { list-style: none; margin: 0 0 1.25rem; padding: 0; border-top: 2px solid var(--cream-200); }
.plan__tier {
  display: flex; align-items: baseline; justify-content: space-between; gap: .75rem;
  padding: .6rem 0; border-bottom: 1px solid var(--cream-200);
}
.plan__dogs { font-size: .9rem; color: var(--ink-muted); }
.plan__price { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); }
.plan__unit { font-family: var(--font-body); font-weight: 600; font-size: .73rem; color: var(--ink-muted); }
.plan .btn { margin-top: auto; }

.finenote { margin-top: 2rem; font-size: .9rem; color: var(--ink-muted); }
.finenote strong { color: var(--navy); }
.finenote ul { margin: .5rem 0 0; }
.finenote li { margin-bottom: .3rem; }

/* ---------- 11. YARD RESCUE ---------------------------------------------- */
.rescue { display: grid; gap: 1.75rem; }
@media (min-width: 920px) { .rescue { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } }
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 1.25rem 0 1.75rem; }
.tags li {
  background: var(--white); border: 2px solid var(--sky);
  color: var(--navy); border-radius: 999px; padding: .38rem .9rem;
  font-size: .87rem; font-weight: 600;
}
.pricebox {
  background: var(--navy); color: var(--white); border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem; box-shadow: var(--shadow-badge);
  border: 3px solid var(--gold);
}
.pricebox__amount {
  font-family: var(--font-display); font-size: clamp(2rem, 6vw, 2.7rem);
  color: var(--gold); line-height: 1; margin-bottom: .6rem; text-transform: uppercase;
}
.pricebox p { color: var(--sky-100); font-size: .95rem; }
.pricebox strong { color: var(--white); }

/* ---------- 12. WHY US ---------------------------------------------------- */
.why { list-style: none; padding: 0; margin: 2.25rem 0 0; display: grid; gap: .9rem; }
@media (min-width: 700px) { .why { grid-template-columns: 1fr 1fr; gap: 1rem; } }
@media (min-width: 1000px) { .why { grid-template-columns: repeat(3, 1fr); } }
.why li {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--cream-200);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius); padding: 1.05rem 1.15rem; box-shadow: var(--shadow-sm);
}
.why svg { flex: 0 0 22px; color: var(--green-500); margin-top: 2px; }
.why strong { display: block; color: var(--navy); font-weight: 800; }
.why span { font-size: .91rem; color: var(--ink-muted); }

/* ---------- 13. SERVICE AREA --------------------------------------------- */
.towns { display: grid; gap: .85rem; margin: 2.25rem 0 1.5rem; }
@media (min-width: 560px) { .towns { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .towns { grid-template-columns: repeat(4, 1fr); } }
.town {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 1.15rem 1.3rem;
  border-bottom: 5px solid var(--green-500);
}
.town h3 { margin: 0 0 .1rem; color: var(--white); font-size: 1.2rem; }
.town p { margin: 0; font-family: var(--font-mono); font-size: .71rem; color: var(--gold); letter-spacing: .09em; text-transform: uppercase; }

/* Surrounding towns — outlined rather than filled, because these are
   route-by-request and shouldn't read as confirmed service days. */
.town--soft {
  background: transparent; color: var(--navy);
  border: 2px dashed var(--navy-600); border-bottom: 5px solid var(--green-500);
}
.town--soft h3 { color: var(--navy); font-size: 1.05rem; }
.town--soft p { color: var(--green); }

.ziplist {
  font-family: var(--font-mono); font-size: .83rem; color: var(--ink-muted);
  background: var(--white); border: 2px dashed var(--sky); border-radius: var(--radius);
  padding: 1rem 1.15rem; word-break: break-word;
}
.ziplist strong { color: var(--navy); }

/* ---------- 14. FORM ------------------------------------------------------ */
.formcard {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem; box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-200); border-top: 6px solid var(--gold);
}
@media (min-width: 760px) { .formcard { padding: 2.5rem 2.25rem; } }

.fieldset { border: 0; padding: 0; margin: 0 0 1.75rem; }
.fieldset > legend {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--white); background: var(--green);
  padding: .28rem .75rem; margin-bottom: 1.1rem; border-radius: 3px; font-weight: 600;
}
.grid2 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .grid2 { grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; } }
.field--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.field label { font-weight: 700; font-size: .92rem; color: var(--navy); margin-bottom: .35rem; }
.field .hint { font-size: .82rem; color: var(--ink-muted); margin: 0 0 .35rem; font-weight: 400; }
.req { color: var(--green-500); font-weight: 800; }

input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="date"], select, textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  background: #FDFAF4; border: 2px solid var(--cream-200);
  border-radius: 10px; padding: .8rem .9rem; width: 100%;
  min-height: 50px; transition: border-color .15s ease, background-color .15s ease;
}
textarea { min-height: 110px; resize: vertical; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23061B3A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .95rem center; background-size: 12px;
  padding-right: 2.5rem;
}
input:focus, select:focus, textarea:focus { border-color: var(--navy-600); background: var(--white); outline-offset: 1px; }

input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: #B3261E; background: #FDF2F1;
}
.error-text { color: #B3261E; font-size: .85rem; margin: .35rem 0 0; font-weight: 700; display: none; }
.error-text.is-shown { display: block; }

.check { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1rem; }
.check input[type="checkbox"] { width: 22px; height: 22px; margin: 3px 0 0; flex: 0 0 22px; accent-color: var(--green-500); }
.check label { font-weight: 500; font-size: .94rem; color: var(--ink); margin: 0; }

.form__foot { border-top: 2px solid var(--cream-200); padding-top: 1.5rem; }
.privacy-note { font-size: .87rem; color: var(--ink-muted); margin-top: 1rem; }

.form-status {
  border-radius: var(--radius); padding: 1rem 1.15rem; margin-bottom: 1.25rem;
  font-size: .95rem; display: none;
}
.form-status.is-shown { display: block; }
.form-status--error { background: #FDF2F1; border: 2px solid #B3261E; color: #7A1B15; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- 15. FAQ ------------------------------------------------------- */
.faq { margin-top: 2.25rem; border-top: 2px solid var(--cream-200); }
.faq details { border-bottom: 1px solid var(--cream-200); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem .5rem 1.1rem 0;
  font-weight: 800; font-size: 1.04rem; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.55rem; line-height: 1; color: var(--green-500); flex: 0 0 auto;
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { color: var(--green); }
.faq__answer { padding: 0 0 1.25rem; color: var(--ink-muted); font-size: .97rem; max-width: 68ch; }
.faq__answer p:last-child { margin-bottom: 0; }

/* ---------- 16. COMMERCIAL ------------------------------------------------ */
.commercial {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); padding: 2.25rem 1.5rem;
  color: var(--sky-100); border: 3px solid var(--gold);
  background-color: var(--navy);
}
.commercial__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(100deg, rgba(6,27,58,.97) 0%, rgba(6,27,58,.92) 55%, rgba(6,27,58,.78) 100%),
    url("https://images.unsplash.com/photo-1684867430916-ede9dc95eca5?auto=format&fit=crop&w=1400&q=65");
  background-size: cover; background-position: center;
}
.commercial__body, .commercial__aside { position: relative; z-index: 1; }
@media (min-width: 920px) {
  .commercial { padding: 3rem; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
}
.commercial h2 { color: var(--white); }
.commercial ul { columns: 2; column-gap: 1.5rem; font-size: .92rem; margin: 1.25rem 0 0; }
.commercial li { break-inside: avoid; margin-bottom: .3rem; }

/* ---------- 17. TESTIMONIALS --------------------------------------------- */
.reviews { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 820px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--white); border: 1px solid var(--cream-200); border-top: 5px solid var(--gold);
  border-radius: var(--radius); padding: 1.5rem 1.35rem; box-shadow: var(--shadow-sm); text-align: left;
}
.review blockquote { margin: 0 0 1rem; font-size: 1rem; color: var(--ink); }
.review cite { font-style: normal; font-family: var(--font-mono); font-size: .76rem; color: var(--ink-muted); letter-spacing: .05em; }
.launchnote {
  max-width: 30ch; margin: 1.5rem auto 0;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.35rem, 4.4vw, 2rem);
  color: var(--navy); line-height: 1.1;
}

/* ---------- 18. FINAL CTA + FOOTER --------------------------------------- */
.finalcta {
  position: relative; overflow: hidden;
  background-color: var(--green-500); color: var(--white); text-align: center;
  border-top: 5px solid var(--gold); border-bottom: 5px solid var(--gold);
}
.finalcta__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(10,107,24,.93), rgba(5,58,13,.95)),
    url("https://images.unsplash.com/photo-1764969370921-7c8df49171cd?auto=format&fit=crop&w=1600&q=65");
  background-size: cover; background-position: center;
}
.finalcta .wrap { position: relative; z-index: 1; }
.finalcta h2 { color: var(--white); max-width: 18ch; margin-inline: auto; }
.finalcta__contact {
  margin: 1.5rem 0 0; font-size: .95rem; color: rgba(255,255,255,.9);
}
.finalcta__contact a { color: var(--gold); font-weight: 700; text-decoration: underline; }
.finalcta__contact a:hover { color: var(--white); }
.finalcta__contact:empty { display: none; }
.finalcta p { color: rgba(255,255,255,.92); max-width: 50ch; margin: 0 auto 1.75rem; }

.footer { background: var(--navy); color: var(--sky-100); padding-block: 3rem 6.5rem; font-size: .94rem; }
@media (min-width: 940px) { .footer { padding-bottom: 3rem; } }
.footer a { color: var(--sky); }
.footer a:hover { color: var(--gold); }
.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.25fr 1fr 1fr; gap: 2.5rem; } }
.footer h4 {
  font-size: .73rem; font-family: var(--font-mono); letter-spacing: .16em;
  text-transform: uppercase; color: var(--navy); background: var(--gold);
  display: inline-block; padding: .25rem .7rem; border-radius: 3px;
  margin-bottom: .9rem; font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .5rem; }
.footer__logo { width: 200px; margin-bottom: 1rem; }
.footer__legal {
  border-top: 1px solid rgba(120,204,240,.2); margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-size: .85rem; color: rgba(228,243,252,.7);
}
.social { display: flex; gap: .75rem; }
.social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--white);
}
.social a:hover { background: var(--gold); color: var(--navy); }

/* Photo credits — small, honest, unobtrusive */
.credits { font-size: .74rem; color: rgba(228,243,252,.45); margin-top: 1.25rem; line-height: 1.55; }
.credits a { color: rgba(228,243,252,.6); }

/* ---------- 19. STICKY MOBILE CTA ---------------------------------------- */
.stickybar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(6, 27, 58, .97); backdrop-filter: blur(6px);
  padding: .65rem var(--gutter) calc(.65rem + env(safe-area-inset-bottom));
  display: grid; grid-auto-flow: column; gap: .6rem;
  border-top: 3px solid var(--gold);
}
.stickybar .btn { min-height: 48px; font-size: .96rem; padding: .6rem 1rem; box-shadow: none; }
@media (min-width: 940px) { .stickybar { display: none; } }

/* ---------- 20. SIMPLE PAGES (success / privacy) ------------------------- */
.page { max-width: 760px; margin-inline: auto; padding-block: clamp(3rem, 10vw, 5rem); }
.page h1 { font-size: clamp(2.1rem, 8vw, 3.2rem); color: var(--navy); }
.page h2 { margin-top: 2.25rem; font-size: clamp(1.3rem, 4vw, 1.7rem); color: var(--navy); }
.page h2:first-of-type { margin-top: 1.5rem; }
.card-center {
  background: var(--white); border: 1px solid var(--cream-200); border-top: 6px solid var(--gold);
  border-radius: var(--radius-lg); padding: 2.25rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-md);
}
.card-center .hero__logo { width: min(220px, 58vw); filter: none; margin: 0 auto 1.25rem; }
.card-center .lede { margin-inline: auto; }
.card-center .btnrow { display: grid; gap: .75rem; max-width: 340px; margin: 1.75rem auto 0; }

/* ---------- 21. MOTION PREFERENCES --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .btn:hover { transform: none; }
}
