/* ==========================================================================
   NeighborSaver — shared site styles
   Recreated from design/handoff/ (design system documented in its README).
   Plain CSS, no build step. Design tokens live in :root below.
   ========================================================================== */

:root {
  --green: #1F6B45;
  --green-hover: #18563A;
  --green-tint: #EAF3EE;
  --green-soft: #5FA57F;      /* footer wordmark "Saver" */
  --gold: #F2B84B;
  --ink: #26221B;             /* headings */
  --body: #454037;            /* primary body */
  --body-2: #5F5850;          /* paragraph / secondary */
  --muted: #6F695E;           /* meta / small print */
  --bg: #FAF8F5;              /* page background */
  --white: #FFFFFF;
  --border: #E8E2D8;
  --border-input: #D5CFC4;
  --divider: #F1EDE6;         /* subtle divider / info-box bg */
  --footer-bg: #26221B;
  --footer-body: #B8B2A6;
  --footer-link: #DAD5CB;
  --footer-muted: #9A948A;
  --util-bg: #26221B;
  --util-text: #C9C3B8;
  --util-link: #F0EBE2;

  /* sample-work accent tones */
  --terracotta: #C96F4A;
  --terracotta-bg: #F6E9DE;
  --mustard: #C99A2E;
  --mustard-bg: #F7EED9;

  --radius-btn: 8px;
  --radius-card: 12px;
  --maxw: 1120px;
  --maxw-narrow: 760px;
  --maxw-legal: 720px;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Public Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

a { color: var(--green); }

.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.container--narrow { max-width: var(--maxw-narrow); }
.container--legal { max-width: var(--maxw-legal); }

/* Visually-hidden (skip link, labels) */
.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;
}
.skip-link {
  position: absolute; left: 8px; top: -48px;
  background: var(--green); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-btn); z-index: 100; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
h1, h2, h3 { color: var(--ink); }

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green);
}
.eyebrow--muted { color: var(--muted); }

.lead {
  font-size: 18px; line-height: 1.6; color: var(--body-2);
  text-wrap: pretty;
}
.fineprint { font-size: 14px; line-height: 1.6; color: var(--muted); }

.section { padding: clamp(48px, 7vw, 88px) 0; }
.section--tight { padding: clamp(48px, 6vw, 72px) 0; }
.section--white { background: var(--white); }
.bordered-top { border-top: 1px solid var(--border); }
.bordered-bottom { border-bottom: 1px solid var(--border); }

.section-head { margin-bottom: 40px; }
.section-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.5vw, 34px); font-weight: 800; letter-spacing: -0.01em;
}
.section-sub { margin: 0; max-width: 640px; font-size: 17px; line-height: 1.6; color: var(--body-2); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  font-weight: 700; border-radius: var(--radius-btn);
  cursor: pointer; font-family: inherit; border: 2px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn--primary:hover { background: var(--green-hover); border-color: var(--green-hover); }
.btn--nav { font-size: 15px; padding: 11px 22px; white-space: nowrap; }
.btn--hero { font-size: 17px; padding: 15px 32px; }
.btn--cta { font-size: 16px; padding: 14px 32px; white-space: nowrap; }
.btn--outline {
  background: var(--white); color: var(--green); border-color: var(--green);
}
.btn--outline:hover { background: var(--green-tint); }
.btn--on-green { background: #fff; color: var(--green); border-color: #fff; padding: 15px 36px; font-size: 17px; }
.btn--on-green:hover { background: var(--green-tint); border-color: var(--green-tint); }

.text-link { color: var(--green); text-decoration: none; font-weight: 600; }
.text-link:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.utility-bar { background: var(--util-bg); color: var(--util-text); font-size: 13px; }
.utility-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; padding-top: 7px; padding-bottom: 7px;
}
.utility-inner a { color: var(--util-link); text-decoration: none; }
.utility-contact { display: flex; gap: 18px; flex-wrap: wrap; }
.utility-contact a { font-weight: 600; }

.header-main {
  display: flex; align-items: center; gap: 20px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.brand-mark {
  width: 36px; height: 36px; background: var(--green); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.brand-name {
  font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink);
}
.brand-name span { color: var(--green); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.primary-nav { display: flex; align-items: center; gap: 24px; }
.nav-link {
  color: var(--body); text-decoration: none; font-size: 15px; font-weight: 600;
  padding: 4px 0; border-bottom: 2px solid transparent;
}
.nav-link:hover { color: var(--green); }
.nav-link.is-active { color: var(--green); border-bottom-color: var(--green); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border); border-radius: 8px;
  padding: 9px 11px; cursor: pointer; flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); }

.mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--white); }
.mobile-nav.is-open { display: flex; flex-direction: column; padding: 8px 24px 16px; }
.mobile-nav .nav-link {
  font-size: 16px; padding: 12px 0; border-bottom: 1px solid var(--divider);
}
.mobile-nav .nav-link.is-active { border-bottom-color: var(--divider); }
.mobile-nav .mobile-call {
  color: var(--green); text-decoration: none; font-size: 16px; font-weight: 700;
  padding: 14px 0 4px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { background: var(--white); }
.hero-inner {
  display: flex; flex-wrap: wrap; gap: 48px; align-items: center;
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(48px, 7vw, 88px);
}
.hero-copy { flex: 1 1 420px; min-width: 300px; }
.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.5vw, 52px); line-height: 1.08; font-weight: 800;
  letter-spacing: -0.02em; text-wrap: pretty;
}
.hero-copy .lead { margin: 0 0 28px; font-size: clamp(17px, 2vw, 19px); max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-note { margin: 20px 0 0; font-size: 13px; color: var(--muted); }

/* Hero visual: map + postcard, drawn with CSS over the map image */
.hero-visual { flex: 1 1 380px; min-width: 300px; position: relative; height: 400px; }
.map-frame {
  position: absolute; inset: 0 0 20px 0; border-radius: 18px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(38,34,27,.06), 0 16px 40px rgba(38,34,27,.10);
}
.map-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.map-ring, .map-halo, .map-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.map-ring { width: 250px; height: 250px; border: 1.5px solid rgba(31,107,69,.45); border-radius: 50%; background: rgba(31,107,69,.09); }
.map-halo { width: 34px; height: 34px; background: rgba(31,107,69,.18); border-radius: 50%; }
.map-dot { width: 15px; height: 15px; background: var(--green); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 1px 5px rgba(0,0,0,.30); }
.map-pill {
  position: absolute; top: 16px; left: 16px;
  display: flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 999px; padding: 8px 15px;
  font-size: 13px; font-weight: 600; color: var(--body);
  box-shadow: 0 2px 10px rgba(38,34,27,.14);
}
.map-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.postcard {
  position: absolute; right: 14px; bottom: -14px; width: min(330px, 82%);
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 6px rgba(38,34,27,.08), 0 24px 48px rgba(38,34,27,.18);
  transform: rotate(-1.5deg); padding: 18px; display: flex; gap: 16px;
}
.postcard-art {
  flex: 1.1; min-height: 118px; border-radius: 8px;
  background: linear-gradient(140deg, #2A7A52 0%, #1B5C3B 100%);
  position: relative; overflow: hidden;
}
.postcard-art .stamp { position: absolute; top: 12px; left: 12px; width: 26px; height: 26px; border-radius: 50%; background: var(--gold); }
.postcard-art .line-1 { position: absolute; bottom: 28px; left: 12px; width: 64%; height: 8px; border-radius: 4px; background: rgba(255,255,255,.9); }
.postcard-art .line-2 { position: absolute; bottom: 13px; left: 12px; width: 44%; height: 7px; border-radius: 4px; background: rgba(255,255,255,.45); }
.postcard-divider { width: 1px; background: #EFEBE2; }
.postcard-back { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.postage-mark {
  align-self: flex-end; border: 1px solid #E5E0D6; border-radius: 4px;
  padding: 6px 9px; font-size: 8.5px; line-height: 1.45; color: #A69E8F;
  text-align: center; letter-spacing: .02em;
}
.postcard-addr { margin-top: auto; display: flex; flex-direction: column; gap: 6px; }
.postcard-addr span { height: 6px; background: #EDE9DF; border-radius: 3px; }

/* --------------------------------------------------------------------------
   Trust bar
   -------------------------------------------------------------------------- */
.trust-bar { background: var(--bg); }
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px; padding: 36px 0;
}
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-item p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--body); }
.trust-item strong { color: var(--ink); }
.check-chip {
  width: 34px; height: 34px; flex-shrink: 0; background: var(--green-tint);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--green); font-weight: 800; font-size: 15px;
}

/* --------------------------------------------------------------------------
   Steps (home teaser + how it works)
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px;
}
.step-num {
  display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center;
  background: var(--ink); color: #fff; border-radius: 50%; font-weight: 700; font-size: 16px;
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.step p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body-2); }

/* Vertical numbered steps (How It Works, Order) */
.steps-list { display: flex; flex-direction: column; gap: 36px; }
.step-row { display: flex; gap: 20px; }
.step-row .step-num {
  flex-shrink: 0; width: 40px; height: 40px; font-size: 17px; margin-bottom: 0;
}
.step-num--green { background: var(--green); }
.step-row h3 { margin: 2px 0 8px; font-size: 19px; font-weight: 700; }
.step-row p { margin: 0 0 8px; font-size: 16px; line-height: 1.65; color: var(--body-2); }
.step-row p:last-child { margin-bottom: 0; }

/* Compact numbered list (Order "what happens after") */
.numbered { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.numbered li { display: flex; gap: 14px; font-size: 16px; line-height: 1.6; color: var(--body); }
.numbered .step-num { width: 28px; height: 28px; font-size: 13px; margin-bottom: 0; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Cards / option cards / grids
   -------------------------------------------------------------------------- */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 28px;
}
.card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body-2); }

.icon-chip {
  width: 44px; height: 44px; background: var(--green-tint); border-radius: 10px;
  margin-bottom: 18px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.icon-chip .ring-dashed { position: absolute; top: 50%; left: 50%; width: 24px; height: 24px; transform: translate(-50%,-50%); border: 2px dashed var(--green); border-radius: 50%; }
.icon-chip .ring-solid { position: absolute; top: 50%; left: 50%; width: 22px; height: 22px; transform: translate(-50%,-50%); border: 2px solid var(--green); border-radius: 50%; }
.icon-chip .center-dot { position: absolute; top: 50%; left: 50%; width: 6px; height: 6px; transform: translate(-50%,-50%); background: var(--green); border-radius: 50%; }
.icon-chip .center-dot--lg { width: 8px; height: 8px; }
.icon-chip--lines { flex-direction: column; gap: 4px; }
.icon-chip--lines span { width: 22px; height: 3px; background: var(--green); border-radius: 2px; }

/* How-to-choose cards use a subtly different heading size */
.choice-card h3 { font-size: 17px; }
.choice-card { padding: 26px; }

/* --------------------------------------------------------------------------
   Pricing/quote teaser + factors list
   -------------------------------------------------------------------------- */
.pricing-teaser { display: flex; flex-wrap: wrap; gap: 48px; align-items: center; }
.pricing-teaser .copy { flex: 1 1 380px; min-width: 280px; }
.pricing-teaser .copy h2 { margin: 0 0 14px; font-size: clamp(26px,3.5vw,34px); font-weight: 800; letter-spacing: -0.01em; }
.pricing-teaser .copy p { margin: 0 0 14px; font-size: 17px; line-height: 1.6; color: var(--body-2); }
.pricing-teaser .copy p.fineprint { margin: 0; }
.quote-points { flex: 1 1 340px; min-width: 280px; display: flex; flex-direction: column; gap: 12px; }
.quote-point {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start;
}
.quote-point .arrow { color: var(--green); font-weight: 800; }
.quote-point strong { font-size: 15px; display: block; margin-bottom: 2px; }
.quote-point span.sub { display: block; font-size: 13px; color: var(--muted); }

.quote-factors { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.quote-factors li { display: flex; gap: 12px; font-size: 16px; line-height: 1.6; color: var(--body); }
.quote-factors .arrow { color: var(--green); font-weight: 800; }

/* --------------------------------------------------------------------------
   Info box / callout
   -------------------------------------------------------------------------- */
.info-box {
  background: var(--divider); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 24px 28px;
}
.info-box h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.info-box p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--body-2); }
.info-box--contact p { font-size: 14px; }

/* --------------------------------------------------------------------------
   Feature list with checks (How It Works "we check")
   -------------------------------------------------------------------------- */
.check-list {
  margin: 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px;
}
.check-list li { display: flex; gap: 10px; font-size: 15px; line-height: 1.5; color: var(--body); }
.check-list .check { color: var(--green); font-weight: 800; }

/* Stacked prose blocks */
.prose-stack { display: flex; flex-direction: column; gap: 40px; }
.prose-block h2 { margin: 0 0 12px; font-size: clamp(24px,3vw,32px); font-weight: 800; letter-spacing: -0.01em; }
.prose-block p { margin: 0 0 10px; font-size: 16px; line-height: 1.65; color: var(--body-2); }
.prose-block p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Sample work cards (real mailpiece photos)
   -------------------------------------------------------------------------- */
.sample-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.sample-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card);
  overflow: hidden; display: flex; flex-direction: column;
}
.sample-thumb { height: 170px; overflow: hidden; background: var(--bg); }
.sample-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.sample-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.sample-body strong { font-size: 17px; letter-spacing: -0.01em; }
.sample-meta { font-size: 13px; font-weight: 600; }
.sample-body p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--body-2); }

/* Smaller home-teaser sample cards */
.sample-grid--teaser { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.sample-grid--teaser .sample-card { background: var(--bg); }
.sample-grid--teaser .sample-thumb { height: 160px; }
.sample-grid--teaser .sample-body { padding: 20px; gap: 4px; }
.sample-grid--teaser .sample-body strong { font-size: 16px; }

/* Generic feature/benefit grid ("what makes a piece work", "why request a quote") */
.fundamentals-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px;
}
.fundamentals-grid h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.fundamentals-grid p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body-2); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 24px 28px;
}
.faq-item h2 { margin: 0 0 10px; font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.faq-item p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--body-2); }

/* Home FAQ teaser (h3 headings) */
.faq-teaser { display: flex; flex-direction: column; gap: 28px; }
.faq-teaser h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.faq-teaser p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--body-2); }

/* --------------------------------------------------------------------------
   Contact + forms
   -------------------------------------------------------------------------- */
.contact-layout {
  display: flex; flex-wrap: wrap; gap: 56px; align-items: flex-start;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.contact-intro { flex: 1 1 340px; min-width: 280px; }
.contact-intro h1 { margin: 0 0 16px; font-size: clamp(30px,4vw,44px); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; text-wrap: pretty; }
.contact-intro .lead { margin: 0 0 24px; font-size: 17px; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-phone { color: var(--ink); text-decoration: none; font-size: 18px; font-weight: 700; }
.contact-email { color: var(--green); text-decoration: none; font-size: 16px; font-weight: 600; }

.form {
  flex: 1 1 420px; min-width: 300px; background: var(--white);
  border: 1px solid var(--border); border-radius: 14px; padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--body); }
.field input, .field select, .field textarea {
  border: 1px solid var(--border-input); border-radius: 8px; padding: 11px 13px;
  font-size: 15px; font-family: inherit; background: var(--bg); color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green);
}
/* Honeypot — hidden from users, catches bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { margin: 0; font-size: 13px; line-height: 1.5; color: var(--muted); }
.confirm-banner {
  background: var(--green-tint); border: 1px solid var(--green); border-radius: 10px;
  padding: 16px 20px;
}
.confirm-banner p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--green-hover); font-weight: 600; }
.confirm-banner--error { background: #FDF6EC; border-color: #E8D5B0; }
.confirm-banner--error p { color: #6E5A33; }
[hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   Order form embed placeholder
   -------------------------------------------------------------------------- */
.embed-placeholder {
  border: 2px dashed #C9C3B8; border-radius: 14px;
  background: repeating-linear-gradient(45deg, #FAF8F5, #FAF8F5 12px, #F4F0E9 12px, #F4F0E9 24px);
  padding: clamp(48px, 7vw, 80px) 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.embed-tag {
  font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: .06em;
  color: var(--muted); background: #fff; border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 6px;
}
.embed-placeholder p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body-2); max-width: 440px; }

/* --------------------------------------------------------------------------
   CTA strips / bands
   -------------------------------------------------------------------------- */
.cta-strip {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 24px; padding: 40px 0;
}
.cta-strip h2 { margin: 0 0 6px; font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.cta-strip p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--body-2); }

.cta-band { background: var(--green); }
.cta-band-inner { max-width: var(--maxw-narrow); margin: 0 auto; padding: clamp(56px,7vw,80px) 24px; text-align: center; }
.cta-band h2 { margin: 0 0 14px; font-size: clamp(26px,3.5vw,36px); font-weight: 800; letter-spacing: -0.01em; color: #fff; }
.cta-band p { margin: 0 0 30px; font-size: 17px; line-height: 1.6; color: #CFE4D8; }
.cta-band .after { margin: 20px 0 0; font-size: 14px; color: #CFE4D8; }
.cta-band .after a { color: #fff; }

/* --------------------------------------------------------------------------
   Interior page hero
   -------------------------------------------------------------------------- */
.page-hero { background: var(--white); }
.page-hero-inner { padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 72px); }
.page-hero h1 { margin: 0 0 16px; font-size: clamp(30px,4vw,44px); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; text-wrap: pretty; }
.page-hero p { margin: 0 0 14px; font-size: 18px; line-height: 1.6; color: var(--body-2); text-wrap: pretty; }
.page-hero p:last-child { margin-bottom: 0; }
.page-hero p.sub-16 { font-size: 16px; }

/* Two-column option layout (Audience option 1) */
.split { display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start; }
.split .col-copy { flex: 1 1 420px; min-width: 300px; }
.split .col-media { flex: 1 1 340px; min-width: 280px; }
.split .col-copy h2 { margin: 0 0 14px; font-size: clamp(24px,3vw,32px); font-weight: 800; letter-spacing: -0.01em; }
.split .col-copy h2 .muted { color: var(--muted); font-weight: 800; }
.split .col-copy p { margin: 0 0 14px; font-size: 16px; line-height: 1.65; color: var(--body-2); }
.split .col-copy p:last-child { margin-bottom: 0; }

.map-static {
  position: relative; height: 280px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(38,34,27,.06), 0 14px 32px rgba(38,34,27,.10);
}
.map-static img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.map-static .map-ring { width: 190px; height: 190px; }
.map-static .map-halo { width: 28px; height: 28px; }
.map-static .map-dot { width: 13px; height: 13px; }
.map-static .map-pill { top: auto; left: 14px; bottom: 14px; padding: 7px 13px; font-size: 12px; }

/* Single-column option section */
.option-block h2 { margin: 0 0 14px; font-size: clamp(24px,3vw,32px); font-weight: 800; letter-spacing: -0.01em; }
.option-block p { margin: 0 0 14px; font-size: 16px; line-height: 1.65; color: var(--body-2); }
.option-block p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */
.legal h1 { margin: 0 0 12px; font-size: clamp(28px,3.5vw,38px); font-weight: 800; letter-spacing: -0.02em; }
.legal .updated { margin: 0 0 32px; font-size: 14px; color: var(--muted); }
.legal-notice {
  background: var(--divider); border: 1px solid var(--border); border-radius: 10px;
  padding: 18px 22px; margin-bottom: 36px;
}
.legal-notice p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--body-2); font-family: var(--mono); }
.legal-section { margin-bottom: 32px; }
.legal-section h2 { margin: 0 0 10px; font-size: 21px; font-weight: 700; letter-spacing: -0.01em; }
.legal-section p { margin: 0 0 10px; font-size: 16px; line-height: 1.7; color: var(--body-2); }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul, .legal-section ol { margin: 0 0 10px; padding-left: 22px; }
.legal-section ul:last-child, .legal-section ol:last-child { margin-bottom: 0; }
.legal-section li { font-size: 16px; line-height: 1.7; color: var(--body-2); margin-bottom: 6px; }
.legal-section li:last-child { margin-bottom: 0; }
.legal > .container--legal > p:last-child { font-size: 15px; line-height: 1.6; color: var(--body-2); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--footer-bg); color: var(--footer-body); margin-top: auto; }
.footer-top {
  display: flex; flex-wrap: wrap; gap: 48px;
  padding: 56px 24px 32px; max-width: var(--maxw); margin: 0 auto;
}
.footer-brand { flex: 2 1 300px; min-width: 260px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand-name { color: #fff; font-size: 19px; }
.footer-brand .brand-name span { color: var(--green-soft); }
.footer-brand .brand-mark { width: 32px; height: 32px; border-radius: 8px; }
.footer-blurb { margin: 0 0 18px; font-size: 14px; line-height: 1.6; max-width: 380px; }
.footer-nap { margin: 0; font-size: 14px; line-height: 1.7; }
.footer-nap .addr { color: var(--footer-muted); }
.footer-nap a { color: var(--util-link); text-decoration: none; }
.footer-nap a.phone { font-weight: 600; }
.footer-col { flex: 1 1 150px; min-width: 140px; display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--footer-muted); margin-bottom: 4px;
}
.footer-col a { color: var(--footer-link); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-col a.start { color: var(--green-soft); font-weight: 700; }
.footer-bottom { border-top: 1px solid #3A352C; }
.footer-bottom-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--footer-muted);
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-legal a { color: var(--footer-body); text-decoration: none; }
.footer-legal a:hover { color: #fff; }
/* "Cookie settings" reopens the Zaraz consent modal. A real <button> (it
   performs an action, not navigation), styled to read like the legal links. */
.footer-legal-btn {
  color: var(--footer-body); font: inherit; line-height: inherit;
  background: none; border: 0; padding: 0; cursor: pointer;
}
.footer-legal-btn:hover { color: #fff; }
.footer-legal-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; border-radius: 2px; }

/* --------------------------------------------------------------------------
   Responsive — 900px breakpoint (nav collapses)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions { gap: 12px; }
}

/* Small phones: keep the brand + persistent Start Order + hamburger on one
   row without pushing the layout wider than the viewport. */
@media (max-width: 600px) {
  .header-main { gap: 12px; }
  .header-actions { gap: 10px; }
  .brand-mark { width: 30px; height: 30px; border-radius: 8px; }
  .brand-mark svg { width: 18px; height: 18px; }
  .brand-name { font-size: 17px; }
  .btn--nav { padding: 9px 14px; font-size: 14px; }
  .nav-toggle { padding: 7px 9px; }
  .utility-bar { font-size: 12px; }
}

/* Inline form validation message (contact form) */
.field-error { margin: 2px 0 0; font-size: 14px; font-weight: 600; color: #A33B2E; }
.opt-tag { font-weight: 400; color: #6F695E; font-size: 0.85em; }
