/* Main Street Fresh's own pitch page stylesheet. Forked from the reusable
   client-site template early on (see template/css/styles.css for the shared
   original) — this copy is specific to this landing page and safe to diverge
   from the per-client template; do not re-sync it back into template/.

   Design language pass 2026-08-30: big confident type, generous whitespace,
   a blurred translucent nav, pill buttons, borderless tonal cards with soft
   shadows, and tasteful scroll-reveal motion -- inspired by Apple's product
   pages, applied to this venture's own navy/gold brand rather than copying
   their palette. */

:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-alt: #eaf0f8;
  --fg: #2f343d;
  --muted: #646973;
  --muted-2: #646973;   /* was #8b8f97 = 2.83 on the tinted footer, an AA fail */
  --line: #dfe6ef;
  --line-soft: rgba(47, 52, 61, 0.07);
  --line-strong: #c6d1e0;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --focus-ring: #1c1c1a;
  --icon-tint: #e4edf9;
  --shadow-sm: 0 1px 2px rgba(47, 52, 61, 0.05), 0 6px 16px rgba(47, 52, 61, 0.045);
  --shadow-md: 0 2px 4px rgba(47, 52, 61, 0.05), 0 14px 32px rgba(47, 52, 61, 0.09);
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  /* Primary used as a FOREGROUND color (icons, checkmarks, link hover, focus
     rings) needs to diverge from primary-as-a-button-background once the page
     goes dark -- navy text on a near-black surface is unreadable, while navy
     behind white button text stays fine. Two tokens, so dark mode can move one
     without wrecking the other. */
  --accent-ink: #8a5a12;   /* 5.16:1 worst-case (tinted band) */
  --primary-ink: #2a6099;  /* blue for TEXT; 5.67:1 worst-case. The #2f6fb0
                              button fill is only 4.55 there -- too thin. */
  /* Hero line-art tones. Tokenised because the drawing is inlined SVG: baked
     rgba would disappear against the dark-mode ground. */
  --art-line: rgba(47, 52, 61, 0.62);
  --art-line-soft: rgba(47, 52, 61, 0.38);
  --art-line-faint: rgba(47, 52, 61, 0.22);
  --art-glass: rgba(47, 52, 61, 0.025);
  --art-glass-lit: rgba(201, 134, 44, 0.10);
  --art-silhouette: rgba(47, 52, 61, 0.05);
  --primary-fg: var(--primary-ink);
  --header-bg: rgba(255, 255, 255, 0.78);
  --btn-ghost-bg: #ffffff;
  --btn-ghost-bg-hover: #eef3fa;
}

/* No prefers-color-scheme override here on purpose: this page is pinned light
   (see <meta name="color-scheme" content="light">). template/css/styles.css keeps
   its dark-mode support for real client sites. */

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-weight: 800; line-height: 1.1; letter-spacing: var(--track-display); }
h1 { letter-spacing: var(--track-xl); }
h2 { font-size: clamp(2rem, 5vw, 3.1rem); margin-bottom: 1.1rem; }
h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: var(--track-lead); margin-bottom: 0.6rem; }
p { max-width: 62ch; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

.section-head {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-head .eyebrow { display: block; }
.section-head p { margin: 1rem auto 0; color: var(--muted); }

/* Type comes from tokens.css, generated by
   jsonholdings/infrastructure/design-tokens/. Layout and the rule beside it
   stay here -- those are this brand's own. */
.eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--icon-tint);
  color: var(--primary-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.icon-badge .icon { width: 1.5rem; height: 1.5rem; }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--fg);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

.icon { width: 1.1em; height: 1.1em; vertical-align: -0.15em; }

/* ---- scroll reveal (progressive enhancement, see js/site.js) ---- */
.reveal { opacity: 1; transform: none; }
.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .has-js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---- header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--fg);
  margin-right: auto;
}
.brand-mark { display: block; border-radius: 7px; flex-shrink: 0; }
.brand-text { white-space: nowrap; }
.brand-accent { color: var(--accent-ink); font-weight: 800; }
.site-nav { display: flex; gap: 2rem; }
.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--fg); }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.call-btn:hover, .call-btn:focus-visible { background: var(--primary-dark); transform: translateY(-1px); }

.mobile-menu { display: none; }
.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu[open] summary { border-color: var(--fg); }
.mobile-menu nav {
  display: none;
}
.mobile-menu[open] nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  width: max-content;
  min-width: 200px;
  max-width: calc(100vw - 2rem);
  margin-top: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}
.mobile-menu nav a {
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
  padding: 0.85rem 0.75rem;
  border-radius: calc(var(--radius) - 2px);
}
.mobile-menu nav a:hover, .mobile-menu nav a:focus-visible { background: var(--bg); }

/* ---- hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 11vw, 7.5rem) 0 clamp(3rem, 7vw, 4.5rem);
  text-align: center;
  background: linear-gradient(180deg, #eaf1fa 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line-soft);
}
.hero-grid { display: flex; flex-direction: column; align-items: center; }
.hero-inner { max-width: 760px; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.5rem); color: var(--fg); }
/* Was a wavy gold underline; a weight/colour shift alone is crisper and does the
   same emphasis job without the decorative flourish. */
.accent-underline { color: var(--accent-ink); }
.hero .lead {
  margin: 1.5rem auto 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 50ch;
}
.hero-cta { margin-top: 2.5rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.75rem;
  margin-top: 2rem;
}
.trust-chips li {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.38rem 0.9rem;
  border-radius: var(--radius-pill);
}
.hero-art { width: 100%; margin-top: clamp(2rem, 5vw, 3.25rem); }
.hero-art svg { width: 100%; height: auto; max-width: 980px; margin: 0 auto; display: block; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.03rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px rgba(39, 74, 107, 0.28); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(39, 74, 107, 0.34); }
.btn-ghost { background: var(--btn-ghost-bg); color: var(--fg); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--btn-ghost-bg-hover); }

/* ---- about ---- */
.about { padding: clamp(3.5rem, 7vw, 5.25rem) 0; background: var(--surface); }
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-copy p { margin: 0 auto 1rem; color: var(--muted); }
.service-area { color: var(--fg) !important; }
.hours-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row dt { color: var(--muted); font-weight: 600; }
.hours-row dd { color: var(--fg); font-weight: 600; text-align: right; }

/* ---- gallery ---- */
.gallery { padding: clamp(3.5rem, 7vw, 5.25rem) 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* ---- contact ---- */
.contact { padding: clamp(3.5rem, 7vw, 5.25rem) 0 clamp(5rem, 10vw, 7rem); background: var(--surface-alt); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
/* Was three <p> stacked with the global reset's zero margin -- the email
   button, its lead-in line and the "prefer to talk" note had no space
   between them at all. Reuses .nap's existing 1.25rem gap size. */
.contact-cta { display: grid; gap: 1.25rem; }
.nap { margin: 1rem 0 1.25rem; line-height: 1.9; }
.nap a { text-decoration: underline; text-underline-offset: 0.15em; }
.social-link {
  display: inline-block;
  margin-right: 1.25rem;
  font-weight: 600;
  color: var(--primary-fg);
  text-decoration: none;
}
.social-link:hover, .social-link:focus-visible { text-decoration: underline; }

.contact-form { display: grid; gap: 1rem; background: var(--surface); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm);   border: 1px solid var(--line);
}
.form-sent {
  display: none;
  grid-column: 1 / -1;
  margin: 0 0 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--accent-ink);
  border-left-width: 5px;
  border-radius: 0.5rem;
}
.form-sent:target { display: block; }
.form-error { border-color: #a33a2a; }
.form-error:target { display: block; }
.form-row { display: grid; gap: 0.4rem; }
.form-row label { font-weight: 600; font-size: 0.9rem; }
.form-row input, .form-row textarea {
  font: inherit;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--fg);
  width: 100%;
  transition: border-color 0.15s ease;
}
.form-row input:focus-visible, .form-row textarea:focus-visible { outline-color: var(--primary-fg); border-color: var(--primary-fg); }
.form-note { font-size: 0.9rem; color: var(--muted); }
/* Honeypot: hidden from sighted users AND removed from tab order/AT, but
   still present in the DOM for basic bots that don't execute CSS. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- footer ---- */
.site-footer { padding-top: 3.5rem; border-top: 1px solid var(--line-soft); background: var(--surface-alt); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.25rem;
}
.footer-brand { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-brand img { border-radius: 5px; flex-shrink: 0; margin-top: 0.15rem; }
.footer-brand strong { display: block; margin-bottom: 0.35rem; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 32ch; }
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.9rem;
}
.footer-links a, .footer-contact a { color: var(--muted); text-decoration: none; padding: 0.4rem 0; display: inline-flex; align-items: center; min-height: 44px; }
.footer-links a:hover, .footer-contact a:hover, .footer-links a:focus-visible, .footer-contact a:focus-visible { color: var(--primary-fg); text-decoration: underline; }
.footer-contact span { color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--muted-2);
}

/* ---- responsive ---- */
@media (max-width: 860px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
}
/* The 7-item nav + call-btn wraps/overflows between the old 720px hamburger
   cutoff and full desktop width (confirmed at 768 -- overflow-x cut off
   "Contact"; at 1024 -- "How It Works"/"Why Local"/"Working Together" each
   wrapped to 2 lines). Two bands: collapse to the hamburger earlier, and
   tighten the nav before that so it never needs to. */
@media (min-width: 901px) and (max-width: 1180px) {
  .site-nav { gap: 0.9rem; }
  .site-nav a { font-size: 0.82rem; white-space: nowrap; }
  .header-inner { gap: 0.75rem; padding-left: 1rem; padding-right: 1rem; }
  .call-btn { font-size: 0.85rem; padding: 0.55rem 0.95rem; }
  .brand-text { font-size: 0.98rem; }
}
@media (max-width: 900px) {
  .site-nav { display: none; }
  .mobile-menu { display: block; position: relative; }
  .header-inner { gap: 0.75rem; }
  .call-btn span.call-label { display: none; }
}
@media (max-width: 720px) {
  .site-nav { display: none; }
  /* The streetscape is a 960-unit-wide drawing; squeezed into a phone it loses
     all its detail and just occupies a tall empty band. It's decorative, so it
     goes away and the content leads. */
  .hero-art { display: none; }
  /* The badge slot only exists to align headings ACROSS columns. Stacked on a
     phone there are no columns, so it is just a gap above Basic and Plus. */
  .price-card-badge { min-height: 0; margin-bottom: 0; }
  .price-card-badge:empty { display: none; }
  .brand { font-size: 0.98rem; gap: 0.5rem; min-height: 44px; }
  .mobile-menu { display: block; position: relative; }
  .header-inner { padding: 0.75rem 1rem; gap: 0.6rem; }
  .call-btn { padding: 0.6rem 0.8rem; min-width: 44px; min-height: 44px; justify-content: center; }
  .call-btn span.call-label { display: none; }
  .mobile-menu summary { padding: 0.5rem 0.75rem; }
  .wrap { padding: 0 1.1rem; }
  .about, .gallery, .contact { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

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

/* ---- print (price sheets / quotes printed from the browser) ---- */
@media print {
  .site-header, .mobile-menu, .contact-form, .call-btn, .skip-link { display: none !important; }
  /* Reveal-on-scroll never fires when printing, so without this every .reveal
     section prints blank -- which is the whole point of this block. */
  .has-js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---- pricing (this landing page only -- not part of the per-client template) ---- */
.pricing { padding: clamp(3.5rem, 7vw, 5.25rem) 0; background: var(--surface-alt); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid var(--line);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.is-lead {
  background: var(--surface);
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: 0 14px 36px rgba(47, 111, 176, 0.18);
}
.price-card.is-lead:hover { transform: translateY(-4px); box-shadow: 0 32px 64px rgba(28, 54, 80, 0.16); }
.price-card.is-lead::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}
/* Reserves the same vertical space in every card whether or not it carries the
   "We lead with this" tag, so all three tier names/prices line up on the same
   baseline instead of the tagged card alone pushing its heading down. */
.price-card-badge { min-height: 1.9rem; margin-bottom: 0.75rem; }
.price-tag { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; background: var(--primary); border-radius: var(--radius-pill); padding: 0.3rem 0.8rem; }
.price-card h3 { margin-bottom: 0.25rem; }
.price-amount { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; }
.price-amount span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.price-card ul { list-style: none; color: var(--muted); font-size: 0.95rem; display: grid; gap: 0.6rem; align-content: start; padding-top: 0.5rem; }
.price-card li { padding-left: 1.1rem; position: relative; }
.price-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--primary-fg); font-weight: 700; }
.retainer-note {
  margin-top: 2rem;
  background: var(--icon-tint);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.retainer-note strong { color: var(--fg); }

/* ---- how it works (numbered steps) ---- */
.steps { padding: clamp(3.5rem, 7vw, 5.25rem) 0; background: var(--bg); }
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid var(--line);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 0.35rem;
}
.step-card p { color: var(--muted); font-size: 0.97rem; }

/* ---- example / case-study callout ---- */
.example { padding: clamp(3.5rem, 7vw, 5.25rem) 0; background: var(--surface-alt); }
.example-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid var(--line);
}
.example-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.example-card + .example-card { margin-top: 1.5rem; }

.browser-mock {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.browser-mock-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.9rem;
  background: #f4f5f7;
  border-bottom: 1px solid var(--line);
}
.browser-mock-dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; display: inline-block; }
.browser-mock-dot:nth-child(1) { background: #e0605a; }
.browser-mock-dot:nth-child(2) { background: #e3b34a; }
.browser-mock-dot:nth-child(3) { background: #5cb85c; }
.browser-mock-url {
  flex: 1;
  height: 0.55rem;
  margin-left: 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.09);
}
/* Real screenshots of the two live example sites, replacing the hand-drawn
   wireframes that stood in before the demos had photography. */
.browser-mock-shot { display: block; width: 100%; height: auto; }

.example-disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--icon-tint);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin: 0 0 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.example-disclaimer strong { color: var(--fg); }
@media (max-width: 860px) {
  .example-card { grid-template-columns: 1fr; }
}

/* ---- faq ---- */
.faq { padding: clamp(3.5rem, 7vw, 5.25rem) 0; background: var(--surface-alt); }
.faq-list { display: grid; gap: 1rem; max-width: 760px; margin: 0 auto; }
.faq-item {
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  border: 1px solid var(--line);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
  color: var(--accent-ink);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.75rem 1.4rem; color: var(--muted); max-width: none; }
.faq-item ul { padding: 0 1.75rem 1.4rem 3.15rem; margin: 0; color: var(--muted); }
.faq-item li { margin-bottom: 0.5rem; }
.faq-item li:last-child { margin-bottom: 0; }
.faq-item p + ul, .faq-item ul + p { padding-top: 0; }
/* Was flush against .faq-list with the reset's zero margin. Reuses the
   2rem gap already used for .trust-chips (a secondary note under a
   primary block), so section-internal "see more" spacing stays consistent. */
.faq-more-note { max-width: 760px; margin: 2rem auto 0; }

/* ---- compare (about / why-local) ---- */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.compare-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--surface-alt);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid var(--line);
}
.compare-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.compare-card h3 { font-size: 1.1rem; }
.compare-card p { color: var(--muted); font-size: 0.97rem; }

/* ---- promise / who-you're-dealing-with ---- */
.promise { padding: clamp(3.5rem, 7vw, 5.25rem) 0; background: var(--surface-alt); }
.promise-grid {
  display: grid;
  /* Explicit 2x2: four cards across one row left each ~250px wide, which cramped
     the copy and wrapped headings unevenly. */
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 700px) { .promise-grid { grid-template-columns: 1fr; } }
.promise-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.75rem;
}
.promise-item h3 { font-size: 1.1rem; }
.promise-item p { color: var(--muted); font-size: 0.97rem; }
