/* Theriot's Custom Pools — DESIGN.md tokens. Libre Baskerville + Figtree. */
:root {
  --ink: #080808;
  --paper: #F4EBD4;
  --blue: #86CBF4;
  --gold: #E2CC8A;
  --darkgold: #6C603C;
  --mute: #3A3428;
  --soft: #D8D0B8;
  --on-ink: #F4EBD4;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --wrap: 1180px;
  --dock-h: 0px;
  --rail: 0px;
  --panel: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: "Figtree", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  background: url("assets/grain.png");
  opacity: .045;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--darkgold); }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }

h1, h2, h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.4rem, 4.8vw, 4.6rem); line-height: 0.95; }
h2 { font-size: clamp(2rem, 3.4vw, 2.75rem); line-height: 1.02; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.15; }

.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.eyebrow--gold { color: var(--gold); }
.subhead { max-width: 40rem; margin-top: 16px; color: var(--mute); }
.section-head { margin-bottom: 48px; }
section[id] { scroll-margin-top: 84px; }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 26px;
  font-family: "Figtree", sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--panel); cursor: pointer; border: 0;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--primary { background: var(--blue); color: var(--ink); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(134, 203, 244, .28); }
.btn--ghost {
  background: transparent; color: var(--paper);
  box-shadow: inset 0 0 0 1.5px rgba(244, 235, 212, .45);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold); transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 8, 8, .94);
}
.header__inner { display: flex; align-items: center; gap: 28px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { width: 72px; height: 41px; object-fit: contain; }
.brand__words { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem; color: var(--paper); letter-spacing: -0.02em;
}
.brand__sub {
  font-size: .58rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
}
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 8px 12px;
  font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--soft); text-decoration: none;
}
.nav a:hover { color: var(--blue); }
.header__call { min-height: 48px; padding: 11px 18px; }

.m-nav { display: none; position: relative; margin-left: auto; }
.m-nav summary {
  list-style: none; display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; cursor: pointer;
}
.m-nav summary::-webkit-details-marker { display: none; }
.m-nav summary span { display: block; height: 2px; background: var(--paper); }
.m-nav[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.m-nav[open] summary span:nth-child(2) { opacity: 0; }
.m-nav[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.m-nav summary span { transition: transform .2s var(--ease), opacity .2s var(--ease); }
.m-nav__panel {
  position: absolute; right: 0; top: calc(100% + 10px); width: min(300px, 82vw);
  display: flex; flex-direction: column; gap: 2px;
  background: var(--ink); padding: 14px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .45);
}
.m-nav__panel a {
  display: flex; align-items: center; min-height: 48px; padding: 10px 14px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--paper); text-decoration: none; border-radius: var(--panel);
}
.m-nav__panel a:hover { background: rgba(244, 235, 212, .06); }
.m-nav__panel .btn { margin-top: 8px; justify-content: center; color: var(--ink); }

/* ---------- hero: dusk still + full-width bottom ink type rail ---------- */
.hero {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - 76px);
  background: var(--ink);
}
/* The still takes whatever the rail leaves, so the CTA never falls below the
   fold on short laptops. */
.hero__still {
  position: relative;
  flex: 1 1 auto;
  min-height: 34vh;
  overflow: hidden;
  border-radius: var(--rail);
}
.hero__still img,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  max-width: none;
}
.hero__video {
  z-index: 1;
  pointer-events: none;
}
/* Sinks the still into the rail so the fold is one field, and keeps the
   sticky header legible over the sky. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, .45) 0%, rgba(8, 8, 8, 0) 16%),
    linear-gradient(180deg, rgba(8, 8, 8, 0) 72%, rgba(8, 8, 8, .32) 86%, var(--ink) 100%);
}
.hero__rail {
  background: var(--ink);
  border-radius: var(--rail);
  padding: 4px 0 26px;
}
.hero .eyebrow { color: var(--blue); }
.hero h1 { color: var(--paper); }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--blue); }
/* Headline spans the rail; the lede and the published review share the row
   beneath it so the right half is never dead ink. */
.rail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, .62fr);
  column-gap: 56px;
  align-items: start;
}
.rail__grid > .eyebrow { grid-column: 1 / -1; margin-bottom: 14px; }
.rail__grid > h1 { grid-column: 1 / -1; margin-bottom: 24px; }
.rail__lead { grid-column: 1; }
.rail__proof { grid-column: 2; }
.hero .lede { font-size: 1.04rem; line-height: 1.55; color: var(--soft); max-width: 38rem; }
.hero .lede a { color: var(--gold); }
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 20px; }
.hero__alt { margin-left: 10px; font-size: .88rem; color: var(--soft); }
.hero__alt a { color: var(--gold); }

.rail__proof {
  padding: 20px 22px;
  background: rgba(244, 235, 212, .05);
  box-shadow: inset 0 0 0 1px rgba(244, 235, 212, .12);
  border-radius: var(--panel);
}
.proof__label {
  font-size: .66rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.proof__quote p {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: .95rem; line-height: 1.5; color: var(--paper); letter-spacing: -0.015em;
}
.proof__quote footer {
  margin-top: 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
}

/* ---------- 0px trust rail ---------- */
.trust { background: var(--ink); padding: 0 0 8px; }
.trust__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 28px 0 36px;
  border-radius: var(--rail);
}
.trust__item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 8px 20px 8px 0;
  position: relative;
}
/* Two-stroke ripple from the logo — not a template pip. */
.trust__pip {
  width: 34px; height: 14px;
  margin-bottom: 14px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 14' fill='none' stroke='%23000' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M1.6 10c3.1-3.8 6.2-3.8 9.3 0s6.2 3.8 9.3 0 6.2-3.8 9.3 0'/%3E%3Cpath d='M1.6 4.6c3.1-3.8 6.2-3.8 9.3 0s6.2 3.8 9.3 0 6.2-3.8 9.3 0'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 14' fill='none' stroke='%23000' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M1.6 10c3.1-3.8 6.2-3.8 9.3 0s6.2 3.8 9.3 0 6.2-3.8 9.3 0'/%3E%3Cpath d='M1.6 4.6c3.1-3.8 6.2-3.8 9.3 0s6.2 3.8 9.3 0 6.2-3.8 9.3 0'/%3E%3C/svg%3E") center / contain no-repeat;
}
.trust__value {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  color: var(--paper);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.trust__label {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  max-width: 15rem;
}
.trust__item--link { text-decoration: none; color: inherit; }
.trust__item--link:hover .trust__value { color: var(--blue); }

/* ---------- dusk service panels ---------- */
.services { background: var(--ink); padding: 72px 0 24px; }
.services .section-head h2 { color: var(--paper); }
.services .subhead { color: var(--soft); }
.dusk-panel {
  position: relative;
  min-height: 480px;
  margin: 16px auto;
  width: min(var(--wrap), calc(100% - 48px));
  border-radius: var(--panel);
  overflow: hidden;
  isolation: isolate;
  transition: transform .22s var(--ease);
}
.dusk-panel--tall { min-height: 600px; }
.dusk-panel:hover { transform: translateY(-4px); }
.dusk-panel picture, .dusk-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.dusk-panel img {
  object-fit: cover;
  object-position: center;
  max-width: none;
  transition: transform .56s var(--ease);
}
.dusk-panel:hover img { transform: scale(1.035); }
.dusk-panel--low img { object-position: center 78%; }
.dusk-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Anchored at the type corner so the rest of the still stays bright. */
  background:
    radial-gradient(135% 115% at 0% 100%, rgba(8, 8, 8, .92) 0%, rgba(8, 8, 8, .58) 34%, rgba(8, 8, 8, 0) 70%),
    linear-gradient(180deg, rgba(8, 8, 8, 0) 46%, rgba(8, 8, 8, .38) 100%);
  pointer-events: none;
}
.dusk-panel__type {
  position: absolute;
  left: 32px;
  bottom: 32px;
  right: 32px;
  max-width: 28rem;
  z-index: 1;
}
.dusk-panel__type h3 { color: var(--paper); }
.dusk-panel__type p { color: var(--soft); margin-top: 8px; }
.card__link {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  margin-top: 10px;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); text-decoration: none;
}
.card__link .arr { transition: transform .2s var(--ease); }
.card__link:hover .arr { transform: translateX(4px); }

/* ---------- about (paper) ---------- */
.about { background: var(--paper); padding: 100px 0; }
.about .eyebrow,
.areas .eyebrow,
.faq .eyebrow { color: var(--darkgold); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 56px;
  align-items: start;
}
.about__copy h2 { margin-bottom: 22px; }
.about__copy p + p { margin-top: 16px; color: var(--mute); }
.about__copy p:first-of-type { color: var(--ink); }
.about__copy a { color: var(--darkgold); text-decoration: underline; }
.about__still { border-radius: var(--panel); overflow: hidden; }
.about__still img { width: 100%; height: auto; object-fit: cover; }
.about__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; list-style: none; }
.about__chips li {
  padding: 8px 18px; min-height: 40px; display: inline-flex; align-items: center;
  background: #E8DDB8; border-radius: 999px;
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
}

/* ---------- reviews (ink) ---------- */
.reviews { background: var(--ink); padding: 100px 0; }
.reviews h2 { color: var(--paper); }
.reviews .subhead { color: var(--soft); }
.reviews .subhead strong { color: var(--paper); font-weight: 600; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.review {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px;
  background: rgba(244, 235, 212, .05);
  border-radius: var(--panel);
}
.review__mark {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 6px;
}
.review p {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--paper);
  letter-spacing: -0.015em;
}
.review footer {
  margin-top: auto;
  padding-top: 22px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
}

/* ---------- areas (paper) ---------- */
.areas { background: var(--paper); padding: 100px 0; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.area { padding: 8px 4px; }
.area h3 { margin-bottom: 16px; }
.area p { color: var(--mute); }
.area__chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.area__chips li {
  display: inline-flex; align-items: center; min-height: 36px;
  padding: 7px 15px;
  background: #E8DDB8; border-radius: 999px;
  font-size: .82rem; font-weight: 600; color: var(--ink);
}

/* ---------- CTA dusk wash ---------- */
.cta {
  background: var(--ink);
  padding: 88px 0;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/led.jpg") center/cover no-repeat;
  opacity: .3;
  pointer-events: none;
}
.cta__inner { position: relative; max-width: 40rem; }
.cta h2 { color: var(--paper); }
.cta p { color: var(--soft); margin: 16px 0 0; }
.cta a:not(.btn) { color: var(--gold); }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); padding: 100px 0; }
.faq__list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; max-width: 48rem; }
.faq__item { border-radius: var(--rail); }
.faq__item summary {
  list-style: none; cursor: pointer; position: relative;
  display: flex; align-items: center; min-height: 56px;
  padding: 20px 56px 20px 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.15rem; color: var(--ink); letter-spacing: -0.02em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  font-family: "Figtree", sans-serif; font-size: 1.5rem; color: var(--darkgold);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 56px 22px 0; max-width: 44rem; color: var(--mute); }
.faq__item a { color: var(--darkgold); text-decoration: underline; }

/* ---------- contact ---------- */
.contact { background: var(--ink); padding: 100px 0 116px; color: var(--soft); }
.contact h2 { color: var(--paper); }
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 72px;
  align-items: start;
}
.contact__k { margin-top: 30px; }
.contact__phone {
  display: inline-block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper); text-decoration: none;
}
.contact__phone:hover { color: var(--blue); }
.contact__mail { margin-top: 10px; }
.contact__mail a { color: var(--gold); font-weight: 600; }
.contact__fax { margin-top: 6px; color: var(--soft); }
.contact__maps { margin-top: 10px; }
.contact__maps a { color: var(--gold); font-weight: 600; }
.addr-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.addr-k {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.contact__trust { list-style: none; margin-top: 28px; display: grid; gap: 10px; }
.contact__trust li {
  display: flex; align-items: baseline; gap: 12px;
  color: var(--paper); font-weight: 600;
}
.contact__trust li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px; height: 7px;
  border-radius: 99px;
  background: var(--gold);
  transform: translateY(-2px);
}
.contact__close { margin-top: 28px; max-width: 34rem; }
.contact__close a { color: var(--gold); }

.form {
  background: var(--paper); color: var(--ink);
  border-radius: var(--panel);
  padding: 36px;
  display: grid; gap: 16px;
}
.form__title { margin-bottom: 4px; }
.form__field { display: grid; gap: 7px; }
.form__field span {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--darkgold);
}
.form__field input, .form__field select, .form__field textarea {
  font: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 16px; min-height: 50px;
  background: #EFE4C8; border: 1.5px solid #D4C49A; border-radius: var(--panel);
}
.form__field textarea { resize: vertical; min-height: 110px; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none; border-color: var(--darkgold); box-shadow: 0 0 0 3px rgba(108, 96, 60, .22);
}
.form__submit { width: 100%; }
.form__note { font-size: .85rem; color: var(--mute); }
.form__note a { color: var(--darkgold); }

/* ---------- footer ---------- */
.site-footer { padding: 56px 0 0; background: #050505; color: var(--soft); }
.footer__grid {
  display: grid; gap: 48px;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  padding-bottom: 56px;
}
.footer__mark { width: 88px; height: auto; margin-bottom: 16px; }
.footer__name {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.15rem; color: var(--paper); letter-spacing: -0.02em;
}
.footer__slogan { font-size: .9rem; color: var(--gold); margin-top: 6px; }
.footer__head {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer__col a {
  display: flex; align-items: center; min-height: 44px;
  color: var(--soft); text-decoration: none; font-size: .95rem;
}
.footer__col a:hover { color: var(--blue); }
.footer__phone {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.25rem; color: var(--paper) !important;
}
.footer__text { font-size: .92rem; margin: 10px 0 14px; }
.footer__base {
  padding: 22px 0 calc(22px + var(--dock-h));
  font-size: .82rem; color: var(--gold);
}

.dock { display: none; }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero__still img { animation: heroSettle .7s var(--ease) both; }
  .hero .rise { opacity: 0; animation: riseIn .56s var(--ease) forwards; }
  .hero .d1 { animation-delay: .08s; }
  .hero .d2 { animation-delay: .16s; }
  .hero .d3 { animation-delay: .24s; }
  .hero .d4 { animation-delay: .32s; }
  .float-pip { animation: pipFloat .7s var(--ease) 1.1s 1 both; }

  @supports (animation-timeline: view()) {
    .reveal { animation: riseIn .56s var(--ease) both; animation-timeline: view(); animation-range: entry 8% entry 38%; }
    .reveal-stagger > * { animation: riseIn .56s var(--ease) both; animation-timeline: view(); animation-range: entry 6% entry 32%; }
  }
}

@keyframes heroSettle { from { transform: scale(1.05); } to { transform: scale(1); } }
@keyframes riseIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pipFloat { from { transform: translateY(0); } to { transform: translateY(-8px); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .hero__video { display: none; }
}
@media (prefers-reduced-data: reduce) {
  .hero__video { display: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .trust__rail { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; }
  .rail__grid { column-gap: 36px; }
  .hero__alt { display: none; }
  .review-grid, .about__grid, .contact__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .dusk-panel { min-height: 400px; }
  .dusk-panel--tall { min-height: 460px; }
}

@media (max-width: 819px) {
  :root { --dock-h: 64px; }
  body { padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom)); }
  .nav, .header__call { display: none; }
  .m-nav { display: block; }
  .hero { min-height: auto; }
  .hero__still { min-height: 40vh; }
  .hero__rail { padding: 18px 0 26px; }
  .hero h1 { font-size: clamp(1.95rem, 8vw, 2.6rem); }
  .hero .lede { display: none; }
  .rail__grid { grid-template-columns: minmax(0, 1fr); }
  .rail__grid > h1 { margin-bottom: 0; }
  .hero__alt { display: none; }
  .rail__proof { display: none; }
  .hero__ctas { margin-top: 18px; }
  .services, .about, .reviews, .areas, .faq { padding: 56px 0; }
  .contact { padding: 56px 0 80px; }
  .cta { padding: 56px 0; }
  .dusk-panel__type { left: 20px; right: 20px; bottom: 20px; }
  .addr-pair { grid-template-columns: minmax(0, 1fr); }
  .dock {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: flex; gap: 10px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(8, 8, 8, .96);
  }
  .dock a {
    flex: 1; display: inline-flex; align-items: center; justify-content: center;
    min-height: 50px; border-radius: var(--panel);
    font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  }
  .dock__call { background: var(--blue); color: var(--ink); }
  .dock__quote { color: var(--paper); box-shadow: inset 0 0 0 1.5px rgba(244, 235, 212, .4); }
}

@media (max-width: 560px) {
  .wrap { width: min(var(--wrap), calc(100% - 32px)); }
  .area-grid, .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .trust__rail { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 16px; }
  .trust__value { font-size: 1.15rem; }
  .trust__label { font-size: .62rem; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .form { padding: 26px 20px; }
  .dusk-panel { width: calc(100% - 32px); min-height: 360px; }
}
