/* ==========================================================================
   Turtle Grass LLC — turtlegrasshealthinsurance.com — main.css

   Inherited wholesale from the mrterryhealthinsurance.com system: self-hosted
   fonts (no Google), AA contrast discipline enforced by audit rather than
   eyeball, gated placeholders that render as visible chips, 14px type floor.

   What is NOT inherited: the palette (rebuilt from the Turtle Grass logo),
   the signature element (wave rule, not the Fifty Years ledger), and the
   referral-directory / carrier-lockup components (removed entirely).
   ========================================================================== */

/* --- Fonts: self-hosted (npm @fontsource), font-display: swap ------------- */
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/source-serif-4-latin-600-normal.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/source-serif-4-latin-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-latin-500-normal.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-latin-600-normal.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

/* --- Tokens ---------------------------------------------------------------
   Sampled directly from turtlegrass_logo.jpg, not from the business-card
   photo. The card photo reads several stops darker and duller under its own
   lighting; sampling it produces a navy that isn't in the brand.

     --teal  #004048   turtle body + wordmark
     --blue  #4098B8   the two wave rules
     --green #90C030   sea-grass blades
     --paper #FBFAF3   keyed to the logo's own cream ground (#FEFDF7)

   THE LOAD-BEARING RULE — inherited in spirit, inverted in assignment.
   Terry's system: neither brand colour carries white; navy label on both.
   Here the dark IS a brand colour, so it splits:

     white on --teal    11.49:1  the only white-on-brand combination allowed
     white on --blue     3.28:1  FAIL — never do this
     white on --green    2.15:1  FAIL — never do this
     teal  on --green    5.35:1  PASS — this is the CTA
     teal  on --blue     3.50:1  LARGE TEXT ONLY (>=24px/700). Body copy on a
                                 blue ground must use --blue-band instead.

   Deeper variants exist for rules (3:1 floor) and for text (4.5:1 floor).
   Do not substitute a brand colour for a *-deep on text without re-running
   the audit. Every ratio above is measured, not estimated.
   -------------------------------------------------------------------------- */
:root {
  /* Brand — fills and large type only */
  --teal:       #004048;  /* dark anchor. Carries white at 11.49:1.           */
  --blue:       #4098B8;  /* wave blue. Fills/bands. Teal label, LARGE only.  */
  --green:      #90C030;  /* grass green. CTA fills. Teal label at 5.35:1.    */

  /* Working variants — these carry text and rules */
  --blue-band:  #61ADC8;  /* blue band that carries teal BODY text (4.55:1)   */
  --blue-mid:   #3C8FAD;  /* rules, borders on light. 3.51:1 (non-text floor) */
  --blue-deep:  #347B95;  /* blue as TEXT on light. 4.55:1                    */
  --green-mid:  #759C27;  /* green rules/borders on light. 3.07:1             */
  --green-deep: #5E7D1F;  /* green as TEXT. Carries white at 4.74:1.          */

  /* Ground */
  --paper:      #FBFAF3;  /* page ground, matched to the logo's cream         */
  --mist:       #D2E8F0;  /* light blue band. Teal on it = 9.05:1             */
  --sand:       #F2F0E4;  /* warm alternate band                              */
  --error:      #B3261E;

  /* Semantic aliases — the rest of the sheet speaks in these. */
  --ink:       var(--teal);
  --rule-c:    var(--blue-mid);   /* non-text: rules, ticks, borders */
  --rule-ink:  var(--blue-deep);  /* blue used as text */
  --signal:    var(--green-deep); /* links, success, pressed states */

  /* Alpha-blended text. Solved against --mist, the darkest ground either sits
     on: .68 rendered at 4.00 there. Both now clear 4.5 on paper, mist and sand.
     Verify with contrast.js after any change — the token pair table can't see
     these, only a rendered walk can. */
  --ink-70: rgba(0, 64, 72, .80);
  --ink-55: rgba(0, 64, 72, .73);
  --rule:   rgba(0, 64, 72, .18);

  --display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Inter Tight", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Type scale: mobile -> desktop. Nothing below 14px, anywhere. */
  --t-h1:   34px;
  --t-h2:   26px;
  --t-h3:   21px;
  --t-body: 18px;
  --t-util: 15px;
  --t-fine: 14px;

  --wrap: 1180px;
  --gut:  20px;
  --bar:  60px; /* mobile sticky call bar */
  --chat-gutter: 76px; /* reserved for a future chat bubble */
}
@media (min-width: 860px) {
  :root {
    --t-h1: 44px; --t-h2: 32px; --t-h3: 24px; --t-body: 19px;
    --gut: 40px; --bar: 0px;
  }
}

/* --- Colour scheme lock --------------------------------------------------
   Without this, iOS/Android in-app browsers and Chrome's "force dark" will
   auto-invert the page background while leaving explicitly-styled elements and
   brand colours alone — producing teal text on a black ground. Declaring the
   page light-only disables that guessing entirely. Do not remove. */
:root { color-scheme: light; }
html, body { background-color: var(--paper); }

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; margin: 0; }
h1 { font-size: var(--t-h1); line-height: 1.10; letter-spacing: -.015em; }
h2 { font-size: var(--t-h2); line-height: 1.18; letter-spacing: -.01em; }
h3 { font-size: var(--t-h3); line-height: 1.25; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.eyebrow {
  font-size: var(--t-util); font-weight: 600; text-transform: uppercase;
  letter-spacing: .13em; color: var(--ink-55); margin: 0 0 12px;
}
.lede { font-size: calc(var(--t-body) + 1px); color: var(--ink-70); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 12px 18px;
}
.skip:focus { left: 8px; top: 8px; }

/* Focus: always visible, never removed. */
:where(a, button, input, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--rule-c);
  outline-offset: 2px;
  border-radius: 3px;
}

/* --- Header / nav -------------------------------------------------------- */
.site-head {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.site-head__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 68px;
}
@media (min-width: 860px) { .site-head__in { min-height: 84px; } }

.mark {
  text-decoration: none; color: var(--ink); display: flex;
  align-items: center; gap: 12px; padding: 8px 0;
}
.mark__logo { width: 52px; height: auto; flex: 0 0 auto; }
@media (min-width: 860px) { .mark__logo { width: 64px; } }
.mark__words { display: block; }
.mark__l1, .mark__l2 {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 18px; line-height: 1.06; letter-spacing: .01em;
}
.mark__l2 {
  font-weight: 600; font-size: 15px; color: var(--ink-70);
  letter-spacing: .02em; margin-top: 2px;
}
@media (min-width: 860px) {
  .mark__l1 { font-size: 22px; }
  .mark__l2 { font-size: 16px; }
}
.mark__strap {
  display: none; font-family: var(--sans); font-size: var(--t-fine);
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-55); margin-top: 4px;
}

@media (min-width: 560px) { .mark__strap { display: block; } }

.nav { display: none; align-items: center; gap: 26px; }
@media (min-width: 980px) { .nav { display: flex; } }
.nav a {
  color: var(--ink-70); text-decoration: none; font-size: var(--t-util);
  font-weight: 600; padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--ink); border-bottom-color: var(--green-mid);
}

/* --- Buttons -------------------------------------------------------------
   The CTA is --green with a --teal label: 5.35:1. White on green is 2.15:1
   and is an audit failure. Do not "fix" the label by whitening it. */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 13px 24px; border: 0; border-radius: 6px;
  background: var(--green); color: var(--teal);
  font-family: var(--sans); font-size: var(--t-util); font-weight: 600;
  letter-spacing: .01em; text-decoration: none; cursor: pointer;
  transition: background .16s ease;
}
.btn:hover { background: var(--green-deep); color: #fff; }
.btn--full { width: 100%; font-size: 18px; min-height: 54px; }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 2px solid var(--ink); min-height: 46px;
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.head-cta { display: none; }
@media (min-width: 980px) { .head-cta { display: inline-flex; } }

/* --- THE SIGNATURE: the wave rule ----------------------------------------
   Two blue hairlines carrying the logo's wave crest, drawn left-to-right on
   load. It is taken straight from the mark above the turtle, so it is brand
   information rather than decoration — and unlike the site this system was
   cloned from, it makes no tenure claim, so it can't age into one.
   Reappears as the section divider sitewide. Suppressed under
   prefers-reduced-motion. */
.wave { position: relative; margin: 0; line-height: 0; }
.wave svg { width: 100%; height: 18px; display: block; color: var(--blue); }
.wave__path {
  fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round;
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  animation: wave-draw 1200ms cubic-bezier(.2,.7,.25,1) both;
}
.wave__path--b { animation-delay: 160ms; opacity: .72; }
@keyframes wave-draw { to { stroke-dashoffset: 0; } }

/* Plain divider variant — same rule, doing structural work, no animation. */
.wave--divider .wave__path { animation: none; stroke-dashoffset: 0; }
.wave--divider { margin-block: 8px; }

/* --- Sections ------------------------------------------------------------ */
.sec { padding-block: 56px; background-color: var(--paper); }
@media (min-width: 860px) { .sec { padding-block: 88px; } }
.sec--mist { background: var(--mist); }
.sec--sand { background: var(--sand); }
.sec--ink  { background: var(--ink); color: var(--paper); }
.sec__head { max-width: 30ch; margin-bottom: 28px; }
.sec--ink h2 { color: var(--paper); }

/* --- Form ---------------------------------------------------------------- */
.lead-form { margin: 0; }
.field { margin-bottom: 5px; }
.field label {
  display: block; font-size: var(--t-util); font-weight: 600;
  margin-bottom: 4px; color: inherit;
}
.field input {
  width: 100%; min-height: 48px; padding: 11px 13px;
  border: 1.5px solid var(--rule); border-radius: 5px;
  background: #fff; color: var(--ink); font: inherit; font-size: 16px;
}
.field input:hover { border-color: var(--ink-55); }
.field input:focus { border-color: var(--signal); }
.field input[aria-invalid="true"] { border-color: var(--error); background: #FDF5F4; }
.field__err {
  display: none; margin: 3px 0 0; font-size: var(--t-fine);
  font-weight: 500; color: var(--error);
}
.field.is-bad .field__err { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__submit { margin-top: 4px; }
.consent {
  margin: 12px 0 0; font-size: var(--t-fine); line-height: 1.5;
  color: var(--ink-70);
}
.reassure {
  margin: 10px 0 0; font-size: var(--t-util); font-weight: 600;
  color: var(--signal);
}
.form__status { margin: 8px 0 0; font-size: var(--t-util); font-weight: 600; }
.form__status:empty { display: none; }
.form__status[data-state="ok"]  { color: var(--signal); }
.form__status[data-state="bad"] { color: var(--error); }

/* --- Service accordions -------------------------------------------------- */
.cards { display: grid; gap: 14px; }
.card {
  background: #fff; border: 1px solid var(--rule); border-radius: 8px;
  overflow: hidden;
}
.sec--mist .card, .sec--sand .card { background: var(--paper); }
.card__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px; background: none; border: 0;
  text-align: left; cursor: pointer; color: inherit;
}
.card__btn:hover { background: rgba(64, 152, 184, .10); }
.card__t { font-family: var(--display); font-size: var(--t-h3); font-weight: 600; display: block; }
.card__s { display: block; margin-top: 4px; font-size: var(--t-util); color: var(--ink-70); line-height: 1.5; }
.card__sign {
  position: relative; width: 20px; height: 20px; flex: 0 0 auto;
}
.card__sign::before, .card__sign::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 15px; height: 2px; background: var(--rule-ink);
  transform: translate(-50%, -50%); transition: transform .2s ease;
}
.card__sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.card__btn[aria-expanded="true"] .card__sign::after { transform: translate(-50%, -50%) rotate(0deg); }
.card__panel {
  height: 0; overflow: hidden; transition: height .24s ease;
}
.card__panel-in { padding: 0 22px 24px; }
.card__panel-in p { max-width: 62ch; }

/* --- Story block --------------------------------------------------------- */
.story__grid { display: grid; gap: 30px; align-items: center; }
@media (min-width: 860px) { .story__grid { grid-template-columns: 42fr 58fr; gap: 60px; } }
.story__grid img { width: 100%; height: auto; border-radius: 4px; }
.link-brass {
  display: inline-block; margin-top: 16px; color: var(--rule-ink);
  font-weight: 600; font-size: var(--t-util); text-underline-offset: 3px;
}
.link-brass:hover { color: var(--signal); }


/* --- Booking ------------------------------------------------------------- */
.booking {
  margin-top: 22px; min-height: 200px; padding: 26px;
  border: 1px dashed var(--rule-c); border-radius: 8px;
  background: var(--paper); display: flex; align-items: center;
}
.booking__fallback { max-width: 40ch; color: var(--ink-70); font-size: var(--t-util); }
.booking__fallback strong { display: block; font-size: var(--t-h3); font-family: var(--display); color: var(--ink); margin-bottom: 8px; }

/* --- Final CTA ----------------------------------------------------------- */
.final__grid { display: grid; gap: 30px; }
@media (min-width: 860px) { .final__grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; } }
.sec--ink .field label { color: var(--paper); }
.sec--ink .consent { color: rgba(251, 250, 243, .78); }
.sec--ink .reassure { color: var(--green); }
.sec--ink .field input { border-color: rgba(251,250,243,.22); }
.sec--ink .lede { color: rgba(251, 250, 243, .82); }

/* --- Footer -------------------------------------------------------------- */
.foot { background: var(--ink); color: var(--paper); padding-block: 44px 110px; }
@media (min-width: 860px) { .foot { padding-bottom: 52px; } }
.foot a { color: var(--paper); }
.foot__grid { display: grid; gap: 30px; }
@media (min-width: 760px) { .foot__grid { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.foot .mark, .foot .mark__l1, .foot .mark__l2 { color: var(--paper); }
.foot .mark__l2 { color: rgba(251,250,243,.80); }
.foot .mark__strap { display: block; color: rgba(251,250,243,.66); }

.phone-block { margin-top: 22px; }
.phone-block a.tel {
  display: inline-block; font-family: var(--display); font-size: var(--t-h2);
  font-weight: 700; text-decoration: none; letter-spacing: .01em;
}
.tel-note, .hours {
  margin: 6px 0 0; font-size: var(--t-fine); line-height: 1.5;
  color: rgba(251,250,243,.78);
}
.disclosures {
  list-style: none; margin: 0; padding: 0;
  font-size: var(--t-fine); line-height: 1.55; color: rgba(251,250,243,.80);
}
.disclosures li { margin-bottom: 12px; }
.disclosures li:last-child { margin-bottom: 0; }
.disclosures .license { font-weight: 600; color: var(--paper); }

/* --- Gated placeholder chips ---------------------------------------------
   Inherited mechanism, unchanged: a {{VAR}} renders as a visible chip so it
   cannot ship by accident. If you can see one on a public page, that page
   isn't finished. */
.var-pending {
  background: rgba(64, 152, 184, .20);
  border-bottom: 1px dashed var(--rule-ink);
  padding: 1px 4px; border-radius: 2px;
  color: var(--ink); font-weight: 600;
}
.foot .var-pending {
  color: #9FD6E8;
  border-bottom-color: var(--blue);
  background: rgba(64, 152, 184, .30);
}
.foot__legal {
  margin-top: 30px; padding-top: 20px;
  border-top: 1px solid rgba(251, 250, 243, .18);
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: var(--t-fine); color: rgba(251, 250, 243, .74);
}

/* Editorial placeholder — visible in review, must be gone before launch. */
.copy-todo {
  border: 1px dashed var(--rule-c); border-radius: 6px;
  background: rgba(64, 152, 184, .09);
  padding: 14px 16px; margin: 0 0 16px;
  font-size: var(--t-util); color: var(--ink-70); line-height: 1.55;
}
.copy-todo strong { color: var(--teal); letter-spacing: .06em; text-transform: uppercase; font-size: var(--t-fine); }

/* GATED CLAIM — not a fill-in-the-blank, but copy that may be PROHIBITED.
   Renders in position so it can be reviewed, impossible to ship by accident.
   Deleting the .gated-claim__flag span is a deliberate act. */
.gated-claim {
  margin: 14px 0 0; padding: 12px 14px;
  border: 2px dashed var(--error); border-radius: 8px;
  background: #fff;
  font-size: var(--t-util); color: var(--ink-70); line-height: 1.55;
}
.gated-claim__flag {
  display: block; margin-bottom: 6px;
  font-family: var(--sans); font-size: var(--t-fine); font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--error);
}

/* Credential line. green-deep carries white at 4.74:1 — the only green that
   does. --green and --blue both fail with white; documented at the top. */
.cred {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 14px 0 0; padding: 8px 15px;
  border-radius: 999px; background: var(--green-deep); color: #fff;
  font-size: var(--t-util); font-weight: 600; letter-spacing: .01em;
}

/* --- Sticky mobile call bar (two 48px+ targets, every page) --------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 10px; padding: 8px 12px;
  background: var(--paper); border-top: 1px solid var(--rule);
}
@media (min-width: 860px) { .callbar { display: none; } }
@media (max-width: 859px) { .callbar { padding-right: var(--chat-gutter); } }
.callbar a {
  display: inline-flex; align-items: center; justify-content: center;
  flex: 1 1 0; min-height: 48px; padding: 12px 16px;
  border-radius: 6px; text-decoration: none;
  background: var(--teal); color: var(--paper);
  font-weight: 600; font-size: var(--t-util);
}
.callbar a + a { background: var(--green); color: var(--teal); }

/* A bare <button> does NOT inherit font-family or font-size — the UA default
   is ~13.33px, which silently breaks the 14px floor. Global fix so it can't
   regress in any new button. */
button { font: inherit; color: inherit; }

.callbar button {
  display: inline-flex; align-items: center; justify-content: center;
  flex: 1 1 0; min-height: 48px; padding: 12px 16px;
  border: 0; border-radius: 6px; cursor: pointer;
  background: var(--green); color: var(--teal);   /* teal on green = 5.35:1 */
  font-weight: 600; font-size: var(--t-util); text-decoration: none;
}
.callbar button:hover { background: var(--green-deep); color: #fff; }

/* Reveal only once the hero CTA has scrolled away. JS opts in, so with JS off
   the bar stays permanently visible. */
.callbar--auto { transform: translateY(105%); transition: transform .22s ease; }
.callbar--auto.is-on { transform: translateY(0); }

/* --- Page hero (interior pages) ------------------------------------------ */
.phero { padding-block: 44px 0; }
.phero h1 { max-width: 18ch; }
.phero .lede { max-width: 58ch; margin-top: 16px; }
.phero__wave { margin-top: 30px; }

.prose { max-width: 66ch; }
.prose h2 { margin-top: 34px; margin-bottom: 12px; }
.prose h3 { margin-top: 26px; margin-bottom: 8px; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose-copy p, .story-copy p {
  font-size: var(--t-body); color: var(--ink-70); line-height: 1.65;
  margin: 0 0 16px;
}
.prose-copy p:last-child, .story-copy p:last-child { margin-bottom: 0; }
.prose-copy p { max-width: 66ch; }

/* --- Reduced motion: the wave animation is the first thing to go ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .wave__path { stroke-dashoffset: 0; }
  .callbar--auto { transition: none; }
}

/* ==========================================================================
   HOME LAYOUT
   The hero sells the conversation, not the form. The form lives behind a
   "Get in touch" trigger (modal) and in one section near the foot of the
   page. Primary CTA is the modal, not click-to-call: a phone call creates no
   CRM record, so a call-first hero would starve the pipeline it feeds.
   ========================================================================== */

/* --- Utility bar ---------------------------------------------------------
   --blue-band, not --blue: this bar carries body-size text, and teal on raw
   --blue is only 3.50:1. On --blue-band it's 4.55:1. */
.topbar { background: var(--blue-band); }
.topbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 44px; flex-wrap: wrap;
}
.topbar p {
  margin: 0; font-size: var(--t-fine); font-weight: 500;
  color: var(--teal); line-height: 1.4;
}
.topbar a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal); font-weight: 600; font-size: var(--t-util);
  text-decoration: none; padding: 6px 0;
}
.topbar a:hover { text-decoration: underline; }
.topbar svg { width: 17px; height: 17px; flex: 0 0 auto; }
.topbar__note { display: block; flex: 1 1 240px; }

/* --- Hero ---------------------------------------------------------------- */
.hero { background: var(--mist); padding-block: 40px 0; }
.hero__grid { display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: auto 1fr 380px; gap: 40px; }
}


.portrait { display: block; }
.story__grid .portrait { width: 100%; }

.avatar {
  width: 168px; height: 168px; border-radius: 50%; object-fit: cover;
  background: var(--teal); flex: 0 0 auto;
  border: 4px solid var(--paper); box-shadow: 0 6px 22px rgba(0,64,72,.16);
}
@media (min-width: 900px) { .avatar { width: 208px; height: 208px; } }

.hero__id h1 { font-size: clamp(34px, 7.4vw, 54px); line-height: 1.04; letter-spacing: -.02em; }
.hero__role {
  margin: 10px 0 0; font-size: var(--t-util); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-55);
}
.hero__tag {
  margin: 16px 0 0; font-size: calc(var(--t-body) + 1px);
  color: var(--ink-70); max-width: 46ch; line-height: 1.6;
}

.actioncard {
  background: var(--paper); border: 1px solid rgba(0,64,72,.12);
  border-radius: 10px; padding: 24px; box-shadow: 0 6px 22px rgba(0,64,72,.09);
}
.actioncard h2 { font-size: var(--t-h3); line-height: 1.25; }
.actioncard__sub { margin: 6px 0 18px; font-size: var(--t-util); color: var(--ink-70); }
.actioncard .btn { width: 100%; }
.actioncard__or {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--rule);
  font-size: var(--t-util); color: var(--ink-70);
}
.actioncard__or a {
  display: block; margin-top: 4px; font-family: var(--display);
  font-size: var(--t-h3); font-weight: 700; color: var(--ink);
  text-decoration: none;
}
.actioncard__or a:hover { text-decoration: underline; }
.actioncard .tel-note, .actioncard .hours { color: var(--ink-55); }

/* --- Contact strip — straddles the hero band and the section below -------- */
.cstrip { margin-block: 48px; position: relative; z-index: 2; }
.cstrip__in {
  display: grid; background: var(--paper);
  border: 1px solid rgba(0,64,72,.12); border-radius: 10px;
  box-shadow: 0 8px 26px rgba(0,64,72,.10); overflow: hidden;
}
@media (min-width: 720px) { .cstrip__in { grid-template-columns: 1fr 1fr; } }
.cstrip__cell {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px; background: none; border: 0;
  border-bottom: 1px solid var(--rule); text-align: left;
  text-decoration: none; cursor: pointer; width: 100%;
}
@media (min-width: 720px) {
  .cstrip__cell { border-bottom: 0; border-right: 1px solid var(--rule); }
  .cstrip__cell:last-child { border-right: 0; }
}
.cstrip__cell:last-child { border-bottom: 0; }
.cstrip svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--green-deep); }
.cstrip__t { display: block; font-weight: 600; color: var(--teal); font-size: var(--t-body); }
.cstrip__note {
  display: block; margin-top: 4px; font-size: var(--t-fine);
  font-weight: 400; color: var(--ink-70); line-height: 1.45;
}

/* --- Offer tiles ---------------------------------------------------------
   .band-blue uses raw --blue and therefore carries ONLY large type in teal
   (h2 at 26px/600 = large text, 3.50:1 clears the 3:1 large-text floor).
   The supporting lede is on --blue-band inside its own inset for body size. */
.band-blue { background: var(--blue); padding-block: 56px; }
.band-blue h2 { color: var(--teal); }
.band-blue__head { text-align: center; max-width: 52ch; margin: 0 auto 30px; }
.band-blue__lede {
  margin: 14px auto 0; max-width: 46ch; padding: 10px 18px;
  border-radius: 999px; background: var(--blue-band);
  color: var(--teal); font-size: var(--t-util); font-weight: 500;
}

.tiles { display: grid; gap: 14px; grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
@media (min-width: 620px) { .tiles { grid-template-columns: 1fr 1fr; } }
.tile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 24px; border-radius: 10px; background: var(--paper);
  color: var(--teal); text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}
.tile:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,64,72,.20); }
/* On a --paper ground (404 page) the tiles need an edge; on the blue band they
   don't, because the band supplies the contrast. */
.tiles[style*="--tile-edge"] .tile { border: 1px solid var(--rule); }
.tile svg { width: 34px; height: 34px; color: var(--green-deep); }
.tile__t { font-family: var(--display); font-size: var(--t-h3); font-weight: 600; }
.tile__s { font-size: var(--t-util); color: var(--ink-70); line-height: 1.55; }

/* --- FAQ ----------------------------------------------------------------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq .card__t { font-size: var(--t-body); }

/* --- Modal --------------------------------------------------------------- */
dialog.modal {
  width: min(560px, calc(100vw - 32px));
  padding: 0; border: 0; border-radius: 12px;
  background: var(--paper); color: var(--teal);
  box-shadow: 0 24px 60px rgba(0,64,72,.35);
}
dialog.modal::backdrop { background: rgba(0, 64, 72, .62); }
.modal__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 24px 24px 0;
}
.modal__head h2 { font-size: var(--t-h2); }
.modal__head p { margin: 6px 0 0; font-size: var(--t-util); color: var(--ink-70); }
.modal__x {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--rule); background: #fff; cursor: pointer;
  font-size: 20px; line-height: 1; color: var(--teal);
}
.modal__x:hover { background: var(--mist); }
.modal__body { padding: 18px 24px 26px; }

/* --- Info list (About / Contact) ----------------------------------------- */
.factlist { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.factlist li {
  padding-left: 18px; border-left: 3px solid var(--green-mid);
  font-size: var(--t-body); color: var(--ink-70); line-height: 1.55;
}
.factlist strong { display: block; color: var(--teal); font-weight: 600; }
