/* ═══════════════════════════════════════════════════════════════════════════
   Scoops Co. — the shared design system (2026-09-23)

   Extracted from the homepage so every page is built from the same parts:
   the same header and menu, the same buttons, cards, price card, icon rows,
   accordion, footer and sticky CTA. Before this, the service pages carried
   their own look (css/region.css) and the blog, FAQ and legal pages each had
   another, which is why they read as a different, plainer site.

   Rules of the system — change a token, never a one-off value:
     · one gutter    --gutter   (20px phone, 16px under 380px, 24px desktop)
     · one rhythm    --pad-y    (vertical padding of every band)
     · two rails     --w-wide for grids and cards, --w-text for reading
     · three radii   --r-sm controls · --r-md cards · --r-pill chips
     · one button height (48px) and a 44px minimum for every tap target

   Page-specific layers sit on top: css/region.css (service pages) and
   css/article.css (blog, FAQ, legal).
   ═══════════════════════════════════════════════════════════════════════ */

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

:root {
  --rg:   #04402A;
  --fg:   #2D5A1E;
  --tan:  #C8A96E;
  --ltan: #E3CC9C;
  --dtan: #7A5C2E;
  --page: #F7F3ED;
  --card: #FFFFFF;
  --surf: #F0EBE1;
  --tx:   #04402A;
  --txm:  rgba(4,64,42,.8);
  --txd:  rgba(4,64,42,.74);
  --bdr:  rgba(4,64,42,.12);
  --bdrt: rgba(200,169,110,.42);
  --on-dark:   rgba(247,243,237,.94);
  --on-dark-m: rgba(247,243,237,.8);

  --w-wide: 1120px;
  --w-text: 760px;
  --w-sub:  560px;
  --gutter: 24px;
  --pad-y:  112px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-pill: 999px;
  --sh-sm:  0 2px 10px rgba(4,64,42,.06);
  --sh-md:  0 12px 32px rgba(4,64,42,.08);
  --sh-lg:  0 24px 56px rgba(4,64,42,.12);
  --nav-h:  72px;
  --tap:    48px;     /* minimum size of anything you tap */
}
@media (max-width: 760px) { :root { --gutter: 20px; --pad-y: 72px; --nav-h: 64px; } }
@media (max-width: 379px) { :root { --gutter: 16px; } }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* Anchor jumps land below the sticky header instead of under it. */
[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }
body {
  font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.65;
  background: var(--page); color: var(--tx);
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--dtan); outline-offset: 2px; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 200; background: var(--card); color: var(--rg); padding: 10px 16px; border-radius: var(--r-sm); font-weight: 700; }
.skip-link:focus { left: 8px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── HEADER + MENU ───────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--rg);
  border-bottom: 1px solid rgba(200,169,110,.18);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  padding: 14px 48px; min-height: var(--nav-h);
}
.nav-logo { display: inline-flex; align-items: center; gap: 12px; color: var(--tan); text-decoration: none; min-height: var(--tap); }
.nav-logo img { display: block; height: 44px; width: auto; }
.nav-wordmark { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(20px, 2vw, 24px); letter-spacing: .04em; color: var(--tan); line-height: 1; white-space: nowrap; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(247,243,237,.82); text-decoration: none;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a[aria-current] { color: var(--tan); }
.nav-links .cta-item { display: none; }
.nav-right { display: inline-flex; align-items: center; gap: 14px; }
.nav-cta {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 1.2rem;
  background: var(--tan); color: var(--rg);
  border-radius: 8px; font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-decoration: none;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #d4b87a; transform: translateY(-1px); }
.nav-phone {
  display: inline-flex; align-items: center; gap: 6px; min-height: 40px;
  color: rgba(247,243,237,.92); text-decoration: none;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  padding: 0 .75rem; border-radius: 8px;
  border: 1px solid rgba(200,169,110,.32);
  transition: border-color .2s, color .2s, background .2s;
}
.nav-phone:hover { border-color: var(--tan); color: var(--tan); background: rgba(200,169,110,.06); }
.nav-phone svg { width: 14px; height: 14px; flex: none; }
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center; min-height: 32px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--tan); border: 1px solid rgba(200,169,110,.45); border-radius: var(--r-pill);
  padding: 0 13px; text-decoration: none; white-space: nowrap;
}
.lang-switch:hover { background: rgba(200,169,110,.14); }
.nav-burger {
  display: none; cursor: pointer;
  width: var(--tap); height: var(--tap); border-radius: 10px;
  background: none; border: 1px solid rgba(200,169,110,.3);
  align-items: center; justify-content: center;
  color: var(--tan); padding: 0;
}
.nav-burger svg { width: 18px; height: 18px; }
.nav-burger[aria-expanded="true"] svg.menu { display: none; }
.nav-burger[aria-expanded="false"] svg.close { display: none; }

@media (max-width: 900px) {
  .site-nav { padding: 10px var(--gutter); }
  .nav-burger { display: inline-flex; order: 3; margin-left: 8px; }
  .nav-cta { display: none; }
  .nav-right { gap: 8px; order: 2; margin-left: auto; }
  .nav-phone { min-height: var(--tap); font-size: .78rem; }
  .nav-links {
    display: none; order: 4; flex-basis: 100%;
    flex-direction: column; gap: 0;
    padding: 8px 0 12px; margin-top: 10px;
    border-top: 1px solid rgba(200,169,110,.18);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: flex; align-items: center; min-height: 48px; font-size: .86rem; }
  .nav-links li + li { border-top: 1px solid rgba(247,243,237,.06); }
  .nav-links .cta-item { display: block; padding-top: 12px; border-top: 0 !important; }
  .nav-links .cta-item a {
    justify-content: center; background: var(--tan); color: var(--rg);
    border-radius: var(--r-sm); font-weight: 700; letter-spacing: .06em;
  }
}
/* Phone: logo · language · phone icon · menu on one row. Measured at 360px:
   34+10+~104 (logo) + ~64 (lang) + 44 + 44 + gaps = ~320 of 328 usable. */
@media (max-width: 479px) {
  .nav-phone-num { display: none; }
  .nav-phone { width: var(--tap); padding: 0; justify-content: center; border-radius: 50%; }
  .nav-phone svg { width: 17px; height: 17px; }
  .nav-logo { gap: 10px; }
  .nav-logo img { height: 34px; }
  .nav-wordmark { font-size: 19px; letter-spacing: .02em; }
  .nav-right { gap: 6px; }
  .nav-burger { margin-left: 6px; }
  .lang-switch { padding: 0 9px; font-size: 11px; letter-spacing: .02em; min-height: var(--tap); border-color: rgba(200,169,110,.38); }
  .nav-logo img { height: 32px; }
  .nav-wordmark { font-size: 18px; }
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
/* Every button is 48px tall, 10px radius. Green on cream, tan on green. */
.btn-primary, .btn-ghost, .btn-tan {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: var(--tap); padding: 0 30px;
  border-radius: var(--r-sm); font-size: .9rem; font-weight: 700;
  letter-spacing: .05em; text-decoration: none; text-align: center; line-height: 1.25;
  transition: background .2s, transform .15s, box-shadow .2s, border-color .2s, color .2s;
}
.btn-primary { background: var(--rg); color: #FBF8F2; box-shadow: 0 10px 24px rgba(4,64,42,.18); }
.btn-primary:hover { background: #06593B; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(4,64,42,.26); }
.btn-tan { background: var(--tan); color: var(--rg); box-shadow: 0 10px 24px rgba(0,0,0,.2); }
.btn-tan:hover { background: #d4b87a; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--rg); border: 1.5px solid rgba(4,64,42,.22); font-weight: 600; }
.btn-ghost:hover { border-color: var(--tan); color: var(--dtan); transform: translateY(-2px); }
.btn-quiet {
  display: inline-flex; align-items: center; min-height: 48px; padding: 0 6px;
  color: var(--rg); font-size: .9rem; font-weight: 600; letter-spacing: .04em;
  text-decoration: underline; text-decoration-color: rgba(4,64,42,.3); text-underline-offset: 4px;
}
.btn-quiet:hover { text-decoration-color: var(--tan); }
.actions { display: flex; gap: 10px 16px; flex-wrap: wrap; align-items: center; }
.actions.center { justify-content: center; }
.reassure { margin-top: 12px; font-size: 14px; font-weight: 500; color: var(--txm); }

/* Inline text links in body copy. */
.prose a, .link {
  color: var(--dtan); font-weight: 600; text-decoration: underline;
  text-decoration-color: var(--bdrt); text-decoration-thickness: 1.5px; text-underline-offset: 3px;
}
.prose a:hover, .link:hover { color: var(--rg); text-decoration-color: var(--tan); }
.link-arrow { display: inline-flex; align-items: center; min-height: var(--tap); color: var(--dtan); font-weight: 700; font-size: .92rem; text-decoration: none; letter-spacing: .02em; }
.link-arrow:hover { color: var(--rg); }

/* ── BANDS (sections) ────────────────────────────────────────────────────── */
/* Every section is a full-width band on one of three backgrounds, so the page
   alternates the way the homepage does instead of running as one sheet. */
.band { padding: var(--pad-y) var(--gutter); background: var(--page); }
.band.is-card { background: var(--card); }
.band.is-surf { background: var(--surf); }
.band.is-dark { background: var(--rg); color: var(--on-dark); }
.band + .band.is-surf, .band.is-surf + .band { border-top: 1px solid var(--bdr); }
.wrap { max-width: var(--w-wide); margin: 0 auto; }
.wrap-text { max-width: var(--w-text); margin: 0 auto; }

/* Section head: eyebrow, title, rule, one-line sub. */
.eyebrow, .section-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: var(--dtan); margin-bottom: 12px; line-height: 1.5;
}
.section-head { margin-bottom: 36px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-title {
  font-family: 'Playfair Display', serif; font-weight: 400;
  font-size: clamp(1.85rem, 4vw, 2.75rem); line-height: 1.14;
  color: var(--rg); text-wrap: balance;
}
.section-title em { font-style: normal; color: var(--dtan); }
.rule, .section-divider {
  width: 40px; height: 2px; margin: 18px 0 0; border-radius: 2px;
  background: linear-gradient(90deg, var(--rg), var(--tan));
}
.center .rule, .center .section-divider { margin-left: auto; margin-right: auto; }
.section-sub { margin-top: 16px; max-width: var(--w-sub); font-size: 1rem; color: var(--txm); line-height: 1.7; }
.band.is-dark .section-title { color: #fff; }
.band.is-dark .section-title em, .band.is-dark .eyebrow { color: var(--tan); }
.band.is-dark .section-sub { color: var(--on-dark-m); }
.text-center { text-align: center; }
.text-wrap-pretty, p { text-wrap: pretty; }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; isolation: isolate; background: var(--page); }
.hero-grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(4,64,42,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,64,42,.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.display {
  font-family: 'Playfair Display', serif; font-weight: 400;
  font-size: clamp(2.2rem, 3.6vw, 3.25rem); line-height: 1.1;
  color: var(--rg); text-wrap: balance;
}
.display em { font-style: normal; color: var(--dtan); display: block; }
.lede { font-size: 1.05rem; line-height: 1.75; color: var(--txm); max-width: 540px; }
@media (max-width: 760px) {
  .display { font-size: clamp(2rem, 8.6vw, 2.6rem); line-height: 1.1; }
  .lede { font-size: 1rem; }
}

/* Proof row: four promises with line icons, one weight, no boxes. */
.proof {
  list-style: none; margin-top: 30px; padding-top: 24px;
  border-top: 1px solid var(--bdr);
  display: flex; flex-wrap: wrap; gap: 14px 30px;
}
.proof li { display: inline-flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 500; line-height: 1.35; color: var(--txm); }
.proof svg { width: 20px; height: 20px; flex: none; color: var(--dtan); }
@media (max-width: 760px) {
  .proof { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; }
  .proof li { align-items: flex-start; font-size: 1rem; line-height: 1.35; }
  .proof svg { margin-top: 0; }
}

/* ── CARDS ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--r-md); padding: 26px 24px;
  box-shadow: var(--sh-sm);
}
.band.is-card .card { background: var(--page); box-shadow: none; }
.card h3, .card-title {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: 1.2rem; line-height: 1.25; color: var(--rg); margin-bottom: 8px;
}
.card p { font-size: 1rem; color: var(--txm); line-height: 1.65; }
.card p + p { margin-top: 10px; }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } .grid { gap: 12px; } }

/* Icon badge used on cards and fact tiles. */
.ico {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(200,169,110,.16); color: var(--dtan); margin-bottom: 14px;
}
.ico svg { width: 22px; height: 22px; }

/* Photo card (homepage service cards, scope steps). */
.photo-card { background: var(--card); border: 1px solid var(--bdr); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.photo-card .shot { aspect-ratio: 4 / 3; background: var(--surf); overflow: hidden; }
.photo-card .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-card .body { padding: 20px 22px 24px; }
.photo-card h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.2rem; color: var(--rg); margin-bottom: 6px; line-height: 1.25; }
.photo-card p { font-size: 1rem; color: var(--txm); line-height: 1.65; }
.photo-card .step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; margin-bottom: 12px;
  background: var(--rg); color: var(--tan); font-family: 'Playfair Display', serif; font-size: 15px;
}

/* Figure: one rounded photo with an optional caption. */
.figure { border-radius: var(--r-md); overflow: hidden; background: var(--surf); box-shadow: var(--sh-md); }
.figure img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }

/* ── NUMBERED STEPS (homepage "how it works") ────────────────────────────── */
.steps { list-style: none; display: grid; gap: 14px; counter-reset: step; }
.steps > li {
  position: relative; counter-increment: step;
  background: var(--card); border: 1px solid var(--bdr); border-radius: var(--r-md);
  padding: 22px 22px 22px 80px; box-shadow: var(--sh-sm);
}
.band.is-card .steps > li { background: var(--page); box-shadow: none; }
.steps > li::before {
  content: counter(step); position: absolute; left: 22px; top: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rg); color: var(--tan);
  font-family: 'Playfair Display', serif; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(4,64,42,.18);
}
.steps h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.15rem; color: var(--rg); margin-bottom: 4px; line-height: 1.3; }
.steps p { font-size: 1rem; color: var(--txm); line-height: 1.65; }

/* ── ANSWER CARD ─────────────────────────────────────────────────────────────
   Every question-shaped H2 opens with a short, complete answer. It is the
   sentence AI answer engines lift, and the one a skimming reader needs. */
.answer {
  position: relative; background: var(--card);
  border: 1px solid var(--bdrt); border-left: 4px solid var(--tan);
  border-radius: var(--r-md); padding: 20px 22px;
  font-size: 1.04rem; line-height: 1.7; color: var(--tx);
  box-shadow: var(--sh-sm);
}
.band.is-card .answer { background: var(--page); box-shadow: none; }
.answer strong { color: var(--rg); }

/* Body copy on content bands. */
.prose p, .prose li { font-size: 1rem; line-height: 1.75; color: var(--txm); }
.prose p + p, .prose p + ul, .prose ul + p { margin-top: 16px; }
.prose strong { color: var(--rg); }
.prose ul { padding-left: 20px; }
.prose li + li { margin-top: 8px; }
.stack > * + * { margin-top: 20px; }

/* "Keep reading" — longer local detail, one tap away. */
.more { margin-top: 18px; border-top: 1px solid var(--bdr); }
.more > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 10px;
  min-height: 52px; padding: 4px 0; font-weight: 700; font-size: 1rem; letter-spacing: .01em; color: var(--dtan);
}
.more > summary::-webkit-details-marker { display: none; }
.more > summary::after {
  content: ''; width: 8px; height: 8px; flex: none; margin-left: 2px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px); transition: transform .2s ease;
}
.more[open] > summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.more[open] > summary .more-open { display: none; }
.more:not([open]) > summary .more-close { display: none; }
.more > .prose { padding: 4px 0 8px; }

/* Checklist with tan check marks. */
.checks { list-style: none; display: grid; gap: 12px; }
.checks > li { position: relative; padding-left: 36px; font-size: 1rem; line-height: 1.65; color: var(--txm); }
.checks > li::before {
  content: ''; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--rg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A96E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.checks strong { color: var(--rg); }

/* Chips (towns, neighborhoods, related links). */
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.chip {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 16px;
  background: rgba(200,169,110,.12); color: var(--rg);
  border: 1px solid rgba(200,169,110,.38); border-radius: var(--r-pill);
  font-size: .92rem; font-weight: 600; letter-spacing: .02em; text-decoration: none; line-height: 1.3;
}
a.chip { min-height: var(--tap); font-size: 1rem; }
a.chip:hover { background: var(--tan); }

/* Fact tiles: short labelled values (ZIPs, route day …). */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.fact { background: var(--card); border: 1px solid var(--bdr); border-radius: var(--r-md); padding: 18px; }
.band.is-card .fact { background: var(--page); }
.fact dt { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--dtan); margin-bottom: 6px; }
.fact dd { font-size: 1rem; color: var(--rg); font-weight: 600; line-height: 1.4; }
@media (max-width: 900px) { .facts { grid-template-columns: repeat(2, 1fr); } }

/* ── PRICE CARD (the homepage calculator's dark panel) ───────────────────── */
.price-card {
  background: var(--rg); color: var(--on-dark);
  border-radius: var(--r-lg); padding: 36px 32px; box-shadow: var(--sh-lg);
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 85% 0%, rgba(200,169,110,.16), transparent 55%);
}
.price-card > * { position: relative; }
.pc-label { font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #D9BC85; }
.pc-price { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(3rem, 12vw, 4.4rem); line-height: 1; color: #fff; margin-top: 10px; font-variant-numeric: tabular-nums; }
.pc-price small { font-family: 'DM Sans', sans-serif; font-size: .28em; font-weight: 600; color: rgba(247,243,237,.74); letter-spacing: .02em; margin-left: 4px; }
.pc-sub { margin-top: 10px; font-size: 1rem; color: var(--on-dark-m); line-height: 1.6; }
.pc-rows { list-style: none; margin: 22px 0 24px; border-top: 1px solid rgba(200,169,110,.24); }
.pc-rows li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(200,169,110,.16); font-size: 1rem; color: var(--on-dark-m); }
.pc-rows strong { color: #fff; font-size: 1.05rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pc-rows strong span { font-weight: 400; font-size: .8rem; color: rgba(247,243,237,.7); margin-left: 2px; }
.price-card .btn-tan { width: 100%; }
/* Price card calculator (city pages): the homepage calculator's controls,
   restyled for the dark card. */
.pc-field { border: 0; margin: 20px 0 0; padding: 0; min-width: 0; }
.pc-field legend { padding: 0; margin-bottom: 8px; font-size: 1rem; font-weight: 600; color: #F7F3ED; }
.pc-seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pc-seg-num { grid-template-columns: repeat(5, 1fr); gap: 4px; }  /* 5 × 48px fits a 360px phone */
.pc-seg button {
  min-height: var(--tap); padding: 6px 8px; border-radius: 10px; cursor: pointer;
  font: 600 1rem/1.2 'DM Sans', sans-serif; color: #F7F3ED;
  background: transparent; border: 1.5px solid rgba(200,169,110,.5);
  transition: background .15s, color .15s, border-color .15s;
}
.pc-seg button:hover { border-color: var(--tan); }
.pc-seg button[aria-pressed="true"] { background: var(--tan); border-color: var(--tan); color: var(--rg); }
.pc-seg button:focus-visible { outline: 3px solid #F7F3ED; outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .pc-seg button { transition: none; } }
.pc-fine { margin-top: 14px; text-align: center; font-size: .82rem; color: rgba(247,243,237,.78); }

/* Full rate table, closed by default under the card. */
.rates { margin-top: 18px; border-top: 1px solid var(--bdr); }
.rates > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 10px; min-height: 52px;
  font-size: 1rem; font-weight: 700; letter-spacing: .01em; color: var(--dtan);
}
.rates > summary::-webkit-details-marker { display: none; }
.rates > summary::after {
  content: ''; width: 7px; height: 7px; flex: none;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px); transition: transform .2s ease;
}
.rates[open] > summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--bdr); border-radius: var(--r-md); background: var(--card); }
.table-wrap:focus-visible { outline: 2px solid var(--dtan); }
table.pr, table.cmp { border-collapse: collapse; width: 100%; font-size: .92rem; }
table.pr { min-width: 520px; }
table.pr caption, table.cmp caption { text-align: left; font-size: .8rem; color: var(--txd); padding: 14px 16px 4px; }
table.pr th, table.pr td, table.cmp th, table.cmp td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--bdr); }
table.pr thead th, table.cmp thead th { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dtan); white-space: nowrap; }
table.pr tbody th { font-weight: 600; color: var(--rg); white-space: nowrap; }
table.pr td { color: var(--rg); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
table.pr tbody tr:last-child > * { border-bottom: 0; }
table.pr .u { color: var(--txd); font-size: .76rem; font-weight: 400; margin-left: 2px; }
.pr-note { margin-top: 16px; font-size: 1rem; line-height: 1.7; color: var(--txm); }

/* ── ACCORDION (homepage FAQ) ────────────────────────────────────────────── */
.faq-list { display: grid; gap: 10px; }
.faq-list details, details.faq-item {
  background: var(--page); border: 1px solid var(--bdr); border-radius: 14px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.band.is-page .faq-list details, .band:not(.is-card):not(.is-surf) .faq-list details { background: var(--card); }
.faq-list details[open], details.faq-item[open] { background: var(--card); border-color: var(--bdrt); box-shadow: 0 10px 26px rgba(4,64,42,.07); }
.faq-list summary, details.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 18px 64px 18px 22px; min-height: 60px; display: flex; align-items: center;
  font-family: 'Playfair Display', serif; font-size: 1.12rem; font-weight: 500; line-height: 1.35; color: var(--rg);
}
.faq-list summary::-webkit-details-marker, details.faq-item summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; position: absolute; right: 18px; top: 50%; margin-top: -15px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-size: 16px; color: var(--rg);
  transition: transform .3s, background .25s, border-color .25s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); background: var(--tan); border-color: var(--tan); }
.faq-list .fa, .faq-answer { padding: 0 22px 22px; font-size: 1rem; line-height: 1.75; color: var(--txm); }

/* ── CALLOUT ─────────────────────────────────────────────────────────────── */
.callout { background: var(--card); border: 1px solid var(--bdrt); border-radius: var(--r-md); padding: 26px 24px; box-shadow: var(--sh-sm); }
.band.is-card .callout { background: var(--page); box-shadow: none; }
.callout h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.3rem; color: var(--rg); margin-bottom: 10px; }
.callout p { font-size: 1rem; line-height: 1.75; color: var(--txm); }
.callout p + p { margin-top: 12px; }
.callout cite { display: block; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--bdr); font-style: normal; font-size: .82rem; color: var(--txd); }

/* ── OWNER NOTE (homepage "about" signature) ─────────────────────────────── */
.owner { text-align: center; max-width: 640px; margin: 0 auto; }
.owner p { font-size: 1.02rem; line-height: 1.8; color: var(--txm); }
.owner .sign { margin-top: 18px; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; color: var(--dtan); }
.owner .sign span { display: block; margin-top: 4px; font-family: 'DM Sans', sans-serif; font-style: normal; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--txm); }

/* ── CTA BANNER (homepage quarterly banner) ──────────────────────────────── */
.cta-banner {
  max-width: 1080px; margin: 0 auto;
  padding: 40px; border-radius: var(--r-lg);
  background: linear-gradient(120deg, var(--rg) 0%, #254a25 100%);
  color: var(--page); box-shadow: 0 14px 36px rgba(4,64,42,.16);
  display: flex; align-items: center; justify-content: space-between; gap: 24px 32px; flex-wrap: wrap;
}
.cta-banner h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: 1.2; color: #fff; text-wrap: balance; }
.cta-banner h2 em { font-style: normal; color: var(--tan); }
.cta-banner p { margin-top: 8px; color: var(--on-dark-m); font-size: 1rem; }
@media (max-width: 640px) { .cta-banner { padding: 30px 24px; } .cta-banner .btn-tan { width: 100%; } }

/* ── BREADCRUMB ──────────────────────────────────────────────────────────── */
.trail { font-size: .88rem; color: var(--txd); margin: -8px 0 10px; }
.trail ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; }
.trail li { display: inline-flex; align-items: center; }
.trail li + li::before { content: '›'; margin: 0 8px; color: var(--txd); }
.trail a { display: inline-flex; align-items: center; min-height: var(--tap); color: var(--dtan); font-weight: 600; text-decoration: none; }
.trail a:hover { color: var(--rg); text-decoration: underline; }
.trail [aria-current] { color: var(--txm); }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--rg); color: rgba(247,243,237,.82);
  padding: 48px var(--gutter) 36px; text-align: center;
  border-top: 1px solid rgba(200,169,110,.18); font-size: .88rem;
}
.site-footer .footer-logo { min-height: var(--tap); display: inline-flex; align-items: center; gap: 14px; color: var(--tan); text-decoration: none; }
.site-footer .footer-logo img { height: 52px; width: auto; display: block; }
.site-footer .footer-logo .nav-wordmark { font-size: 26px; }
.footer-cities { margin: 22px auto 0; max-width: 620px; display: flex; flex-wrap: wrap; justify-content: center; gap: 0 4px; }
.footer-links { margin: 8px auto 0; max-width: 620px; display: flex; flex-wrap: wrap; justify-content: center; gap: 0 4px; }
.site-footer a:not(.footer-logo) { display: inline-flex; align-items: center; min-height: var(--tap); padding: 0 8px; font-size: 1rem; color: var(--ltan); text-decoration: underline; text-decoration-color: rgba(200,169,110,.4); text-underline-offset: 3px; }
.site-footer a:not(.footer-logo):hover { color: #fff; }
.footer-legal { margin-top: 14px; font-size: .78rem; color: rgba(247,243,237,.7); line-height: 1.7; }
.footer-legal a:not(.footer-logo) { min-height: 0; padding: 0; }
/* Leave room for the sticky CTA so it never covers the last line. */
@media (max-width: 900px) { .site-footer { padding-bottom: 112px; } }

/* ── STICKY MOBILE CTA ───────────────────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 90; padding: 11px 22px; border-radius: var(--r-pill);
  background: var(--rg); color: var(--tan);
  box-shadow: 0 14px 36px rgba(4,64,42,.32);
  text-align: center; text-decoration: none;
  font-size: 14px; font-weight: 700; letter-spacing: .06em;
  border: 1px solid rgba(200,169,110,.32);
  transform: translateY(160%);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-sub { display: block; margin-top: 2px; font-size: 11px; font-weight: 500; letter-spacing: .02em; opacity: .75; }
@media (max-width: 900px) { .sticky-cta { display: block; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .sticky-cta { transition: none; } }

/* ── RAIL: the homepage's phone pattern for a row of cards ──────────────────
   A grid on desktop; on a phone, a snapping horizontal track with the next
   card peeking in, exactly like the homepage's services and how-it-works
   rows. Used where stacking would turn four short cards into a screen and a
   half of scrolling. The dots under it are decorative (aria-hidden): the
   cards stay in reading order for a screen reader. */
.rail-hint { display: none; }
@media (max-width: 640px) {
  .rail {
    display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin-left: calc(-1 * var(--gutter)); margin-right: calc(-1 * var(--gutter));
    padding: 4px var(--gutter) 18px; scroll-padding: 0 var(--gutter);
  }
  .rail::-webkit-scrollbar { display: none; }
  .rail > * { flex: 0 0 84%; scroll-snap-align: start; }
  .rail-hint { display: block; text-align: center; font-size: 12px; letter-spacing: .04em; color: var(--txd); margin-top: 2px; }
}

/* Short one-word links ("Home", "FAQ", "Blog") still get a full 48px box. */
.trail a, .site-footer a:not(.footer-logo) { min-width: var(--tap); justify-content: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE PAGES — layout for the long, answer-first pages (city pages, the
   service-area hub, the one-time cleanup page, their Spanish mirrors and the
   Spanish homepage). Merged in here from css/region.css on 2026-09-23: one
   stylesheet is one request and one cache entry for the whole site, and it
   measured faster than two (LCP 2.10s vs 2.19s, Lighthouse mobile, 5 runs).
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Hero: copy left, photo right on desktop; stacked on a phone ── */
.svc-hero { padding: 40px var(--gutter) 64px; }
.svc-hero .wrap { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.svc-hero .display { margin-bottom: 20px; }
.svc-hero .lede { margin: 20px 0 30px; }
.svc-hero .figure { align-self: stretch; }
.svc-hero .figure img { height: 100%; min-height: 420px; }
@media (max-width: 900px) {
  .svc-hero { padding: 24px var(--gutter) 56px; }
  .svc-hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .svc-hero .figure img { min-height: 0; aspect-ratio: 4 / 3; height: auto; }
}
@media (max-width: 760px) {
  .svc-hero .hero-grid { display: none; }
  .svc-hero .actions { flex-direction: column; align-items: stretch; }
  .svc-hero .actions .btn-quiet { justify-content: center; }
  .svc-hero .reassure { text-align: center; }
}

/* ── Contents: closed by default, one tap to open ── */
.toc { margin-top: 28px; background: var(--card); border: 1px solid var(--bdr); border-radius: var(--r-md); }
.toc > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 56px; padding: 0 20px; font-size: 1rem; font-weight: 700; letter-spacing: .01em; color: var(--dtan);
}
.toc > summary::-webkit-details-marker { display: none; }
.toc > summary::after {
  content: ''; width: 8px; height: 8px; flex: none;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px); transition: transform .2s ease;
}
.toc[open] > summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.toc ol { list-style: none; counter-reset: toc; padding: 0 20px 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.toc li { counter-increment: toc; border-top: 1px solid var(--bdr); }
.toc a { display: flex; align-items: center; gap: 10px; min-height: var(--tap); color: var(--rg); font-size: 1rem; font-weight: 500; text-decoration: none; }
.toc a::before { content: counter(toc, decimal-leading-zero); font-family: 'Playfair Display', serif; font-size: .9rem; color: var(--dtan); min-width: 22px; }
.toc a:hover { color: var(--dtan); }
@media (max-width: 640px) { .toc ol { grid-template-columns: 1fr; } }

/* ── Content sections: .split sets the head beside its answer on desktop ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 56px; align-items: start; }
.split > .section-head { margin-bottom: 0; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.band .answer + .prose, .band .answer + .more, .band .answer + .grid, .band .answer + .facts,
.band .answer + .steps, .band .answer + .checks { margin-top: 22px; }
.after { margin-top: 24px; max-width: var(--w-text); }
.sub-label { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--dtan); margin: 30px 0 12px; }
.visit-photos { margin-top: 14px; }
.visit-photos .photo-card .body { padding-top: 18px; }

/* Plan cards: what it fits, what to expect. */
.plan { display: flex; flex-direction: column; }
.plan .plan-name { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.3rem; color: var(--rg); margin-bottom: 12px; }
.plan dl { display: grid; gap: 12px; }
.plan dt { font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--dtan); margin-bottom: 2px; }
.plan dd { font-size: 1rem; color: var(--txm); line-height: 1.6; }
.plan.is-pick { border-color: var(--tan); box-shadow: 0 0 0 1px var(--tan), var(--sh-md); }
.plan .pick { align-self: flex-start; margin-bottom: 12px; font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--rg); background: rgba(200,169,110,.28); border-radius: var(--r-pill); padding: 5px 10px; }

/* Pricing: answer and note beside the dark card. */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 56px; align-items: start; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

/* ── Dark band: the homepage's photo-under-green treatment ── */
.band.rain { position: relative; overflow: hidden; isolation: isolate; }
.rain-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.band.rain::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(4,64,42,.88) 0%, rgba(4,64,42,.93) 60%, rgba(4,64,42,.97) 100%);
}
.band.rain .answer { background: rgba(247,243,237,.07); border-color: rgba(200,169,110,.35); border-left-color: var(--tan); color: var(--on-dark); box-shadow: none; }
.band.rain .prose p { color: var(--on-dark-m); }
.band.rain .prose a { color: var(--ltan); text-decoration-color: rgba(200,169,110,.5); }
.band.rain .prose strong { color: #fff; }
.band.rain .more { border-top-color: rgba(200,169,110,.24); }
.band.rain .more > summary { color: var(--ltan); }
.rainfall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 24px; list-style: none; }
.rainfall li { border: 1px solid rgba(200,169,110,.3); border-radius: var(--r-md); padding: 16px 12px; text-align: center; background: rgba(247,243,237,.05); }
.rainfall .v { display: block; font-family: 'Playfair Display', serif; font-size: 1.7rem; color: #fff; line-height: 1.1; }
.rainfall .v small { font-family: 'DM Sans', sans-serif; font-size: .5em; color: var(--on-dark-m); margin-left: 2px; }
.rainfall .m { display: block; margin-top: 4px; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--tan); }
.rainfall li.dry { background: rgba(200,169,110,.14); }
@media (max-width: 420px) { .rainfall { gap: 8px; } .rainfall li { padding: 14px 6px; } .rainfall .v { font-size: 1.45rem; } }

/* Checklist ("what to look for"): question on its own line, answer under it. */
.q-compact > li h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--rg); margin-bottom: 2px; }
.q-compact > li p { font-size: 1rem; line-height: 1.65; color: var(--txm); }
.q-compact > li a { color: var(--dtan); font-weight: 600; text-decoration: underline; text-decoration-color: var(--bdrt); text-underline-offset: 3px; }

/* Related links at the foot of the page. */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 48px; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--bdr); }
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }
.related-grid .sub-label { margin-top: 0; }
.read-list { list-style: none; }
.read-list li { border-top: 1px solid var(--bdr); }
.read-list li:last-child { border-bottom: 1px solid var(--bdr); }
.read-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 52px; color: var(--rg); font-weight: 600; font-size: 1rem; text-decoration: none; }
.read-list a::after { content: '→'; color: var(--dtan); }
.read-list a:hover { color: var(--dtan); }

/* Spanish pages: the honest note that checkout is in English. */
.lang-note { background: var(--card); border: 1px solid var(--bdrt); border-left: 4px solid var(--tan); border-radius: var(--r-md); padding: 18px 20px; font-size: 1rem; line-height: 1.7; color: var(--txm); }
.lang-note strong { color: var(--rg); }

/* Founding offer pill (js/founding.js reveals it only while spots are open). */
.founding-pill { display: inline-block; margin-top: 16px; padding: 8px 14px; background: rgba(200,169,110,.18); border: 1px solid rgba(200,169,110,.5); border-radius: var(--r-pill); font-size: 14px; line-height: 1.45; color: var(--rg); }
.founding-pill[hidden] { display: none; }

/* Links inside an answer card read like the body links. */
.answer a { color: var(--dtan); font-weight: 600; text-decoration: underline; text-decoration-color: var(--bdrt); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.band.rain .answer a { color: var(--ltan); }

/* ── City cards (service-area hub): photo thumbnail, name, ZIPs, one line ── */
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; list-style: none; }
@media (max-width: 760px) { .city-grid { grid-template-columns: 1fr; gap: 12px; } }
.city-card {
  display: grid; grid-template-columns: 104px 1fr; gap: 16px; align-items: center;
  background: var(--card); border: 1px solid var(--bdr); border-radius: var(--r-md);
  padding: 12px 16px 12px 12px; text-decoration: none; color: inherit; box-shadow: var(--sh-sm);
  transition: border-color .2s, box-shadow .2s, transform .2s; min-height: var(--tap);
}
.band.is-card .city-card { background: var(--page); box-shadow: none; }
.city-card:hover { border-color: var(--bdrt); box-shadow: var(--sh-md); transform: translateY(-2px); }
.city-card img { width: 104px; height: 104px; object-fit: cover; border-radius: 12px; display: block; background: var(--surf); }
.city-card .cc-name { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.25rem; color: var(--rg); line-height: 1.2; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.city-card .cc-name::after { content: '→'; font-family: 'DM Sans', sans-serif; font-size: 1rem; color: var(--dtan); }
.city-card .cc-meta { display: block; margin-top: 2px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dtan); }
.city-card .cc-desc { display: block; margin-top: 6px; font-size: 1rem; line-height: 1.5; color: var(--txm); }
@media (max-width: 379px) { .city-card { grid-template-columns: 84px 1fr; gap: 12px; } .city-card img { width: 84px; height: 84px; } }

/* A callout inside the dark band. */
.band.rain .callout { background: rgba(247,243,237,.07); border-color: rgba(200,169,110,.35); box-shadow: none; }
.band.rain .callout h3 { color: #fff; }
.band.rain .callout p { color: var(--on-dark-m); }
.lang-note a { color: var(--dtan); font-weight: 600; text-decoration: underline; text-decoration-color: var(--bdrt); text-underline-offset: 3px; }

/* Brand tagline under a keyword H1 (homepages): styled like the H1's second
   line, but outside the heading so the H1 stays the search phrase. */
.kicker { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.2; color: var(--dtan); margin: -8px 0 20px; text-wrap: balance; }

/* ═══════════════════════════════════════════════════════════════════════════
   ARTICLES — blog posts, the blog index, the FAQ and the legal pages.
   Reading-width column on the page background, the homepage's type, the
   shared callout, link list and closing banner. (2026-09-23; these pages
   each used to carry their own inline copy of the old tokens.)
   ═══════════════════════════════════════════════════════════════════════ */
.article { max-width: var(--w-text); margin: 0 auto; padding: 28px var(--gutter) 72px; }
.article .trail { margin-bottom: 18px; }
.a-meta { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--dtan); margin-bottom: 14px; }
.article h1 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(2rem, 5vw, 2.9rem); line-height: 1.12; color: var(--rg); margin-bottom: 18px; text-wrap: balance; }
.article h1 em { font-style: normal; color: var(--dtan); }
.a-lede { font-size: 1.15rem; line-height: 1.7; color: var(--txm); padding-bottom: 26px; margin-bottom: 8px; border-bottom: 1px solid var(--bdr); }
.article h2 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(1.45rem, 3.4vw, 1.75rem); line-height: 1.25; color: var(--rg); margin: 40px 0 12px; text-wrap: balance; }
.article h3 { font-size: 1.1rem; font-weight: 700; color: var(--rg); margin: 26px 0 8px; }
.article p, .article li { font-size: 1.0625rem; line-height: 1.8; color: var(--txm); }
.article p { margin-bottom: 16px; }
.article ul, .article ol { margin: 0 0 18px 22px; }
.article li { margin-bottom: 8px; }
.article strong { color: var(--rg); }
.article p a, .article li a, .article td a { color: var(--dtan); font-weight: 600; text-decoration: underline; text-decoration-color: var(--bdrt); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.article p a:hover, .article li a:hover { color: var(--rg); }
.article .callout { margin: 28px 0; border-left: 4px solid var(--tan); }
.article .callout p { margin: 0; font-size: 1.0625rem; }
.article .callout p + p { margin-top: 12px; }
.related-block { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--bdr); }
.related-block .sub-label { margin-top: 0; }
.article table { width: 100%; border-collapse: collapse; margin: 18px 0 22px; font-size: 1rem; }
.article th, .article td { padding: 12px 10px; border-bottom: 1px solid var(--bdr); text-align: left; color: var(--txm); }
.article th { color: var(--rg); font-weight: 700; }
.updated { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dtan); margin-bottom: 18px; }

/* Blog index */
.blog-hero { padding-bottom: 32px; }
.blog-hero .display em { display: inline; }
.posts { max-width: var(--w-text); margin: 0 auto; padding: 0 var(--gutter) 88px; display: grid; gap: 16px; }
.post-card { display: block; background: var(--card); border: 1px solid var(--bdr); border-radius: var(--r-md); padding: 26px 24px; text-decoration: none; box-shadow: var(--sh-sm); transition: border-color .25s, box-shadow .25s, transform .2s; }
.post-card:hover { border-color: var(--bdrt); box-shadow: var(--sh-md); transform: translateY(-2px); }
.post-meta { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dtan); margin-bottom: 10px; }
.post-title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.45rem; color: var(--rg); margin-bottom: 8px; line-height: 1.25; }
.post-excerpt { font-size: 1rem; line-height: 1.7; color: var(--txm); margin-bottom: 12px; }
.post-more { font-size: .92rem; font-weight: 700; letter-spacing: .02em; color: var(--dtan); }

/* FAQ page: grouped accordions under plain section headings. */
.faq-page h2 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(1.45rem, 3.4vw, 1.75rem); color: var(--rg); margin: 44px 0 14px; }
.faq-page h2:first-child { margin-top: 0; }
.faq-list details > p { padding: 0 22px 22px; font-size: 1rem; line-height: 1.75; color: var(--txm); }
.faq-list details > p a { color: var(--dtan); font-weight: 600; text-decoration: underline; text-decoration-color: var(--bdrt); text-underline-offset: 3px; }

/* Under 380px the header cannot fit logo + "Español" + phone + menu on one
   row (the menu button dropped to a second line). The pill shows a two-letter
   code there; the full language name stays as its accessible name. */
.lang-short { display: none; }
@media (max-width: 379px) {
  .lang-switch { min-width: var(--tap); padding: 0 8px; }
  .lang-switch .lang-full { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .lang-switch .lang-short { display: inline; }
}
