/* ==========================================================================
   Local Ads — styles.css
   "Texas print shop meets neighborhood bulletin board"
   Sections: 1 tokens · 2 reset/base · 3 utilities · 4 buttons · 5 header/nav
             6 hero · 7 value · 8 benefits · 9 pricing · 10 how · 11 faq
             12 contact · 13 final · 14 footer · 15 mobile CTA · 16 motion
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand */
  --navy:      #10243E;
  --tomato:    #EF4335;
  --marigold:  #F5B928;
  --paper:     #FFF4D8;
  --turquoise: #19A7A0;
  --ink:       #171717;
  --white:     #FFFFFF;

  /* Accessible text-on-color variants (AA contrast with white text) */
  --red-ink:  #C4291D;   /* white text ≈ 6.0:1 */
  --teal-ink: #0E6F6B;   /* white text ≈ 5.0:1 */
  --paper-2:  #FBE9C4;   /* slightly deeper paper for banding */
  --rule:     rgba(16, 36, 62, 0.16);

  /* Type */
  --f-display: "Archivo Black", "Haettenschweiler", "Arial Black", "Impact", sans-serif;
  --f-cond:    "Barlow Condensed", "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --t-huge:  clamp(2.6rem, 8vw, 5.5rem);
  --t-h1:    clamp(2.35rem, 6.4vw, 4.6rem);
  --t-h2:    clamp(1.9rem, 4.4vw, 3.35rem);
  --t-h3:    clamp(1.15rem, 2vw, 1.45rem);
  --t-body:  clamp(1rem, 0.97rem + 0.2vw, 1.115rem);

  /* Space & shape */
  --pad:      clamp(1.15rem, 4vw, 2.5rem);
  --sec-pad:  clamp(3.75rem, 9vw, 7.5rem);
  --maxw:     1240px;
  --bd:       3px solid var(--navy);
  --bd-thick: 5px solid var(--navy);
  --shadow:   6px 6px 0 var(--navy);
  --shadow-lg: 10px 10px 0 var(--navy);
  --r:        4px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  /* keeps anchor targets clear of the sticky header */
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.62;
  color: var(--navy);
  background: var(--paper);
  /* Paper grain: two faint gradients, no image request */
  background-image:
    radial-gradient(circle at 15% 12%, rgba(239, 67, 53, 0.05), transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(25, 167, 160, 0.06), transparent 40%);
  overflow-x: hidden; /* decorative rotated elements must never scroll the page */
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
p { text-wrap: pretty; }

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); line-height: 1.12; }

a { color: inherit; }

/* Visible focus everywhere */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--tomato);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 8px; top: -100px; z-index: 200;
  background: var(--navy); color: var(--white);
  padding: 0.7rem 1.1rem; font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 8px; }

/* ---------- 3. Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: 880px; }

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

.big-head  { font-size: var(--t-h2); margin-bottom: 0.5em; }
.huge-head { font-size: var(--t-huge); line-height: 0.94; }

.section-label {
  font-family: var(--f-cond);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700; letter-spacing: 0.19em; text-transform: uppercase;
  display: inline-block;
  background: var(--marigold); color: var(--navy);
  border: var(--bd); box-shadow: 4px 4px 0 var(--navy);
  padding: 0.3rem 0.9rem; margin-bottom: 1.4rem;
  transform: rotate(-1.4deg); transform-origin: left center;
}
.section-label--light { background: var(--marigold); }

.section-intro { max-width: 62ch; font-size: 1.06em; margin-bottom: 2.5rem; }
.section-intro--light { color: rgba(255, 244, 216, 0.92); }

/* Marker-style highlight behind key phrases.
   Painted as a background gradient with box-decoration-break so the swipe
   follows the text across every wrapped line instead of one flat box. */
.hl {
  --hl-color: var(--marigold);
  background-image: linear-gradient(var(--hl-color), var(--hl-color));
  background-repeat: no-repeat;
  background-size: 100% 0.3em;
  background-position: 0 92%;
  padding-inline: 0.05em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.hl--yellow { --hl-color: var(--marigold); }
.hl--red    { --hl-color: #f87b70; }
.hl--teal   { --hl-color: #7fd6d1; }

/* On the dark sections the light heading text would sit on a pale swipe,
   so the highlight becomes a solid block with navy text instead. */
.benefits .hl, .how .hl, .final .hl {
  color: var(--navy);
  background-size: 100% 100%;
  background-position: 0 0;
  padding: 0.02em 0.14em;
}

.link-arrow {
  font-weight: 700; text-decoration: none;
  border-bottom: 3px solid var(--tomato);
  padding-bottom: 2px; display: inline-block;
}
.link-arrow::after { content: " →"; }
.link-arrow:hover { border-bottom-color: var(--navy); }

.ext { font-size: 0.85em; margin-left: 0.35em; }

/* Halftone dot field — decorative background texture */
.halftone {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(var(--navy) 1.6px, transparent 1.7px);
  background-size: 14px 14px;
  opacity: 0.09;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 62%);
          mask-image: linear-gradient(to bottom, #000, transparent 62%);
}
.halftone--dark {
  background-image: radial-gradient(var(--marigold) 1.6px, transparent 1.7px);
  opacity: 0.16;
}

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.35rem; text-align: center;
  font-family: var(--f-cond);
  font-size: 1.16rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  background: var(--btn-bg); color: var(--btn-fg);
  border: var(--bd); border-radius: var(--r);
  padding: 0.72rem 1.35rem;
  box-shadow: 5px 5px 0 var(--navy);
  cursor: pointer;
  transition: transform 0.13s ease, box-shadow 0.13s ease, background-color 0.13s ease;
}
.btn:hover  { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--navy); }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--navy); }

.btn--red    { --btn-bg: var(--red-ink); }
.btn--navy   { --btn-bg: var(--navy); }
.btn--yellow { --btn-bg: var(--marigold); --btn-fg: var(--navy); }
.btn--ghost  { --btn-bg: var(--white); --btn-fg: var(--navy); }
.btn--ghost-light {
  --btn-bg: transparent; --btn-fg: var(--paper);
  border-color: var(--marigold); box-shadow: 5px 5px 0 var(--marigold);
}
.btn--ghost-light:hover  { box-shadow: 3px 3px 0 var(--marigold); background: rgba(245, 185, 40, 0.14); }
.btn--ghost-light:active { box-shadow: 0 0 0 var(--marigold); }

.btn--lg    { font-size: clamp(1.05rem, 1.6vw, 1.3rem); padding: 0.95rem 1.6rem; }
.btn--block { display: flex; width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.9rem 0 1.1rem; }
.cta-row--center { justify-content: center; }

/* ---------- 5. Header & navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: var(--bd);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px; padding-block: 0.6rem;
}
.header-rule { height: 6px; background: repeating-linear-gradient(90deg,
  var(--tomato) 0 14.28%, var(--marigold) 14.28% 28.56%, var(--turquoise) 28.56% 42.84%,
  var(--navy) 42.84% 57.12%, var(--tomato) 57.12% 71.4%, var(--marigold) 71.4% 85.68%,
  var(--turquoise) 85.68% 100%); }

/* Postal-stamp logo mark, built entirely from text + borders */
.stamp-logo { text-decoration: none; display: inline-block; flex: none; }
.stamp-logo__perf {
  display: block; position: relative;
  background: var(--marigold); color: var(--navy);
  border: 2.5px solid var(--navy);
  padding: 0.4rem 0.85rem 0.3rem;
  /* perforated stamp edge */
  -webkit-mask-image:
    radial-gradient(circle at 50% 0, transparent 3.4px, #000 3.5px),
    radial-gradient(circle at 50% 100%, transparent 3.4px, #000 3.5px);
  -webkit-mask-size: 10px 100%, 10px 100%;
  -webkit-mask-repeat: repeat-x, repeat-x;
  -webkit-mask-position: 0 0, 0 100%;
  mask-image:
    radial-gradient(circle at 50% 0, transparent 3.4px, #000 3.5px),
    radial-gradient(circle at 50% 100%, transparent 3.4px, #000 3.5px);
  mask-size: 10px 100%, 10px 100%;
  mask-repeat: repeat-x, repeat-x;
  mask-position: 0 0, 0 100%;
  transition: transform 0.15s ease;
}
.stamp-logo:hover .stamp-logo__perf { transform: rotate(-2deg); }
.stamp-logo__line1, .stamp-logo__line2 {
  display: block; font-family: var(--f-display);
  line-height: 0.85; letter-spacing: -0.02em;
}
.stamp-logo__line1 { font-size: 1.18rem; }
.stamp-logo__line2 { font-size: 1.62rem; }
.stamp-logo__line3 {
  display: block; font-family: var(--f-cond); font-weight: 700;
  font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-top: 2px; border-top: 1.5px solid var(--navy); padding-top: 1px;
}

.nav-toggle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-cond); font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--white); color: var(--navy);
  border: var(--bd); border-radius: var(--r);
  padding: 0.55rem 0.85rem; box-shadow: 3px 3px 0 var(--navy); cursor: pointer;
}
.nav-toggle__bars { display: grid; gap: 3px; }
.nav-toggle__bars i { display: block; width: 19px; height: 3px; background: var(--navy); }
.nav-toggle[aria-expanded="true"] { background: var(--marigold); }

.primary-nav ul { list-style: none; padding: 0; margin: 0; }
.primary-nav a {
  font-family: var(--f-cond); font-weight: 700;
  font-size: 1.12rem; letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none;
}
.primary-nav a:not(.btn) { border-bottom: 3px solid transparent; padding-bottom: 2px; }
.primary-nav a:not(.btn):hover { border-bottom-color: var(--tomato); }
.primary-nav .btn { font-size: 1rem; padding: 0.55rem 1rem; box-shadow: 4px 4px 0 var(--navy); }

/* Mobile: collapsed panel */
@media (max-width: 959px) {
  .primary-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: var(--bd-thick);
    display: none; padding: 0.5rem var(--pad) 1.35rem;
    box-shadow: 0 14px 22px rgba(16, 36, 62, 0.18);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav li { border-top: 2px solid var(--rule); }
  .primary-nav li a:not(.btn) { display: block; padding: 0.85rem 0; font-size: 1.28rem; }
  .primary-nav__cta { border-top: 0 !important; margin-top: 0.9rem; }
  .primary-nav__cta .btn { width: 100%; font-size: 1.15rem; padding: 0.8rem 1rem; }
}
@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .primary-nav ul { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.7rem); }
}

/* --- "Areas We Serve" submenu --- */
.has-sub { position: relative; display: flex; align-items: center; gap: 0.3rem; }
.nav-sub-toggle {
  display: inline-grid; place-items: center;
  width: 1.9rem; height: 1.9rem; flex: none;
  background: var(--white); color: var(--navy);
  border: 2.5px solid var(--navy); border-radius: var(--r);
  cursor: pointer; padding: 0;
}
.nav-sub-toggle[aria-expanded="true"] { background: var(--marigold); }
/* Without JS the panel can never open, so hide the control that implies it can. */
html:not(.js) .nav-sub-toggle { display: none; }
.caret {
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 6px solid var(--navy);
  transition: transform 0.15s ease;
}
.nav-sub-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }

.nav-sub {
  background: var(--paper); border: var(--bd); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 0.8rem;
}
.nav-sub__all {
  display: block; margin-bottom: 0.5rem; padding-bottom: 0.5rem;
  border-bottom: 2px dashed var(--rule);
  font-family: var(--f-cond); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
}
.nav-sub ul { display: grid; gap: 0.1rem; }
.nav-sub a:not(.nav-sub__all) {
  display: block; padding: 0.3rem 0.4rem; font-size: 0.98rem;
  text-transform: none; letter-spacing: 0.01em; border-radius: 2px;
}
.nav-sub a:hover { background: var(--marigold); }
@media (min-width: 960px) {
  .nav-sub {
    position: absolute; top: calc(100% + 0.7rem); left: 0; z-index: 120;
    width: 26rem; max-width: calc(100vw - 2rem);
  }
  .nav-sub ul { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 959px) {
  .has-sub { flex-wrap: wrap; }
  .has-sub > a { flex: 1; }
  .nav-sub { width: 100%; margin-bottom: 0.9rem; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4.75rem) var(--sec-pad);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.hero > .wrap { position: relative; z-index: 1; }

.hero-grid { display: grid; gap: clamp(2.5rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.06fr 0.94fr; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--f-cond); font-weight: 700;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  letter-spacing: 0.17em; text-transform: uppercase;
  border: 2.5px solid var(--navy); background: var(--white);
  padding: 0.3rem 0.8rem; margin-bottom: 1.2rem;
  box-shadow: 3px 3px 0 var(--turquoise);
}
.eyebrow__dot { width: 10px; height: 10px; background: var(--tomato); border-radius: 50%; }

.hero h1 { margin-bottom: 1rem; }
.lede { font-size: clamp(1.06rem, 1.7vw, 1.32rem); max-width: 54ch; }
.hero-note { font-size: 0.95rem; max-width: 52ch; color: #2c4159; }

/* Three prominent facts */
.fact-strip {
  list-style: none; padding: 0; margin: 2.2rem 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
}
.fact-strip li {
  background: var(--white); border: var(--bd); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 0.85rem 0.7rem; text-align: center;
}
.fact-strip li:nth-child(2) { background: var(--turquoise); color: var(--white); border-color: var(--navy); }
.fact-strip li:nth-child(3) { background: var(--marigold); }
.fact-strip__num {
  display: block; font-family: var(--f-display);
  font-size: clamp(1.5rem, 4.6vw, 2.5rem); line-height: 1;
}
.fact-strip__label {
  display: block; font-family: var(--f-cond); font-weight: 700;
  font-size: clamp(0.76rem, 1.5vw, 0.92rem);
  letter-spacing: 0.09em; text-transform: uppercase; margin-top: 0.35rem;
}

/* --- CSS-built 9×12 postcard mockup --- */
.hero-card-zone { position: relative; padding-block: 1.5rem 2.5rem; }

.loc-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--f-cond); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--navy); color: var(--paper);
  padding: 0.28rem 0.75rem; border-radius: 999px;
  position: absolute; top: -0.35rem; left: 0.5rem; z-index: 3;
  transform: rotate(-2.5deg); box-shadow: 3px 3px 0 var(--tomato);
}

.postcard {
  position: relative; margin-inline: auto;
  width: min(100%, 430px);
  aspect-ratio: 12 / 9.4;
  background: var(--white);
  border: var(--bd-thick); border-radius: 3px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.6deg);
  padding: 8px;
}
/* dashed "trim" line just inside the card edge */
.postcard__edge {
  position: absolute; inset: 7px;
  border: 1.5px dashed rgba(16, 36, 62, 0.35);
  pointer-events: none;
}
.postcard__inner { height: 100%; display: flex; flex-direction: column; gap: 6px; padding: 6px; }

.pc-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem;
  border-bottom: 2.5px solid var(--navy); padding-bottom: 4px;
}
.pc-head__mark { font-family: var(--f-display); font-size: clamp(0.8rem, 2.4vw, 1.05rem); letter-spacing: -0.02em; }
.pc-head__meta {
  font-family: var(--f-cond); font-weight: 700; font-size: clamp(0.5rem, 1.4vw, 0.64rem);
  letter-spacing: 0.13em; text-transform: uppercase; color: #3a4f68; text-align: right;
}

.pc-grid {
  flex: 1; display: grid; gap: 5px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(0, 1fr);
}
.pc-ad {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1px; text-align: center; padding: 3px;
  border: 2px solid var(--navy); border-radius: 2px; overflow: hidden;
}
.pc-ad b {
  font-family: var(--f-cond); font-weight: 700;
  font-size: clamp(0.44rem, 1.5vw, 0.7rem);
  letter-spacing: 0.07em; text-transform: uppercase; line-height: 1.05;
}
.pc-ad i {
  font-style: normal; font-family: var(--f-cond); font-weight: 600;
  font-size: clamp(0.38rem, 1.1vw, 0.55rem);
  letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.78;
}
.pc-ad--lg { grid-column: span 2; grid-row: span 2; }
.pc-ad--md { grid-column: span 2; }
.pc-ad--sm { grid-column: span 1; }
.t-red    { background: var(--tomato);   color: var(--white); }
.t-teal   { background: var(--turquoise); color: var(--white); }
.t-yellow { background: var(--marigold); color: var(--navy); }
.t-navy   { background: var(--navy);     color: var(--paper); }
.t-open   { background: repeating-linear-gradient(45deg, var(--paper) 0 5px, var(--white) 5px 10px); color: var(--navy); }

.pc-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; border-top: 2.5px solid var(--navy); padding-top: 5px; }
.pc-foot__lines { display: grid; gap: 3px; flex: 1; max-width: 55%; }
.pc-foot__lines i { display: block; height: 3px; background: rgba(16, 36, 62, 0.3); border-radius: 2px; }
.pc-foot__lines i:nth-child(2) { width: 78%; }
.pc-foot__lines i:nth-child(3) { width: 55%; }
.pc-foot__perm {
  font-family: var(--f-cond); font-weight: 700; font-size: clamp(0.36rem, 1vw, 0.5rem);
  letter-spacing: 0.1em; line-height: 1.25; text-align: center;
  border: 1.5px solid var(--navy); padding: 2px 5px;
}

/* "One business per category" round stamp */
.cat-stamp {
  position: absolute; right: -0.3rem; bottom: 0; z-index: 4;
  width: clamp(104px, 27vw, 138px); aspect-ratio: 1;
  display: grid; place-items: center; text-align: center;
  border: 3.5px solid var(--red-ink); border-radius: 50%;
  color: var(--red-ink); background: rgba(255, 244, 216, 0.93);
  font-family: var(--f-cond); font-weight: 700;
  font-size: clamp(0.75rem, 2.1vw, 0.95rem);
  letter-spacing: 0.09em; text-transform: uppercase; line-height: 1.15;
  transform: rotate(-13deg);
  box-shadow: inset 0 0 0 2px rgba(196, 41, 29, 0.35);
}

/* Floating decorative marks */
.deco { position: absolute; z-index: 0; pointer-events: none; user-select: none; }
.deco--star  { top: 12%; right: 4%; font-size: clamp(2rem, 6vw, 4rem); color: var(--tomato); opacity: 0.5; }
.deco--arrow { bottom: 11%; left: 3%; font-size: clamp(1.8rem, 5vw, 3.4rem); color: var(--turquoise); opacity: 0.55; }
.deco--reg   { top: 46%; left: 1.5%; }
/* registration mark: crosshair in a circle */
.regmark {
  display: block; width: 40px; height: 40px; border: 2px solid var(--navy);
  border-radius: 50%; position: relative; opacity: 0.35;
}
.regmark::before, .regmark::after {
  content: ""; position: absolute; background: var(--navy);
}
.regmark::before { left: 50%; top: -9px; bottom: -9px; width: 2px; transform: translateX(-50%); }
.regmark::after  { top: 50%; left: -9px; right: -9px; height: 2px; transform: translateY(-50%); }
@media (max-width: 767px) { .deco--reg, .deco--arrow { display: none; } }

/* ---------- 7. Value proposition ---------- */
.value { padding-block: var(--sec-pad); border-top: var(--bd-thick); background: var(--paper); }
.value-grid { display: grid; gap: clamp(2.2rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .value-grid { grid-template-columns: 1.05fr 0.95fr; } }
.value h2 { margin-bottom: 1rem; }
.value p { margin-bottom: 1rem; max-width: 58ch; }
.value-cta { margin-top: 1.5rem; }

.split-figure {
  background: var(--white); border: var(--bd); box-shadow: var(--shadow-lg);
  padding: clamp(1.1rem, 3vw, 1.9rem); border-radius: var(--r);
}
.split-figure__row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0.75rem; align-items: center; }
.split-col__cap {
  font-family: var(--f-cond); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.5rem; text-align: center;
}
.split-block { aspect-ratio: 4 / 5; border: 3px solid var(--navy); border-radius: 3px; }
.split-block--solo {
  background: repeating-linear-gradient(135deg, var(--tomato) 0 9px, #d93a2d 9px 18px);
  color: var(--white); display: grid; place-items: center; text-align: center;
  font-family: var(--f-cond); font-weight: 700; font-size: clamp(0.7rem, 1.8vw, 0.86rem);
  letter-spacing: 0.1em; line-height: 1.25; padding: 0.4rem;
}
.split-block--shared {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(4, 1fr);
  gap: 3px; padding: 4px; background: var(--paper);
}
.split-block--shared i { background: var(--turquoise); border-radius: 1px; }
.split-block--shared i.me { background: var(--marigold); box-shadow: inset 0 0 0 2px var(--navy); }
.split-vs { font-family: var(--f-display); font-size: 1.1rem; color: var(--navy); opacity: 0.6; }
.split-figure figcaption {
  margin-top: 1.1rem; font-size: 0.93rem; line-height: 1.55;
  border-top: 2px dashed var(--rule); padding-top: 0.9rem;
}

/* ---------- 8. Benefits ---------- */
.benefits {
  padding-block: var(--sec-pad);
  background: var(--navy); color: var(--paper);
  border-block: var(--bd-thick);
}
.benefits .big-head { color: var(--white); max-width: 20ch; }

.benefit-grid {
  list-style: none; padding: 0; margin: 2.6rem 0 0;
  display: grid; gap: clamp(1rem, 2.2vw, 1.5rem);
}
@media (min-width: 720px)  { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) {
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .bcard--wide { grid-column: span 2; }
}

.bcard {
  position: relative;
  background: var(--paper); color: var(--navy);
  border: var(--bd); border-radius: var(--r);
  box-shadow: 8px 8px 0 var(--tomato);
  padding: clamp(1.2rem, 2.6vw, 1.8rem);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.bcard:nth-child(2n) { box-shadow: 8px 8px 0 var(--marigold); }
.bcard:nth-child(3n) { box-shadow: 8px 8px 0 var(--turquoise); }
.bcard:hover { transform: translate(-2px, -2px); box-shadow: 11px 11px 0 var(--tomato); }
.bcard:nth-child(2n):hover { box-shadow: 11px 11px 0 var(--marigold); }
.bcard:nth-child(3n):hover { box-shadow: 11px 11px 0 var(--turquoise); }
.bcard--accent { background: var(--marigold); }
.bcard h3 { margin-bottom: 0.55rem; }
.bcard p { font-size: 0.99rem; }

/* Hand-built CSS icons — no icon library */
.bicon {
  display: block; width: 44px; height: 44px; margin-bottom: 0.9rem;
  border: 3px solid var(--navy); border-radius: var(--r);
  position: relative; background: var(--white); flex: none;
}
.bicon::before, .bicon::after { content: ""; position: absolute; }
/* map pin */
.bicon--pin::before {
  width: 14px; height: 14px; border: 3px solid var(--tomato); border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); left: 11px; top: 8px;
}
.bicon--pin::after { width: 18px; height: 3px; background: var(--navy); left: 9px; bottom: 8px; }
/* split / divide */
.bicon--split::before { left: 6px; right: 6px; top: 12px; height: 6px; background: var(--turquoise); }
.bicon--split::after  { left: 6px; right: 6px; bottom: 12px; height: 6px; background: var(--marigold); }
/* checkmark */
.bicon--check::before {
  width: 9px; height: 18px; border-right: 4px solid var(--turquoise); border-bottom: 4px solid var(--turquoise);
  transform: rotate(42deg); left: 15px; top: 8px;
}
/* padlock */
.bicon--lock::before { width: 20px; height: 12px; background: var(--navy); left: 9px; bottom: 8px; border-radius: 2px; }
.bicon--lock::after  { width: 14px; height: 12px; border: 3px solid var(--tomato); border-bottom: 0; border-radius: 7px 7px 0 0; left: 12px; top: 8px; }
/* price tag */
.bicon--tag::before {
  width: 20px; height: 20px; background: var(--marigold); border: 2.5px solid var(--navy);
  left: 8px; top: 8px; border-radius: 3px; transform: rotate(45deg);
}
.bicon--tag::after { width: 5px; height: 5px; background: var(--navy); border-radius: 50%; left: 18px; top: 13px; }
/* expand arrows */
.bicon--expand::before {
  left: 9px; top: 9px; width: 14px; height: 14px;
  border-left: 4px solid var(--tomato); border-top: 4px solid var(--tomato);
}
.bicon--expand::after {
  right: 9px; bottom: 9px; width: 14px; height: 14px;
  border-right: 4px solid var(--navy); border-bottom: 4px solid var(--navy);
}

/* ---------- 9. Pricing ---------- */
.pricing { padding-block: var(--sec-pad); background: var(--paper-2); }
.price-grid { display: grid; gap: clamp(1.3rem, 3vw, 2rem); align-items: start; }
@media (min-width: 900px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

.pcard {
  display: flex; flex-direction: column;
  background: var(--white); border: var(--bd); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: clamp(1.3rem, 3vw, 1.9rem);
  position: relative;
}
.pcard--feature {
  background: var(--navy); color: var(--paper);
  border-color: var(--navy); box-shadow: 12px 12px 0 var(--tomato);
  outline: 4px solid var(--marigold); outline-offset: -12px;
}
@media (min-width: 900px) { .pcard--feature { transform: scale(1.035); z-index: 2; } }

.pcard__flag {
  position: absolute; top: -1.05rem; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--marigold); color: var(--navy);
  border: var(--bd); border-radius: 999px;
  font-family: var(--f-cond); font-weight: 700; font-size: 0.83rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 0.22rem 0.9rem; white-space: nowrap;
  box-shadow: 3px 3px 0 var(--navy);
}
.pcard__kicker {
  font-family: var(--f-cond); font-weight: 700; font-size: 1.15rem;
  letter-spacing: 0.17em; text-transform: uppercase;
}
.pcard--feature .pcard__kicker { color: var(--marigold); }
.pcard__price {
  font-family: var(--f-display); font-size: clamp(3rem, 7vw, 4.1rem);
  line-height: 0.95; margin: 0.15rem 0 0.5rem;
}
.pcard__price .cur { font-size: 0.48em; vertical-align: 0.55em; margin-right: 0.06em; }
.pcard__size {
  font-family: var(--f-cond); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-top: 2px dashed var(--rule); padding-top: 0.7rem; margin-bottom: 0.9rem;
}
.pcard--feature .pcard__size { border-top-color: rgba(255, 244, 216, 0.28); }

/* Proportional ad-size demo blocks (widths/aspects mirror the real dimensions) */
.ratio-demo {
  border: 3px solid var(--navy); border-radius: 2px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  font-family: var(--f-cond); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.12em; color: var(--navy);
  background: repeating-linear-gradient(45deg, rgba(16,36,62,0.06) 0 6px, transparent 6px 12px);
}
.pcard--feature .ratio-demo { border-color: var(--marigold); color: var(--paper);
  background: repeating-linear-gradient(45deg, rgba(245,185,40,0.18) 0 6px, transparent 6px 12px); }
/* One shared unit = one inch, so the three demos are true to scale
   against each other as well as internally. */
.ratio-demo { --in: clamp(20px, 4.6vw, 33px); }
.ratio-demo--sm { width: calc(4 * var(--in));   height: calc(1.75 * var(--in)); }
.ratio-demo--md { width: calc(3.5 * var(--in)); height: calc(3 * var(--in)); }
.ratio-demo--lg { width: calc(4 * var(--in));   height: calc(4.5 * var(--in)); }

.pcard__inc, .pcard__ideal { font-size: 0.96rem; margin-bottom: 0.8rem; }
.pcard__ideal { margin-bottom: auto; padding-bottom: 1.3rem; }

.price-note {
  margin-top: 1.6rem; font-size: 0.96rem; display: flex; gap: 0.5rem; align-items: flex-start;
  background: var(--white); border: 2.5px dashed var(--navy); border-radius: var(--r);
  padding: 0.8rem 1rem; max-width: 62ch;
}
.price-note__mark { color: var(--tomato); font-size: 1.15rem; line-height: 1; }

/* Frequency choice strip */
.choice-strip {
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--turquoise); color: var(--white);
  border: var(--bd); border-radius: var(--r); box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 1.9rem);
}
.choice-strip__title { color: var(--white); margin-bottom: 1.1rem; }
.choice-strip__opts { display: grid; gap: 1rem; }
@media (min-width: 760px) { .choice-strip__opts { grid-template-columns: repeat(2, 1fr); } }
.choice { background: var(--white); color: var(--navy); border: var(--bd); border-radius: var(--r); padding: 1.1rem; }
.choice__name {
  font-family: var(--f-cond); font-weight: 700; font-size: 1.3rem;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.35rem;
}
.choice__desc { font-size: 0.96rem; margin-bottom: 0.7rem; }

/* ---------- 10. How it works ---------- */
.how {
  padding-block: var(--sec-pad);
  background: var(--navy); color: var(--paper);
  border-block: var(--bd-thick);
}
.how .big-head { color: var(--white); max-width: 22ch; }

.steps { list-style: none; padding: 0; margin: 2.6rem 0 0; display: grid; gap: clamp(1.2rem, 3vw, 2rem); counter-reset: s; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative; background: var(--paper); color: var(--navy);
  border: var(--bd); border-radius: var(--r); box-shadow: 9px 9px 0 var(--marigold);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.2rem, 2.6vw, 1.8rem) clamp(1.2rem, 2.6vw, 1.8rem);
  margin-top: 1.4rem;
}
.step__num {
  position: absolute; top: -1.35rem; left: 1.2rem;
  width: 2.7rem; height: 2.7rem; display: grid; place-items: center;
  font-family: var(--f-display); font-size: 1.5rem;
  background: var(--tomato); color: var(--white);
  border: var(--bd); border-radius: 50%;
  transform: rotate(-6deg);
}
/* connector arrow between steps on wide screens */
@media (min-width: 860px) {
  .step:not(:last-child)::after {
    content: "→"; position: absolute; right: -1.35rem; top: 50%;
    transform: translateY(-50%); font-size: 1.6rem; color: var(--marigold); z-index: 3;
  }
}
.step h3 { margin-bottom: 0.55rem; }
.step p { font-size: 0.99rem; }
.step__link { margin-top: 0.9rem; }
.how-note {
  margin-top: 2rem; max-width: 68ch;
  border-left: 6px solid var(--marigold); padding-left: 1rem;
  color: rgba(255, 244, 216, 0.94); font-size: 1rem;
}

/* ---------- 11. FAQ ---------- */
.faq { padding-block: var(--sec-pad); }
.accordion { margin-top: 2rem; border-top: var(--bd); }
.acc-item { border-bottom: var(--bd); background: var(--white); }
.acc-item + .acc-item { margin-top: 0; }
.acc-h { margin: 0; font-family: inherit; font-size: inherit; }

.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left; cursor: pointer;
  background: var(--white); color: var(--navy); border: 0;
  padding: 1.1rem clamp(0.85rem, 2.5vw, 1.3rem);
  font-family: var(--f-cond); font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem); line-height: 1.2;
  letter-spacing: 0.01em;
  transition: background-color 0.15s ease;
}
.acc-btn:hover { background: var(--marigold); }
.acc-btn[aria-expanded="true"] { background: var(--marigold); }

/* plus/minus indicator */
.acc-ind {
  flex: none; width: 30px; height: 30px; position: relative;
  border: 2.5px solid var(--navy); border-radius: 50%; background: var(--white);
}
.acc-ind::before, .acc-ind::after {
  content: ""; position: absolute; background: var(--navy);
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.acc-ind::before { width: 13px; height: 3px; }
.acc-ind::after  { width: 3px; height: 13px; transition: opacity 0.15s ease, transform 0.15s ease; }
.acc-btn[aria-expanded="true"] .acc-ind::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

/* JS collapses panels; without JS every answer stays visible and readable. */
.js .acc-panel[hidden] { display: none; }
.acc-panel__in {
  padding: 0 clamp(0.85rem, 2.5vw, 1.3rem) 1.35rem;
  border-top: 2px dashed var(--rule);
  padding-top: 1.1rem;
  max-width: 72ch;
}
.acc-panel__in p + p { margin-top: 0.85rem; }

/* ---------- 12. Contact ---------- */
.contact {
  padding-block: var(--sec-pad);
  background: var(--navy); color: var(--paper);
  border-block: var(--bd-thick);
}
.contact .big-head { color: var(--white); }
.contact-grid { display: grid; gap: clamp(1.5rem, 3.5vw, 2.5rem); align-items: start; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1.35fr 0.65fr; } }

.cform {
  background: var(--paper); color: var(--navy);
  border: var(--bd); border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid; gap: 1.05rem;
}
.field { display: grid; gap: 0.35rem; }
.field-row { display: grid; gap: 1.05rem; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }

.cform label {
  font-family: var(--f-cond); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.req { color: var(--red-ink); }

.cform input[type="text"], .cform input[type="email"], .cform input[type="tel"],
.cform select, .cform textarea {
  font: inherit; font-size: 1rem; color: var(--navy);
  background: var(--white);
  border: 2.5px solid var(--navy); border-radius: var(--r);
  padding: 0.65rem 0.75rem; width: 100%;
}
.cform textarea { resize: vertical; min-height: 110px; }
.cform input::placeholder { color: #6b7a8c; }

.hint { font-size: 0.85rem; color: #3e5570; }
.err {
  font-size: 0.88rem; font-weight: 600; color: #8f1c12;
  background: #FFE3E0; border-left: 4px solid var(--red-ink);
  padding: 0.35rem 0.6rem; border-radius: 2px;
}
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea {
  border-color: var(--red-ink); background: #FFF6F5;
}

.field--check {
  grid-template-columns: auto 1fr; align-items: start; gap: 0.6rem;
  background: var(--white); border: 2.5px dashed var(--navy);
  border-radius: var(--r); padding: 0.85rem;
}
.field--check input { width: 1.35rem; height: 1.35rem; accent-color: var(--red-ink); margin-top: 0.15rem; }
.field--check label { text-transform: none; letter-spacing: 0; font-family: var(--f-body); font-weight: 500; font-size: 0.98rem; }
.field--check .err { grid-column: 1 / -1; }

.form-status:empty { display: none; }
.form-status {
  border: 3px solid var(--navy); border-radius: var(--r);
  background: var(--marigold); color: var(--navy);
  padding: 0.9rem 1rem; font-size: 0.98rem; font-weight: 500;
}
.form-status a { font-weight: 700; }
.form-status.is-error { background: #FFE3E0; border-color: var(--red-ink); }
/* Raw reason from the form service — useful, but secondary to the phone number. */
.form-status__detail { display: inline-block; font-size: 0.86em; color: #5a2a25; }

.contact-card {
  position: relative;
  background: var(--marigold); color: var(--navy);
  border: var(--bd); border-radius: var(--r); box-shadow: 10px 10px 0 var(--tomato);
  padding: clamp(1.3rem, 3vw, 1.9rem);
}
.contact-card__mark { font-family: var(--f-display); font-size: clamp(1.7rem, 4vw, 2.3rem); line-height: 1; margin-bottom: 0.9rem; }
.contact-card address { font-style: normal; display: grid; gap: 0.7rem; }
.contact-card__addr {
  font-family: var(--f-cond); font-weight: 700; font-size: 1.35rem;
  line-height: 1.2; letter-spacing: 0.04em; text-decoration: none;
  border-bottom: 3px solid var(--navy); padding-bottom: 0.5rem;
}
.contact-card__addr:hover { color: var(--red-ink); }
.contact-card__tel {
  font-family: var(--f-display); font-size: clamp(1.35rem, 3.4vw, 1.75rem);
  text-decoration: none; letter-spacing: -0.01em;
}
.contact-card__tel:hover { color: var(--red-ink); }
.contact-card__note { font-size: 0.95rem; margin-top: 1rem; }
.contact-card__stamp {
  display: inline-block; margin-top: 1.2rem;
  font-family: var(--f-cond); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.16em; text-transform: uppercase; text-align: center; line-height: 1.2;
  border: 2.5px solid var(--navy); padding: 0.4rem 0.7rem;
  transform: rotate(-3deg); background: var(--paper);
}

/* ---------- 13. Final conversion ---------- */
.final {
  position: relative; overflow: hidden;
  padding-block: var(--sec-pad);
  background: var(--red-ink); color: var(--paper);
  border-bottom: var(--bd-thick);
}
.final-inner { position: relative; z-index: 1; text-align: center; }
.final .huge-head { color: var(--white); margin-bottom: 1.1rem; }
.final p { max-width: 60ch; margin-inline: auto; margin-bottom: 0.9rem; }
.final-note { font-size: 0.95rem; opacity: 0.93; }
.final-stamp {
  display: inline-block; margin-top: 1.4rem;
  font-family: var(--f-cond); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 2.5px solid var(--navy); background: var(--marigold); color: var(--navy);
  padding: 0.45rem 1rem; transform: rotate(-1.2deg);
  box-shadow: 4px 4px 0 var(--navy);
}

/* ---------- 14. Footer ---------- */
.site-footer { background: var(--navy); color: var(--paper); padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem; }
.footer-grid { display: grid; gap: 1.8rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-mark {
  font-family: var(--f-display); font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1; color: var(--marigold); margin-bottom: 0.7rem;
}
.footer-addr { font-style: normal; line-height: 1.6; }
.footer-addr a { font-family: var(--f-display); font-size: 1.2rem; text-decoration: none; display: inline-block; margin-top: 0.4rem; }
.footer-addr a:hover { color: var(--marigold); }
.footer-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.footer-nav a {
  font-family: var(--f-cond); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  border-bottom: 2px solid transparent;
}
.footer-nav a:hover { border-bottom-color: var(--marigold); }
.footer-disclaimer { font-size: 0.9rem; color: rgba(255, 244, 216, 0.82); border-left: 4px solid var(--tomato); padding-left: 0.9rem; }
.footer-base {
  margin-top: 2rem; padding-top: 1.2rem;
  border-top: 2px solid rgba(255, 244, 216, 0.25);
  font-size: 0.9rem; color: rgba(255, 244, 216, 0.85);
}

/* ---------- 14b. Submit-materials page ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-bottom: var(--bd-thick);
}
/* Matches .wrap--form below so the hero and the form share a left edge. */
.page-hero__inner { position: relative; z-index: 1; max-width: 1080px; }
.page-hero h1 { max-width: 18ch; }
.page-hero h1 { margin-bottom: 0.9rem; }
.page-hero .lede { margin-bottom: 1.8rem; max-width: 62ch; }
.page-hero__note { margin-top: 1.5rem; font-size: 0.98rem; }

/* Three-step progress trail */
.stepper {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.7rem;
}
@media (min-width: 760px) { .stepper { grid-template-columns: repeat(3, 1fr); } }
.stepper__item {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  background: var(--white); border: var(--bd); border-radius: var(--r);
  box-shadow: 4px 4px 0 var(--navy);
  padding: 0.7rem 0.9rem;
  font-family: var(--f-cond); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.stepper__item.is-current { background: var(--marigold); box-shadow: 6px 6px 0 var(--tomato); }
.stepper__n {
  flex: none; width: 1.9rem; height: 1.9rem; display: grid; place-items: center;
  font-family: var(--f-display); font-size: 1rem;
  background: var(--navy); color: var(--paper); border-radius: 50%;
}
.stepper__item.is-current .stepper__n { background: var(--red-ink); }
.stepper__state {
  margin-left: auto;
  font-size: 0.72rem; letter-spacing: 0.14em;
  border: 2px solid var(--navy); border-radius: 999px;
  padding: 0.1rem 0.55rem; white-space: nowrap;
}

.submit-section { padding-block: var(--sec-pad); }
.wrap--form { max-width: 1080px; display: grid; gap: clamp(1.5rem, 3.5vw, 2.5rem); align-items: start; }
@media (min-width: 980px) {
  .wrap--form { grid-template-columns: minmax(0, 1fr) 300px; }
  /* Heading and intro span both columns above the form */
  .wrap--form > h2, .wrap--form > .section-intro { grid-column: 1 / -1; margin-bottom: 0; }
  .submit-aside { position: sticky; top: 104px; }
}
.cform--long { gap: 0; }

/* Numbered field groups */
.fset { border: 0; padding: 0; margin: 0 0 2.2rem; }
.fset:last-of-type { margin-bottom: 1.6rem; }
.fset__legend {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-display); font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.1; padding: 0; margin-bottom: 0.35rem;
  border-bottom: 3px solid var(--navy); padding-bottom: 0.7rem; width: 100%;
}
.fset__n {
  flex: none; width: 2.1rem; height: 2.1rem; display: grid; place-items: center;
  font-size: 1.1rem; background: var(--tomato); color: var(--white);
  border: 2.5px solid var(--navy); border-radius: 50%;
  transform: rotate(-5deg);
}
.fset__intro { font-size: 0.95rem; margin: 0.9rem 0 0; max-width: 62ch; }
/* Space between the fields inside a group */
.fset .field, .fset .field-row { margin-top: 1.05rem; }

.field__legend {
  font-family: var(--f-cond); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.radio-set { display: grid; gap: 0.6rem; margin-top: 0.5rem; }
/* Scoped to .cform so it outranks the uppercase `.cform label` rule — these
   labels are full sentences, not field names. */
.cform .radio {
  display: grid; grid-template-columns: auto 1fr; gap: 0.6rem; align-items: start;
  background: var(--white); border: 2.5px solid var(--navy); border-radius: var(--r);
  padding: 0.8rem; cursor: pointer;
  font-family: var(--f-body); font-weight: 400; font-size: 0.97rem;
  text-transform: none; letter-spacing: 0;
}
.cform .radio input { width: 1.25rem; height: 1.25rem; accent-color: var(--red-ink); margin-top: 0.1rem; }
.cform .radio:hover { background: var(--paper-2); }
.cform .radio:has(input:checked) { background: var(--marigold); box-shadow: 4px 4px 0 var(--navy); }
.field--radios.is-invalid .radio { border-color: var(--red-ink); }

.form-footnote {
  margin-top: 1.2rem; font-size: 0.88rem; color: #3e5570;
  border-top: 2px dashed var(--rule); padding-top: 0.9rem;
}

.submit-aside {
  background: var(--navy); color: var(--paper);
  border: var(--bd); border-radius: var(--r); box-shadow: 10px 10px 0 var(--marigold);
  padding: clamp(1.2rem, 3vw, 1.6rem);
}
.submit-aside__mark {
  font-family: var(--f-display); font-size: 1.6rem; line-height: 1;
  color: var(--marigold); margin-bottom: 0.7rem;
}
.submit-aside p { font-size: 0.95rem; margin-bottom: 0.9rem; }
.submit-aside .contact-card__tel { color: var(--white); }
.submit-aside .contact-card__tel:hover { color: var(--marigold); }
.submit-aside__addr { font-style: normal; margin-top: 0.8rem; font-size: 0.92rem; }
.submit-aside__addr a { color: rgba(255, 244, 216, 0.92); }

/* ---------- 14c. Areas We Serve ---------- */
.area-hero__meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem;
}
.area-tag {
  font-family: var(--f-cond); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--white); border: 2.5px solid var(--navy);
  padding: 0.25rem 0.7rem; box-shadow: 3px 3px 0 var(--turquoise);
}
.area-tag--alt { box-shadow: 3px 3px 0 var(--tomato); }

/* Hub page grid of towns */
.areas-grid { list-style: none; padding: 0; margin: 2.5rem 0 0; display: grid; gap: clamp(1rem, 2.2vw, 1.4rem); }
@media (min-width: 640px)  { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  display: flex; flex-direction: column;
  background: var(--paper); color: var(--navy);
  border: var(--bd); border-radius: var(--r);
  box-shadow: 8px 8px 0 var(--turquoise);
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.area-card:nth-child(3n+1) { box-shadow: 8px 8px 0 var(--tomato); }
.area-card:nth-child(3n+2) { box-shadow: 8px 8px 0 var(--marigold); }
.area-card:hover { transform: translate(-2px, -2px); }
.area-card h3 { margin-bottom: 0.15rem; }
.area-card__kind {
  font-family: var(--f-cond); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: #3e5570;
  margin-bottom: 0.6rem;
}
.area-card p { font-size: 0.95rem; margin-bottom: 1rem; }
.area-card .link-arrow { margin-top: auto; align-self: flex-start; }

/* About + why-advertise on a town page */
.area-about { padding-block: var(--sec-pad); }
.area-about__body { max-width: 68ch; }
.area-about__body p + p { margin-top: 1rem; }

.why-grid { list-style: none; padding: 0; margin: 2.4rem 0 0; display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); }
@media (min-width: 860px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--paper); color: var(--navy);
  border: var(--bd); border-radius: var(--r); box-shadow: 8px 8px 0 var(--marigold);
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
}
.why-card:nth-child(2) { box-shadow: 8px 8px 0 var(--tomato); }
.why-card:nth-child(3) { box-shadow: 8px 8px 0 var(--turquoise); }
.why-card__n {
  display: inline-grid; place-items: center; width: 2.2rem; height: 2.2rem;
  font-family: var(--f-display); font-size: 1.1rem;
  background: var(--navy); color: var(--paper); border-radius: 50%;
  margin-bottom: 0.8rem; transform: rotate(-5deg);
}
.why-card h3 { margin-bottom: 0.5rem; }
.why-card p { font-size: 0.97rem; }

/* Compact buy row so a town page can close the sale on its own */
.buy-row { list-style: none; padding: 0; margin: 2.2rem 0 0; display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); }
@media (min-width: 800px) { .buy-row { grid-template-columns: repeat(3, 1fr); } }
.buy-card {
  display: flex; flex-direction: column; text-align: center;
  background: var(--white); border: var(--bd); border-radius: var(--r);
  box-shadow: var(--shadow); padding: clamp(1.1rem, 2.4vw, 1.5rem);
}
.buy-card--feature { background: var(--navy); color: var(--paper); box-shadow: 8px 8px 0 var(--tomato); }
.buy-card__name {
  font-family: var(--f-cond); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.buy-card--feature .buy-card__name { color: var(--marigold); }
.buy-card__price { font-family: var(--f-display); font-size: clamp(2.4rem, 5vw, 3.1rem); line-height: 1; margin: 0.1rem 0 0.35rem; }
.buy-card__price .cur { font-size: 0.48em; vertical-align: 0.55em; }
.buy-card__size {
  font-family: var(--f-cond); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem;
}
.buy-card .btn { margin-top: auto; }

/* Coverage honesty note */
.coverage-note {
  margin-top: 2rem; max-width: 70ch;
  background: var(--white); border: 2.5px dashed var(--navy); border-radius: var(--r);
  padding: 1rem 1.2rem; font-size: 0.95rem;
}
.coverage-note strong { display: block; margin-bottom: 0.3rem; }

/* Nearby towns */
.nearby { padding-block: clamp(2.5rem, 5vw, 3.5rem); border-top: var(--bd-thick); }
.nearby__list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.nearby__list a {
  display: inline-block; text-decoration: none;
  font-family: var(--f-cond); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--white); border: 2.5px solid var(--navy); border-radius: var(--r);
  padding: 0.4rem 0.9rem; box-shadow: 3px 3px 0 var(--navy);
}
.nearby__list a:hover { background: var(--marigold); transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--navy); }

/* ---------- 15. Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 0.6rem;
  padding: 0.6rem var(--pad) calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: var(--paper); border-top: var(--bd);
  box-shadow: 0 -8px 18px rgba(16, 36, 62, 0.16);
  transition: transform 0.25s ease;
}
.mobile-cta .btn { flex: 1; font-size: 1rem; padding: 0.7rem 0.5rem; box-shadow: 3px 3px 0 var(--navy); }
@media (max-width: 899px) {
  .mobile-cta { display: flex; }
  /* keep the bar from covering the last of the page (only where the bar exists) */
  body:has(.mobile-cta) { padding-bottom: 78px; }
}
/* JS adds this while the contact form or footer is on screen */
.mobile-cta.is-hidden { transform: translateY(115%); }

/* ---------- 16. Motion ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.js .reveal { transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-in { opacity: 1; transform: none; }
/* Without JS nothing can un-hide the elements, so they must start visible. */
html:not(.js) .reveal { opacity: 1; transform: none; }

@keyframes floaty { from { transform: translateY(0); } to { transform: translateY(-11px); } }
.float-slow, .float-med, .float-fast { animation: floaty 5.5s ease-in-out infinite alternate; }
.float-med  { animation-duration: 4.2s; }
.float-fast { animation-duration: 3.4s; }
/* the rotated elements keep their rotation inside the float */
.loc-label.float-slow { animation-name: floaty-rot-loc; }
@keyframes floaty-rot-loc {
  from { transform: rotate(-2.5deg) translateY(0); }
  to   { transform: rotate(-2.5deg) translateY(-8px); }
}
.cat-stamp.float-med { animation-name: floaty-rot-stamp; }
@keyframes floaty-rot-stamp {
  from { transform: rotate(-13deg) translateY(0); }
  to   { transform: rotate(-13deg) translateY(-9px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .bcard:hover { transform: none; }
}

/* ---------- Small-screen tightening (down to 320px) ---------- */
@media (max-width: 400px) {
  .fact-strip { grid-template-columns: 1fr; }
  .fact-strip li { display: flex; align-items: baseline; gap: 0.6rem; justify-content: center; }
  .fact-strip__num { font-size: 1.7rem; }
  .fact-strip__label { margin-top: 0; }
  .cta-row .btn { width: 100%; }
  .cat-stamp { right: 0; bottom: -0.5rem; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .mobile-cta, .deco, .halftone { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
