/* ============================================================================
   ST AUGUSTINE POWER WASHING — design system
   Direction: "Ancient City coastal". Deep Atlantic navy, coquina stone warm
   neutrals, one aqua accent that means "clean". Editorial serif display against
   a neutral grotesque. Deliberately NOT the category default of gradient blue
   + centred everything.
   Nothing here is shared with the Austin or Memphis generators.
   ========================================================================= */

/* ---------- tokens ---------- */
:root {
  /* ink + ground */
  --ink:      #0c1a23;   /* near-black navy, body copy */
  --ink-soft: #40565f;   /* secondary copy */
  --deep:     #10394b;   /* Atlantic — headers, footer */
  --deep-2:   #0a2635;   /* deeper still, gradients */

  /* the local stone */
  --coquina:  #efe7d9;   /* warm shell-stone section ground */
  --sand:     #d9c8ab;   /* rules, muted edges */
  --paper:    #fcfaf6;   /* page ground */
  --white:    #ffffff;

  /* the one accent */
  --aqua:     #12a29c;
  --aqua-dk:  #0c7d79;
  --aqua-lt:  #d7f0ee;

  /* signal */
  --amber:    #c4761c;

  /* type */
  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* fluid scale */
  --t-xs:   clamp(.75rem, .72rem + .12vw, .82rem);
  --t-sm:   clamp(.87rem, .84rem + .15vw, .95rem);
  --t-base: clamp(1rem, .97rem + .18vw, 1.09rem);
  --t-lg:   clamp(1.15rem, 1.08rem + .35vw, 1.35rem);
  --t-xl:   clamp(1.45rem, 1.3rem + .7vw, 1.9rem);
  --t-2xl:  clamp(1.85rem, 1.55rem + 1.4vw, 2.7rem);
  --t-3xl:  clamp(2.3rem, 1.75rem + 2.6vw, 4rem);
  --t-4xl:  clamp(2.9rem, 2rem + 4vw, 5.2rem);

  /* space */
  --s1: .35rem; --s2: .6rem;  --s3: 1rem;   --s4: 1.5rem;
  --s5: 2.25rem; --s6: 3.25rem; --s7: 4.75rem; --s8: 7rem;

  --wrap: 1180px;
  --r: 14px;      /* radius */
  --r-sm: 8px;

  --shadow-1: 0 1px 2px rgba(12,26,35,.06), 0 4px 14px rgba(12,26,35,.06);
  --shadow-2: 0 2px 6px rgba(12,26,35,.08), 0 18px 44px rgba(12,26,35,.12);
  --shadow-3: 0 30px 70px rgba(10,38,53,.28);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
/* NB: do NOT put overflow-x:clip/hidden on html or body here. It truncated the
   scrollable area and made the bottom ~1,700px of every page unreachable on
   mobile — including the lead form's submit button. Fix horizontal overflow at
   its source (it was .hdr__cta losing a specificity fight with .btn). */
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: var(--aqua-dk); text-underline-offset: 3px; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0 0 var(--s3);
  color: var(--deep-2);
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
h1 { font-size: var(--t-3xl); }
h2 { font-size: var(--t-2xl); }
h3 { font-size: var(--t-xl); }
p  { margin: 0 0 var(--s3); }
ul, ol { margin: 0 0 var(--s3); padding-left: 1.15rem; }
li { margin-bottom: .4rem; }
strong { font-weight: 650; color: var(--deep-2); }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; border-radius: 3px; }

/* ---------- layout ---------- */
.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.section { padding: var(--s7) 0; }
.section--tight { padding: var(--s6) 0; }
.section--stone { background: var(--coquina); }
.section--deep { background: var(--deep-2); color: #cfe0e6; }
.section--deep h2, .section--deep h3 { color: #fff; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 620;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--aqua-dk);
  margin: 0 0 var(--s2);
}
.section--deep .eyebrow { color: #6fd3ce; }
.lede { font-size: var(--t-lg); color: var(--ink-soft); max-width: 62ch; }
.section--deep .lede { color: #a8c4ce; }

/* a deliberate editorial device: heading left, supporting copy right */
.split {
  display: grid; gap: var(--s4) var(--s6);
  grid-template-columns: minmax(0,1fr);
  align-items: end;
  margin-bottom: var(--s5);
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1.05fr .95fr; }
  .split > :last-child { padding-bottom: .35rem; }
}

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(252,250,246,.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(12,26,35,.09);
}
.hdr__in { display: flex; align-items: center; gap: var(--s4); padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.brand__mark {
  width: 34px; height: 34px; flex: none; border-radius: 9px;
  background: linear-gradient(150deg, var(--aqua) 0%, var(--deep) 85%);
  display: grid; place-items: center;
}
.brand__mark svg { width: 19px; height: 19px; fill: #fff; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--display); font-weight: 650; font-size: 1.05rem; color: var(--deep-2); letter-spacing: -.01em; white-space: nowrap; }
.brand__sub { font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); font-weight: 560; white-space: nowrap; }
@media (max-width: 400px) {
  .brand__name { font-size: .98rem; }
  .brand__sub { letter-spacing: .08em; font-size: .62rem; }
}

.nav { display: none; gap: var(--s4); }
.nav a {
  font-size: var(--t-sm); font-weight: 540; color: var(--ink-soft);
  text-decoration: none; padding: .3rem 0; position: relative;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--deep-2); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--aqua); border-radius: 2px;
}
@media (min-width: 940px) { .nav { display: flex; } }

/* NOTE: .btn sets display:inline-flex further down the sheet, so these need the
   extra .hdr specificity or the phone button reappears on mobile and blows the
   header out past the viewport. */
.hdr .hdr__cta { display: none; }
@media (min-width: 620px) { .hdr .hdr__cta { display: inline-flex; } }

/* mobile disclosure nav — no JS framework, just a checkbox-free details */
.menu { display: block; position: static; }
@media (min-width: 940px) { .menu { display: none; } }
.menu > summary {
  list-style: none; cursor: pointer; width: 42px; height: 42px;
  display: grid; place-items: center; border-radius: 10px;
  border: 1px solid rgba(12,26,35,.14); background: var(--white);
}
.menu > summary::-webkit-details-marker { display: none; }
.menu > summary span, .menu > summary span::before, .menu > summary span::after {
  display: block; width: 17px; height: 2px; background: var(--deep-2); border-radius: 2px; content: "";
}
.menu > summary span { position: relative; }
.menu > summary span::before { position: absolute; top: -6px; }
.menu > summary span::after  { position: absolute; top: 6px; }
.menu[open] > summary span { background: transparent; }
.menu[open] > summary span::before { top: 0; transform: rotate(45deg); }
.menu[open] > summary span::after  { top: 0; transform: rotate(-45deg); }
.menu__panel {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-bottom: 1px solid rgba(12,26,35,.1);
  box-shadow: var(--shadow-2); padding: var(--s3) 0 var(--s4);
}
.menu__panel ul { list-style: none; margin: 0; padding: 0; }
.menu__panel a {
  display: block; padding: .7rem 1.2rem; text-decoration: none;
  color: var(--deep-2); font-weight: 540; border-bottom: 1px solid rgba(12,26,35,.06);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 640;
  padding: .82rem 1.35rem; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--aqua); color: #fff; box-shadow: 0 6px 18px rgba(18,162,156,.32); }
.btn--primary:hover { background: var(--aqua-dk); color: #fff; box-shadow: 0 8px 24px rgba(18,162,156,.4); }
.btn--ghost { border-color: rgba(12,26,35,.2); color: var(--deep-2); background: transparent; }
.btn--ghost:hover { border-color: var(--deep-2); background: rgba(12,26,35,.04); color: var(--deep-2); }
.btn--light { background: #fff; color: var(--deep-2); }
.btn--light:hover { background: var(--coquina); color: var(--deep-2); }
.btn--lg { font-size: var(--t-base); padding: 1rem 1.7rem; }
.btn svg { width: 17px; height: 17px; fill: currentColor; flex: none; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--deep-2); overflow: hidden; }
/* The hero image carries a SUBJECT (spray hitting a surface), not ambient scenery,
   so it has to actually read. Earlier values (opacity .5 under a .96/.78 double
   gradient) buried it to the point you could not tell what the photo was.
   object-position pushes the subject right, clear of the headline column. */
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .9;
  /* The action photos are PORTRAIT (0.67-0.75) in a ~2.09 hero band, so cover
     discards ~64% of the height. The vertical value is the real framing control:
     28% lands on the wand and the surface being sprayed rather than a shoulder. */
  object-position: 55% 28%;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,38,53,.94) 0%, rgba(10,38,53,.86) 30%,
                            rgba(10,38,53,.55) 62%, rgba(10,38,53,.22) 100%),
    linear-gradient(to top, rgba(10,38,53,.75) 0%, transparent 42%);
}
@media (max-width: 899px) {
  /* single column — text sits over the whole frame, so it needs more cover */
  .hero__bg { object-position: 55% 25%; opacity: .72; }
  .hero::after {
    background: linear-gradient(180deg, rgba(10,38,53,.82) 0%, rgba(10,38,53,.9) 100%);
  }
}
.hero__in { position: relative; z-index: 2; padding: var(--s7) 0 var(--s8); }
@media (min-width: 900px) {
  .hero__in { display: grid; grid-template-columns: 1.18fr .82fr; gap: var(--s6); align-items: center; }
}
.hero h1 { color: #fff; font-size: var(--t-4xl); max-width: 15ch; margin-bottom: var(--s3); }
.hero h1 em { font-style: normal; color: #7fded8; font-variation-settings: "WONK" 1; }
.hero__lede { color: #b9d2dc; font-size: var(--t-lg); max-width: 46ch; margin-bottom: var(--s4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: var(--s4); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.1rem; padding: 0; margin: 0; list-style: none; }
.hero__trust li {
  display: flex; align-items: center; gap: .45rem; margin: 0;
  color: #9dbdc9; font-size: var(--t-sm); font-weight: 520;
}
.hero__trust svg { width: 15px; height: 15px; fill: #4fc9c2; flex: none; }

/* the floating price card — the measured content gap, made the hero's second act */
.pricecard {
  background: rgba(255,255,255,.97); border-radius: var(--r);
  padding: var(--s4); box-shadow: var(--shadow-3);
  border-top: 4px solid var(--aqua);
}
.pricecard h2 { font-size: var(--t-lg); margin-bottom: .2rem; }
.pricecard__note { font-size: var(--t-xs); color: var(--ink-soft); margin-bottom: var(--s3); }
.pricecard__rows { list-style: none; margin: 0 0 var(--s3); padding: 0; }
.pricecard__rows li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .6rem 0; border-bottom: 1px dashed var(--sand); margin: 0; font-size: var(--t-sm);
}
.pricecard__rows li:last-child { border-bottom: 0; }
.pricecard__rows b { font-family: var(--display); font-size: var(--t-lg); color: var(--deep-2); font-weight: 620; }
.pricecard__foot { font-size: var(--t-xs); color: var(--ink-soft); margin: 0; }

/* ---------- surface cards ---------- */
.grid { display: grid; gap: var(--s4); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }

.card {
  background: var(--white); border-radius: var(--r); overflow: hidden;
  border: 1px solid rgba(12,26,35,.09); box-shadow: var(--shadow-1);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
/* height:auto is REQUIRED. The <img> carries width/height attributes (good for
   CLS), and the height attribute is a presentational hint that sets a definite
   height — which makes aspect-ratio a no-op, since aspect-ratio only applies when
   one axis is auto. This looked fine for months purely because every image in the
   catalogue happened to be 3:2; the first portrait photo rendered 375x1200. */
.card__img { aspect-ratio: 3 / 2; width: 100%; height: auto; object-fit: cover; background: var(--sand); }
.card__body { padding: var(--s4); display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: var(--t-lg); margin-bottom: .4rem; }
.card__body p { font-size: var(--t-sm); color: var(--ink-soft); margin-bottom: var(--s3); }
.card__meta {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; padding-top: var(--s3); border-top: 1px solid rgba(12,26,35,.08);
}
.card__price { font-family: var(--display); font-weight: 640; color: var(--deep-2); font-size: var(--t-base); }
.card__go { font-size: var(--t-sm); font-weight: 620; color: var(--aqua-dk); }

/* spec chips — PSI / method guidance, the useful content nobody else publishes */
.chips { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 var(--s3); padding: 0; list-style: none; }
.chips li {
  margin: 0; font-size: var(--t-xs); font-weight: 580; letter-spacing: .02em;
  background: var(--aqua-lt); color: var(--aqua-dk);
  padding: .28rem .6rem; border-radius: 999px;
}

/* ---------- before / after slider ---------- */
.ba {
  position: relative; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-2); background: var(--deep-2); aspect-ratio: 3 / 2;
  touch-action: pan-y;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; background: #fff; transform: translateX(-1px);
  box-shadow: 0 0 0 1px rgba(10,38,53,.25);
}
.ba__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 44px; height: 44px; transform: translate(-50%,-50%);
  border-radius: 50%; background: #fff; box-shadow: var(--shadow-2);
  background-image:
    linear-gradient(90deg, transparent 43%, var(--deep-2) 43%, var(--deep-2) 46%, transparent 46%,
                          transparent 54%, var(--deep-2) 54%, var(--deep-2) 57%, transparent 57%);
}
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba__tag {
  position: absolute; bottom: .8rem; z-index: 3;
  font-size: var(--t-xs); font-weight: 640; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(10,38,53,.82); color: #fff; padding: .3rem .65rem; border-radius: 999px;
  pointer-events: none;
}
.ba__tag--b { left: .8rem; }
.ba__tag--a { right: .8rem; background: rgba(18,162,156,.92); }

/* ---------- price table ---------- */
.ptable { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-1); }
.ptable caption { text-align: left; font-size: var(--t-sm); color: var(--ink-soft); padding-bottom: var(--s2); }
.ptable th, .ptable td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid rgba(12,26,35,.08); font-size: var(--t-sm); }
.ptable thead th { background: var(--deep-2); color: #fff; font-weight: 600; font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; }
.ptable tbody tr:last-child td { border-bottom: 0; }
.ptable td:last-child { font-family: var(--display); font-weight: 620; color: var(--deep-2); white-space: nowrap; }
.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- numbered steps ---------- */
.steps { counter-reset: step; display: grid; gap: var(--s5); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step { position: relative; padding-top: var(--s5); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--display); font-size: var(--t-2xl); font-weight: 600;
  color: var(--sand); line-height: 1;
}
.step h3 { font-size: var(--t-lg); margin-bottom: .35rem; }
.step p { font-size: var(--t-sm); color: var(--ink-soft); margin: 0; }

/* ---------- service area ---------- */
.areas { display: grid; gap: .7rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); list-style: none; padding: 0; margin: 0; }
.areas a {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .85rem 1.1rem; border-radius: var(--r-sm); text-decoration: none;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: #dcebf0; font-weight: 540; font-size: var(--t-sm);
}
.areas a:hover { background: rgba(255,255,255,.12); color: #fff; }
.areas a::after { content: "→"; color: #6fd3ce; }
.areas li { margin: 0; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--sand); }
.faq details { border-bottom: 1px solid var(--sand); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
  font-family: var(--display); font-size: var(--t-lg); font-weight: 600; color: var(--deep-2);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.5rem; font-weight: 400; color: var(--aqua-dk); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding-bottom: 1.3rem; max-width: 72ch; color: var(--ink-soft); }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- lead form ---------- */
.leadwrap { background: var(--coquina); border-radius: var(--r); padding: var(--s5); box-shadow: var(--shadow-1); }
@media (min-width: 880px) { .leadwrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: var(--s6); align-items: start; } }
.form { display: grid; gap: var(--s3); }
.field { display: grid; gap: .3rem; }
.field label { font-size: var(--t-xs); font-weight: 640; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: var(--t-base); color: var(--ink);
  padding: .78rem .9rem; border-radius: var(--r-sm);
  border: 1.5px solid rgba(12,26,35,.16); background: var(--white); width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--aqua); outline: none; box-shadow: 0 0 0 3px var(--aqua-lt); }
.form__row { display: grid; gap: var(--s3); grid-template-columns: 1fr; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: var(--t-xs); color: var(--ink-soft); margin: 0; }
.form__status { font-size: var(--t-sm); font-weight: 580; margin: 0; min-height: 1.4em; }
.form__status[data-ok="1"] { color: var(--aqua-dk); }
.form__status[data-ok="0"] { color: #b3261e; }

/* ---------- callout ---------- */
.callout {
  border-left: 4px solid var(--aqua); background: var(--aqua-lt);
  padding: var(--s4); border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: var(--s4) 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--aqua-dk); }

/* ---------- prose (guide pages) ---------- */
/* .wrap.prose would auto-centre a narrower column and leave the full-width
   page heading misaligned against it. .wrap--article is the shared measure:
   put it on the intro AND the body and they line up. */
.wrap--article { width: min(100% - 2.4rem, 880px); margin-inline: auto; }
.prose { max-width: 74ch; }
.wrap--article .prose, .prose.wrap--article { max-width: none; }
.prose h2 { margin-top: var(--s6); }
.prose h3 { margin-top: var(--s5); font-size: var(--t-lg); }
.prose > :first-child { margin-top: 0; }
.prose figure { margin: var(--s5) 0; }
.prose figure img { border-radius: var(--r); box-shadow: var(--shadow-1); }
.prose figcaption { font-size: var(--t-xs); color: var(--ink-soft); margin-top: .5rem; }

/* ---------- footer ---------- */
.ftr { background: var(--deep-2); color: #9db8c3; padding: var(--s7) 0 var(--s5); font-size: var(--t-sm); }
.ftr a { color: #cfe2e8; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr__cols { display: grid; gap: var(--s5); grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin-bottom: var(--s5); }
.ftr h4 { color: #fff; font-family: var(--sans); font-size: var(--t-xs); letter-spacing: .14em; text-transform: uppercase; font-weight: 640; margin-bottom: var(--s3); }
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: .5rem; }
.ftr__bar { border-top: 1px solid rgba(255,255,255,.12); padding-top: var(--s4); display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: space-between; font-size: var(--t-xs); color: #7f9dab; }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(252,250,246,.94); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(12,26,35,.12);
}
.callbar .btn { width: 100%; padding: .78rem 1rem; }
@media (min-width: 720px) { .callbar { display: none; } }
@media (max-width: 719px) { body { padding-bottom: 4.6rem; } }

/* ---------- utilities ---------- */
.center { text-align: center; }
.mt0 { margin-top: 0; }
.mb0 { margin-bottom: 0; }
.stack > * + * { margin-top: var(--s3); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
