/* Woodstock Computer Repair — slate redesign (dark-first, yellow accent, mono labels) */
@font-face {
  font-family: 'Tektur'; font-style: normal; font-weight: 400 900; font-display: swap;
  src: url('/fonts/tektur-var.woff2?v=f51a8ea9') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('/fonts/inter-var.woff2?v=963969ba') format('woff2');
}
@font-face {
  font-family: 'Fira Mono'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('/fonts/firamono-400.woff2?v=1062be12') format('woff2');
}
:root {
  --header: #2B4E64;       /* header + page slate */
  --bg: #2B4E64;           /* page background */
  --panel: #234455;        /* card panels (darker than page) */
  --panel-2: #1C3949;      /* darker band / form card / footer */
  --line: rgba(255,255,255,.16);   /* hairline borders */
  --line-strong: rgba(255,255,255,.32);
  --ink: #FFFFFF;          /* body + heading text (white, AA floor) */
  --ink-dark: #14303F;     /* darkest bands */
  --strip: #0D1B24;        /* footer top strip */
  --cream: #FDF6EE;        /* warm white text on dark */
  --gray: #31576D;         /* lighter slate band */
  --paleblue: #234455;     /* legacy pale cards -> panel */
  --yellow: #FFE057;       /* CTA */
  --yellow-hover: #FFD21E;
  --orange: #FFE057;       /* step numbers unified to brand yellow */
  --soft: #DCE9F1;         /* secondary text, still near-white */
  --radius: 12px;
  --font-head: 'Tektur', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-nav: 'Fira Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* no sideways rubber-banding on mobile: clip (not hidden) avoids creating a scroll container */
html, body { overflow-x: hidden; overflow-x: clip; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.65; font-size: 17px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--font-head); color: #fff; font-weight: 700; line-height: 1.12; }
h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.45rem); }

.wrap { max-width: 1304px; margin: 0 auto; padding: 0 22px; }
section { padding: 88px 0; }
.band-gray { background: var(--gray); }
.band-dark { background: var(--ink-dark); }
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark p, .band-dark li { color: #fff; }
.center { text-align: center; }
.lead { font-size: 1.2rem; font-weight: 700; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 28px; } .mt-4 { margin-top: 44px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--font-body); font-weight: 800; font-size: 1.02rem;
  background: var(--yellow); color: #0D1B24; text-decoration: none; text-transform: uppercase;
  letter-spacing: .01em;
  padding: 14px 38px; border-radius: 999px; border: 0;
  box-shadow: 0 8px 22px rgba(0,0,0,.35); cursor: pointer;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); box-shadow: 0 4px 12px rgba(0,0,0,.35); }
.btn:hover { background: var(--yellow-hover); transform: translateY(-1px); }
.band-dark .btn, footer .btn { border: 0; }
.btn-ghost, .band-dark .btn-ghost, footer .btn-ghost {
  background: transparent; color: var(--yellow); border: 2px solid var(--yellow);
  box-shadow: none; padding: 12px 36px;
}
.btn-ghost:hover { background: rgba(255,224,87,.12); }

/* ---------- Booking widget ---------- */
.bookw {
  background: #fff; color: #14303F; border-radius: 16px;
  padding: 22px 20px; box-shadow: 0 12px 40px rgba(0,0,0,.35);
  text-align: left; font-size: 1.05rem;
}
.bookw .bw-h { color: #14303F; font-size: 1.15rem; margin: 0 0 12px; }
.bw-step { margin-bottom: 22px; }
.bw-days, .bw-times { display: flex; flex-wrap: wrap; gap: 10px; }
.bw-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); }
.bw-chip {
  min-height: 48px; padding: 10px 14px; border: 2px solid #2B4E64; border-radius: 12px;
  background: #fff; color: #14303F; font-family: var(--font-body); font-weight: 700;
  font-size: 1rem; cursor: pointer;
}
.bw-chip:hover { background: #EAF1F6; }
.bw-chip.on { background: #2B4E64; color: #fff; }
.bw-loading { color: #44606F; font-weight: 600; }
.bw-chosen { font-weight: 800; margin: 0 0 14px; color: #14303F; }
.bw-label { display: block; font-weight: 700; margin-bottom: 14px; color: #14303F; }
.bw-label input, .bw-label textarea {
  display: block; width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 2px solid #B8C9D4; border-radius: 10px; font: inherit; color: #14303F; background: #fff;
}
.bw-label input:focus, .bw-label textarea:focus { outline: 3px solid #FFE057; border-color: #2B4E64; }
.bw-book { width: 100%; margin-top: 6px; }
.bw-book:disabled { opacity: .6; cursor: wait; }
.bw-err { color: #A4262C; font-weight: 700; margin-top: 12px; }
.bw-done { text-align: center; padding: 12px 0; }
.bw-done-when { font-weight: 800; font-size: 1.2rem; }
.bw-fallback { margin-top: 6px; }
.bookw .bw-fallback a, .bookw a { color: #1A5A8A; }

/* ---------- Booking modal ---------- */
.book-modal { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; }
.book-modal[hidden] { display: none; }
.book-modal-back { position: absolute; inset: 0; background: rgba(13,27,36,.78); }
.book-modal-panel {
  position: relative; display: flex; flex-direction: column;
  width: min(480px, calc(100vw - 20px)); max-height: min(760px, calc(100vh - 20px));
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
}
.book-modal-bar { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; background: var(--strip); padding: 10px 14px; }
.book-modal-title { font-family: var(--font-mono); color: var(--yellow); font-size: .8rem; letter-spacing: .06em; }
.book-modal-x {
  width: 36px; height: 36px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; font-size: 22px; line-height: 1;
}
.book-modal-x:hover { background: rgba(255,255,255,.28); }
.book-modal-body { overflow-y: auto; }
.book-modal-body .bookw { border-radius: 0; box-shadow: none; }
@media (max-width: 520px) { .book-modal-panel { width: 100vw; max-height: 100dvh; height: 100dvh; border-radius: 0; } }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-row.center { justify-content: center; }
.text-line { font-weight: 700; letter-spacing: .02em; }
.band-dark .text-line a, footer .text-line a { color: var(--yellow); text-decoration: none; }

/* ---------- Header ---------- */
header.site { background: var(--header); position: sticky; top: 0; z-index: 90; border-bottom: 1px solid var(--line); }
header.site.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.nav-bar {
  display: flex; align-items: center; gap: 16px;
  max-width: 1360px; margin: 0 auto; padding: 14px 28px;
}
.brand-badge, .head-cta { flex-shrink: 0; }
.brand-badge img { height: 64px; width: 64px; }
.nav-center { flex: 1; display: flex; flex-direction: row; align-items: center; gap: 16px; }
.nav-center nav.main { margin: 0 auto; }
nav.main ul.pill {
  list-style: none; display: flex; align-items: center; gap: 2px;
  background: rgba(13,27,36,.35); border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px;
}
nav.main a {
  font-family: var(--font-nav); font-size: .82rem; color: #fff; text-decoration: none;
  padding: 7px 12px; border-radius: 999px; white-space: nowrap; display: block;
}
nav.main a:hover { background: rgba(255,255,255,.1); }
nav.main li.active > a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
nav.main li { position: relative; }
nav.main .dd {
  display: none; position: absolute; top: 100%; left: 0; min-width: 250px;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
  list-style: none; padding: 8px; z-index: 99;
}
nav.main li:hover > .dd, nav.main li:focus-within > .dd { display: block; }
nav.main .dd a { border-radius: 8px; }
/* grouped mega-menu under Computer Repair */
nav.main .dd-mega { left: 50%; transform: translateX(-50%); min-width: 0; width: max-content; max-width: min(96vw, 1040px); display: none; grid-template-columns: repeat(4, auto); gap: 6px 22px; padding: 16px 18px 12px; }
nav.main li:hover > .dd-mega, nav.main li:focus-within > .dd-mega { display: grid; }
nav.main .dd-col { list-style: none; }
nav.main .dd-col > ul { list-style: none; margin: 0; padding: 0; }
nav.main .dd-h { display: block; width: 100%; text-align: left; background: none; border: 0; cursor: default; font-family: var(--font-nav); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow); padding: 4px 12px 6px; }
nav.main .dd-mega a { font-size: .8rem; padding: 6px 12px; white-space: nowrap; }
nav.main .dd-all { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 6px; }
nav.main .dd-all a { color: var(--yellow); font-weight: 700; }
.head-cta { display: flex; flex-direction: column; align-items: center; gap: 5px; white-space: nowrap; }
.head-cta .btn { padding: 10px 26px; font-size: .82rem; }
.head-cta .text-line { color: #fff; font-size: .72rem; font-family: var(--font-nav); }
.head-cta .text-line a { color: #fff; text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; font-size: 2rem; color: #fff; cursor: pointer; justify-self: end; }
@media (min-width: 1181px) and (max-width: 1340px) { .head-cta .text-line { display: none; } }

@media (max-width: 1180px) {
  .nav-bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; }
  .brand-badge img { height: 46px; width: 46px; margin: 0; }
  .nav-toggle { display: block; }
  header.site.scrolled .nav-bar { padding: 10px 16px; }
  header.site.scrolled .brand-badge img, .brand-badge img { height: 46px; width: 46px; margin: 0; }
  .nav-center { display: none; }
}
/* Spanish labels run longer: shrink slightly, then collapse to the overlay menu earlier */
html[lang="es"] nav.main a { font-size: .76rem; padding: 7px 8px; }
@media (min-width: 1181px) and (max-width: 1400px) {
  html[lang="es"] nav.main a { font-size: .7rem; padding: 7px 6px; }
  html[lang="es"] nav.main ul.pill { gap: 0; }
}
@media (min-width: 1181px) and (max-width: 1270px) {
  html[lang="es"] .nav-bar { padding: 12px 10px; gap: 8px; }
  html[lang="es"] nav.main a { font-size: .68rem; padding: 7px 5px; }
  html[lang="es"] .head-cta .btn { padding: 10px 12px; font-size: .74rem; }
  html[lang="es"] .brand-badge img { height: 48px; width: 48px; }
}
.es-only { display: none; }
html[lang="es"] .es-only { display: revert; }
html[lang="es"] .en-only { display: none; }
/* full-screen overlay menu — applies at any width the hamburger opened it */
.nav-center.open {
  display: flex; position: fixed; inset: 0; z-index: 200;
  background: var(--strip); padding: 70px 24px 40px; overflow-y: auto;
  flex-direction: column; align-items: center; gap: 26px;
}
.nav-center.open::before { content: ""; }
.nav-center.open .head-cta { flex-direction: column; gap: 10px; }
.nav-center.open nav.main { margin: 0; }
.nav-center.open nav.main ul.pill {
  flex-direction: column; border-radius: 20px; width: 100%; max-width: 380px;
  align-items: center; background: var(--panel-2); border: 1px solid var(--line); padding: 26px 16px; gap: 14px;
}
.nav-center.open nav.main a { font-size: 1rem; color: #fff; padding: 7px 12px; }
.nav-center.open nav.main .dd { display: block; position: static; box-shadow: none; background: none; border: 0; padding: 4px 0 0; text-align: center; min-width: 0; }
.nav-center.open nav.main .dd-mega { display: block; transform: none; width: auto; max-width: none; }
.nav-center.open nav.main .dd-col { margin: 6px 0; }
.nav-center.open nav.main .dd-h { cursor: pointer; text-align: center; font-size: .8rem; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; }
.nav-center.open nav.main .dd-h::after { content: " \25BE"; }
.nav-center.open nav.main .dd-col > ul { display: none; }
.nav-center.open nav.main .dd-col.open > ul { display: block; padding-top: 6px; }
.nav-center.open nav.main .dd-col.open .dd-h::after { content: " \25B4"; }
.nav-center.open nav.main .dd-all { border-top: 0; margin-top: 4px; }
.nav-center.open .menu-badge { display: block; width: 110px; height: auto; }
.nav-center.open .head-cta .text-line { display: block; color: var(--soft); }
.nav-center.open .head-cta .text-line a { color: #fff; }
.nav-center .menu-badge { display: none; }
.nav-close {
  position: fixed; top: 16px; right: 20px; z-index: 210; display: none;
  background: none; border: none; font-size: 2.2rem; color: #fff; cursor: pointer; line-height: 1;
}
.nav-center.open .nav-close { display: block; }

/* ---------- Hero ---------- */
.h1-caps { text-transform: uppercase; font-size: clamp(2.4rem, 5.2vw, 4.6rem); letter-spacing: .01em; }
.hero { padding: 56px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (min-width: 881px) { .hero-grid.home { grid-template-columns: 1.4fr .6fr; } }
.hero-grid.about-hero { gap: 0; align-items: stretch; }
.hero-grid.about-hero img { border-radius: 0; width: 100%; height: 100%; max-height: 640px; object-fit: cover; }
@media (min-width: 881px) { .hero-grid.about-hero { grid-template-columns: .45fr .55fr; } }
@media (max-width: 880px) { .hero-grid.about-hero img { height: auto; max-height: 420px; } .hero-grid.about-hero > div { padding: 36px 22px !important; } }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }
.hero .sub { font-size: clamp(1.1rem, 1.85vw, 1.65rem); font-weight: 700; margin: 18px 0; text-transform: uppercase; letter-spacing: .02em; color: var(--yellow); }
.hero img { border-radius: var(--radius); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.plain-list { list-style: none; margin-top: 8px; }
.plain-list li { padding: 3px 0; font-weight: 600; }
.plain-list li::before { content: "// "; font-family: var(--font-nav); color: var(--yellow); }
.consult-band {
  background: transparent; border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 14px 26px; font-weight: 700; display: inline-block; margin: 22px 0 18px; color: #fff;
}

/* Home hero photo pair */
.photo-pair { display: grid; grid-template-columns: 1.96fr 1fr; gap: 54px; align-items: start; margin-top: 48px; }
.photo-pair img { border-radius: 10px; box-shadow: 0 14px 34px rgba(0,0,0,.4); width: 100%; object-fit: cover; }
.photo-pair img.crop-wide { aspect-ratio: 2.19 / 1; }
.photo-pair img.crop-square { aspect-ratio: 1.115 / 1; object-position: center 30%; }
@media (max-width: 720px) { .photo-pair { grid-template-columns: 1fr; gap: 26px; } .photo-pair img.crop-wide, .photo-pair img.crop-square { aspect-ratio: auto; } }
.caption { font-size: 1rem; margin-top: 10px; text-align: center; color: var(--soft); }

/* ---------- Service rows (title | desc | thumb) ---------- */
.svc-split { display: grid; grid-template-columns: .9fr 1.4fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .svc-split { grid-template-columns: 1fr; } }
.svc-rows { list-style: none; }
.svc-rows li {
  display: grid; grid-template-columns: 1fr 1.7fr 135px; gap: 26px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.svc-rows li:first-child { border-top: 1px solid var(--line); }
.svc-rows h3 { font-size: 1.1rem; }
.svc-rows p { font-size: .95rem; text-align: center; }
.svc-rows.no-thumb p { text-align: left; }
.svc-rows img { width: 135px; height: 135px; object-fit: cover; border-radius: 8px; justify-self: end; }
.svc-rows.no-thumb li { grid-template-columns: 1fr; gap: 6px; align-items: start; }
@media (max-width: 640px) { .svc-rows li { grid-template-columns: 1fr; } .svc-rows img { width: 100%; height: auto; } }

/* Two-col checklist w/ dividers (computer-repair page) */
.list-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; list-style: none; }
@media (max-width: 640px) { .list-cols { grid-template-columns: 1fr; } }
.list-cols li { padding: 12px 2px; border-bottom: 1px solid var(--line); font-weight: 600; }

/* ---------- Column features on dark bands ---------- */
.rule-cols { display: grid; gap: 34px; }
.rule-cols.c3 { grid-template-columns: repeat(3, 1fr); }
.rule-cols.c4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .rule-cols.c3, .rule-cols.c4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rule-cols.c3, .rule-cols.c4 { grid-template-columns: 1fr; } }
.rule-cols > div { border-top: 2px solid var(--yellow); padding-top: 18px; }
.rule-cols h3 { font-size: 1.05rem; margin-bottom: 10px; }
.rule-cols p { font-size: .95rem; }

/* ---------- Marquee (city ticker) ---------- */
.marquee { background: var(--bg); overflow: hidden; overflow: clip; max-width: 100vw; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee .track {
  display: inline-flex; white-space: nowrap; animation: scroll 28s linear infinite;
  font-family: var(--font-nav); font-weight: 400; font-size: .9rem;
  color: var(--soft); letter-spacing: .18em; text-transform: uppercase;
}
.marquee span { padding-right: .6em; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.card-line { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 26px; }
.card-line:hover { border-color: var(--line-strong); }
.card-line h3 { font-size: 1.05rem; margin-bottom: 10px; }
.svc-idx { display: block; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px; text-decoration: none; color: inherit; }
.svc-idx:hover { border-color: var(--line-strong); }
.svc-idx h3 { font-size: 1rem; margin-bottom: 6px; }
.svc-idx p { font-size: .9rem; color: var(--soft); }
.card-pale { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 22px; }
.card-pale h3 { font-size: 1rem; margin-bottom: 8px; }
.card-pale p { font-size: .92rem; }
.card-white { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 26px; }
.card-white .emoji { font-size: 1.8rem; margin-bottom: 10px; }
.card-white h3 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.band-dark .card-white h3 { color: #fff; }
.band-dark .card-white p { color: #fff; }

/* Family cards */
.card-gray { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 30px 26px; text-align: center; }
.card-gray img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; }

/* Numbered 2x2 cards (about) */
.num-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.num-cards.joined { gap: 0; }
.num-cards.joined > * { border-radius: 0; margin: 0 -1px -1px 0; box-shadow: none; }
@media (max-width: 640px) { .num-cards { grid-template-columns: 1fr; } }
.num-cards > div { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 26px; }
.num-cards .n { font-family: var(--font-nav); font-weight: 400; font-size: 1.6rem; color: var(--yellow); }

/* ---------- Steps ---------- */
.step { display: grid; grid-template-columns: 90px 1fr; gap: 26px; align-items: start; padding: 22px 0; }
.step .num {
  font-family: var(--font-nav); font-weight: 400; font-size: 2.6rem; line-height: 1.3;
  color: var(--yellow); text-align: center;
}
.steps-orange .step .num { color: var(--yellow); }
.steps-orange .step { display: block; border-left: 1px solid var(--line-strong); margin-left: 45px; padding-left: 40px; position: relative; }
.steps-orange .step .num { position: absolute; left: -34px; background: var(--bg); padding: 4px 0; }
.band-gray .steps-orange .step .num { background: var(--gray); }
.step h3 { margin-bottom: 6px; }
@media (max-width: 640px) { .step { grid-template-columns: 60px 1fr; gap: 16px; } .step .num { font-size: 2rem; } }

/* ---------- Testimonials ---------- */
.tst { background: var(--panel); border: 1px solid var(--line); border-left: 4px solid var(--yellow); border-radius: 0 10px 10px 0; padding: 26px; font-style: italic; color: #fff; }
.tst cite { display: block; margin-top: 16px; font-style: normal; font-family: var(--font-nav); font-weight: 400; font-size: .82rem; letter-spacing: .06em; color: var(--yellow); }

/* ---------- FAQ (plain Q/A) ---------- */
.faq-split { display: grid; grid-template-columns: .8fr 1.6fr; gap: 48px; }
@media (max-width: 800px) { .faq-split { grid-template-columns: 1fr; } }
.qa { padding: 18px 0; border-bottom: 1px solid var(--line); }
.qa h3 { font-size: 1.05rem; margin-bottom: 8px; }
.band-gray .qa, .band-gray .qa h3 { border-color: var(--line); }

/* ---------- Map ---------- */
.map-embed { border: 0; width: 100%; height: 420px; border-radius: 10px; box-shadow: 0 12px 30px rgba(0,0,0,.4); border: 1px solid var(--line);
  overflow: hidden; overflow: clip; touch-action: pan-y pinch-zoom;
  /* own stacking context: Leaflet's internal panes (z-index 400+) must not
     paint over the sticky header (z-index 90) */
  position: relative; z-index: 0; isolation: isolate; }

/* ---------- Form card ---------- */
.form-card {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 12px; padding: 30px 30px 34px;
  box-shadow: 0 18px 46px rgba(0,0,0,.35); max-width: 640px;
}
.band-dark .form-card { background: var(--panel-2); }
form.contact label { display: block; font-weight: 700; font-size: .8rem; margin: 16px 0 5px; font-family: var(--font-nav); letter-spacing: .08em; text-transform: uppercase; color: var(--soft); }
form.contact .two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 520px) { form.contact .two { grid-template-columns: 1fr; } }
form.contact input, form.contact textarea {
  /* never below 16px: smaller text inputs make iOS Safari auto-zoom the page on focus */
  width: 100%; padding: 11px 13px; font-family: var(--font-body); font-size: 1rem;
  border: 1px solid var(--line-strong); border-radius: 8px; background: rgba(13,27,36,.45); color: #fff;
}
form.contact input::placeholder, form.contact textarea::placeholder { color: rgba(220,233,241,.55); }
form.contact input:focus, form.contact textarea:focus { outline: 2px solid var(--yellow); }
form.contact textarea { min-height: 110px; resize: vertical; }
form.contact .hint { font-size: .78rem; color: var(--soft); margin-top: 8px; }
form.contact .submit {
  margin-top: 16px; width: 100%; background: var(--yellow); color: #0D1B24; border: none;
  font-family: var(--font-body); font-weight: 800; font-size: .95rem; padding: 13px;
  border-radius: 999px; cursor: pointer; text-transform: uppercase; letter-spacing: .02em;
}
form.contact .submit:hover { background: var(--yellow-hover); }
.form-status { margin-top: 12px; font-weight: 700; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Giant phone ---------- */
.giant-phone { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 7vw, 4.4rem); color: var(--yellow); text-decoration: none; display: inline-block; margin: 10px 0; }

/* ---------- Footer ---------- */
footer.site { background: var(--panel-2); color: var(--cream); border-top: 1px solid var(--line); }
footer.site .strip { background: var(--strip); padding: 20px 0; }
footer.site .strip .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
/* redundant on phones — the footer mid section right below repeats the CTA */
@media (max-width: 700px) { footer.site .strip { display: none; } }
footer.site .tagline { font-family: var(--font-nav); font-weight: 400; letter-spacing: .14em; text-transform: uppercase; font-size: .85rem; color: var(--soft); }
footer.site .mid { padding: 40px 0 30px; }
footer.site .mid .wrap { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; }
@media (max-width: 800px) { footer.site .mid .wrap { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
footer.site .mid img.tl { height: 58px; width: auto; }
footer.site .cta-stack { text-align: center; }
footer.site .cta-stack .text-line { display: block; margin-bottom: 12px; color: var(--yellow); }
footer.site .cta-stack .text-line a { color: var(--yellow); text-decoration: none; }
footer.site .social { display: flex; gap: 12px; margin-top: 14px; justify-content: center; }
footer.site .social a { display: inline-flex; }
footer.site .social svg { width: 26px; height: 26px; }
footer.site .bbb { justify-self: end; }
footer.site .bbb img { height: 110px; width: auto; }
@media (max-width: 800px) { footer.site .bbb { justify-self: center; } }
footer.site .serving { text-align: center; font-size: .85rem; padding: 0 22px 14px; opacity: .95; }
footer.site .serving a { color: var(--cream); margin: 0 2px; }
footer.site .fineprint { font-size: .8rem; opacity: .9; text-align: center; padding: 18px 22px 26px; border-top: 1px solid var(--line); }
footer.site .fineprint a { color: var(--cream); }

/* ---------- Blog ---------- */
.post-meta { font-size: .85rem; color: var(--soft); margin-top: 10px; font-family: var(--font-nav); }
.post-body { max-width: 780px; margin: 0 auto; }
.post-body h2 { margin: 40px 0 12px; font-size: 1.45rem; }
.post-body p { margin-top: 14px; }
.post-body ul, .post-body ol { margin: 14px 0 0 26px; }
.post-body li { margin-top: 8px; }
.related-box { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 20px 24px; margin-top: 36px; }
.post-card { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 26px; display: block; text-decoration: none; }
.post-card:hover { border-color: var(--line-strong); }
.post-card h3 { margin-bottom: 8px; }
.post-card p { font-size: .95rem; }
.post-card .read { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--yellow); }

/* ===== floating "Text Justin" chat widget ===== */
#wcr-chat { position: fixed; right: 18px; bottom: 18px; z-index: 1200; }
#wcrc-b { width: 60px; height: 60px; border-radius: 50%; background: var(--yellow); border: 0;
  box-shadow: 0 10px 26px rgba(0,0,0,.45); cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; }
#wcrc-b:hover { background: var(--yellow-hover); }
#wcrc-p { position: absolute; right: 0; bottom: 76px; width: min(330px, calc(100vw - 36px)); background: var(--panel-2);
  border: 1px solid var(--line-strong); border-radius: 14px; box-shadow: 0 20px 48px rgba(0,0,0,.5); padding: 18px; text-align: left; }
.wcrc-h { display: flex; justify-content: space-between; align-items: center; font-family: 'Tektur', sans-serif;
  font-weight: 800; color: #fff; font-size: 1.15rem; }
#wcrc-x { background: none; border: 0; font-size: 1.6rem; cursor: pointer; line-height: 1; color: #fff; padding: 0 2px; }
.wcrc-sub { font-size: .85rem; color: var(--soft); margin-top: 4px; }
#wcrc-p label { display: block; font-size: .8rem; font-weight: 700; margin: 10px 0 4px; color: var(--soft); }
#wcrc-p input, #wcrc-p textarea { width: 100%; box-sizing: border-box; border: 1px solid var(--line-strong); border-radius: 8px;
  padding: 9px 10px; font: inherit; font-size: 1rem; background: rgba(13,27,36,.45); color: #fff; } /* >=16px: stops iOS focus auto-zoom */
#wcrc-p input::placeholder, #wcrc-p textarea::placeholder { color: rgba(220,233,241,.55); }
#wcrc-p textarea { min-height: 44px; resize: none; }
#wcrc-log { max-height: min(46vh, 380px); overflow-y: auto; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; padding-right: 2px; }
.wcrc-m { max-width: 92%; padding: 9px 12px; border-radius: 12px; font-size: .95rem; line-height: 1.45; white-space: pre-wrap; word-wrap: break-word; }
.wcrc-bot { background: rgba(13,27,36,.55); color: #fff; align-self: flex-start; border-bottom-left-radius: 4px; }
.wcrc-user { background: var(--yellow); color: #0D1B24; align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 600; }
.wcrc-typing { opacity: .7; font-style: italic; }
.wcrc-slots { display: flex; flex-wrap: wrap; gap: 6px; }
.wcrc-slot { background: transparent; border: 1px solid var(--yellow); color: #fff; border-radius: 999px; padding: 6px 10px; font: inherit; font-size: .85rem; cursor: pointer; }
.wcrc-slot:hover { background: var(--yellow); color: #0D1B24; }
#wcrc-chips { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.wcrc-chip { flex: 1; text-align: center; border: 1px solid var(--line-strong); color: #fff; border-radius: 999px; padding: 7px 8px; font-size: .85rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.wcrc-chip:hover { border-color: var(--yellow); color: var(--yellow); }
.wcrc-row { display: flex; gap: 8px; align-items: flex-end; margin-top: 10px; }
.wcrc-row textarea { flex: 1; }
.wcrc-row .wcrc-btn { width: auto; margin-top: 0; padding: 11px 16px; }
.wcrc-btn { margin-top: 12px; width: 100%; background: var(--yellow); border: 0; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.35); font: inherit; font-weight: 800; padding: 11px; cursor: pointer; font-size: 1rem; text-transform: uppercase; color: #0D1B24; }
.wcrc-btn:disabled { opacity: .6; cursor: default; }
#wcrc-st { font-size: .85rem; margin-top: 10px; min-height: 1em; color: #fff; font-weight: 600; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--yellow); color: #000; font-weight: 700;
  padding: 12px 20px; border-radius: 0 0 10px 0; text-decoration: none;
}
.skip-link:focus { left: 0; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee .track { animation: none; }
  .btn, .brand-badge img, .nav-bar { transition: none; }
}

/* ---------- Google reviews block (deliberately Google-white) ---------- */
.gr-wrap { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 28px 26px; }
.gr-head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 1px solid #E4E7EB; }
.gr-head .gr-score { font-family: Roboto, Arial, Helvetica, sans-serif; font-weight: 500; font-size: 2.4rem; line-height: 1; color: #202124; }
.gr-stars { color: #FBBC04; letter-spacing: 2px; font-size: 1.02rem; line-height: 1; }
.gr-nav { margin-left: auto; display: flex; gap: 10px; }
.gr-nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #DADCE0; background: #fff; cursor: pointer;
  color: #3C4043; font-size: 1.15rem; line-height: 1; display: flex; align-items: center; justify-content: center; padding: 0; }
.gr-nav button:hover:not(:disabled) { background: #F1F3F4; }
.gr-nav button:disabled { opacity: .3; cursor: default; }
.gr-viewport { margin-top: 22px; }
.gr-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px; }
.gr-track::-webkit-scrollbar { display: none; }
.gr-card { flex: 0 0 calc((100% - 22px) / 2); scroll-snap-align: start; background: #fff; border: 1px solid #E4E7EB;
  border-radius: 10px; padding: 20px; position: relative; }
.gr-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.gr-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-head); font-size: 1.05rem; flex: 0 0 40px; }
.gr-name { font-weight: 700; color: #202124; font-size: .98rem; line-height: 1.2; }
.gr-sub { font-size: .8rem; color: #5F6368; margin-top: 2px; }
.gr-g { position: absolute; top: 18px; right: 18px; }
.gr-text { color: #3C4043; font-size: .95rem; margin-top: 10px; }
.gr-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.gr-dots button { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: 0; background: #DADCE0; cursor: pointer; }
.gr-dots button[aria-current="true"] { background: #1A73E8; }
.gr-foot { margin-top: 16px; font-size: .85rem; color: #5F6368; text-align: center; }
/* white Google-style cards sit on the dark page: links inside must not inherit white */
.gr-wrap a:not(.btn), .rev-hero a:not(.btn) { color: #1A73E8; }
@media (max-width: 900px) { .gr-card { flex: 0 0 100%; } .gr-track { align-items: flex-start; } }
@media (max-width: 560px) { .gr-wrap { padding: 22px 16px; } .gr-card { padding: 18px 16px; } .gr-nav { margin-left: 0; } }

/* ---------- 5-star callout under CTAs ---------- */
.cta-stars { margin-top: 9px; font-size: .8rem; font-weight: 700; letter-spacing: .02em; line-height: 1.3; }
.cta-stars .s { color: #FBBC04; letter-spacing: 1px; margin-right: 5px; font-size: .86rem; }
.cta-stars a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.cta-stars a:hover { opacity: .8; }
.cta-stars .sep { opacity: .55; margin: 0 3px; }

/* ---------- blog topic filter ---------- */
.blog-filter { margin: 30px 0 4px; }
.bf-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.bf-pills button { font-family: var(--font-nav); font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent; color: #fff;
  cursor: pointer; line-height: 1; }
.bf-pills button:hover { border-color: var(--yellow); }
.bf-pills button[aria-pressed="true"] { background: var(--yellow); border-color: var(--yellow); color: #0D1B24; }
.bf-count { text-align: center; font-size: .85rem; color: var(--soft); margin-top: 18px; font-family: var(--font-nav); }
.bf-none { text-align: center; padding: 26px 0; font-weight: 700; }
@media (max-width: 560px) { .bf-pills button { font-size: .74rem; padding: 8px 13px; } }


/* ---------- reviews page rating hero + stories (Google-white) ---------- */
.rev-hero { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px 26px; margin-top: 26px; }
.rev-score { font-family: Roboto, Arial, Helvetica, sans-serif; font-weight: 500; font-size: 3.2rem;
  line-height: 1; color: #202124; }
.rev-stars { color: #FBBC04; letter-spacing: 3px; font-size: 1.15rem; line-height: 1; }
.rev-meta { font-size: .92rem; color: #3C4043; margin-top: 6px; }
.rev-hero .btn { margin-left: auto; }
@media (max-width: 620px) { .rev-hero { justify-content: center; text-align: center; } .rev-hero .btn { margin-left: 0; } }

.rev-story { display: block; background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 22px; text-decoration: none; color: #fff; }
.rev-story:hover { border-color: var(--yellow); }
.rev-story .rs-who { display: block; font-family: var(--font-nav); font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--yellow); }
.rev-story .rs-title { display: block; font-family: var(--font-head); font-size: 1.05rem; color: #fff;
  margin-top: 6px; line-height: 1.25; }
.rev-story .rs-desc { display: block; font-size: .93rem; margin-top: 8px; color: var(--soft); }
.rev-story .read { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--yellow); }
.rev-theme h3 { font-size: 1.02rem; margin-bottom: 6px; }
.rev-theme p { font-size: .94rem; }


/* ---------- Blog sidebar ---------- */
.post-layout { display: grid; grid-template-columns: minmax(0,780px) 300px; gap: 56px; justify-content: center; align-items: start; }
.post-side { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 20px; }
.side-card { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 22px; text-align: center; }
.side-card img.jphoto { width: 118px; height: 118px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; }
.side-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.side-card p { font-size: .9rem; }
.side-card .more { display: inline-block; margin-top: 10px; font-weight: 700; color: var(--yellow); }
.side-cta { background: var(--ink-dark); border: 1px solid var(--line); border-radius: 10px; padding: 24px 22px; text-align: center; }
.side-cta h3 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.side-cta .btn { padding: 12px 30px; font-size: .92rem; }
.side-cta .text-line { display: block; margin-top: 12px; color: var(--yellow); font-size: .9rem; }
.side-cta .text-line a { color: var(--yellow); text-decoration: none; }
.side-links { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 20px 22px; }
.side-links h3 { font-size: .95rem; margin-bottom: 10px; }
.side-links ul { list-style: none; margin: 0; }
.side-links li { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: .92rem; font-weight: 600; }
.side-links li:last-child { border-bottom: 0; }
.side-quote { background: var(--panel); border: 1px solid var(--line); border-left: 4px solid var(--yellow); border-radius: 0 10px 10px 0; padding: 20px; font-style: italic; font-size: .92rem; color: #fff; }
.side-quote .stars { color: #FBBC04; font-style: normal; letter-spacing: 2px; margin-bottom: 6px; }
.side-quote cite { display: block; margin-top: 10px; font-style: normal; font-family: var(--font-nav); font-weight: 400; font-size: .78rem; color: var(--yellow); }
@media (max-width: 1080px) { .post-layout { grid-template-columns: 1fr; } .post-side { position: static; max-width: 520px; margin: 30px auto 0; width: 100%; } }

/* ---------- customer review quote on posts ---------- */
.post-review { margin: 0 auto; padding: 18px 22px; background: var(--panel);
  border: 1px solid var(--line); border-left: 4px solid var(--yellow); border-radius: 0 10px 10px 0; color: #fff; }
.post-review .pr-stars { color: #FBBC04; letter-spacing: 2px; font-size: .95rem; line-height: 1; }
.post-review p { font-size: .96rem; font-style: italic; margin: 8px 0 0; color: #fff; }
.post-review cite { display: block; margin-top: 10px; font-style: normal; font-weight: 400;
  font-size: .78rem; letter-spacing: .06em; color: var(--yellow); font-family: var(--font-nav); }
.post-review cite a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* yellow marker highlight for key claims */
.ymark { background: var(--yellow); color: #0D1B24; font-weight: 700; padding: 0 4px; box-shadow: none; }

/* ================= Phase 2: homepage structures ================= */

/* hero photo stack with review chip (framed polaroid cards) */
.hero-stack { position: relative; max-width: 470px; margin: 0 auto 84px; }
.hs-main-card { background: rgba(255,255,255,.12); border: 1px solid var(--line); border-radius: 18px;
  padding: 13px 13px 9px; transform: rotate(1.2deg); box-shadow: 0 18px 44px rgba(0,0,0,.45); margin: 0; }
.hs-main-card img { border-radius: 12px; width: 100%; }
.hs-main-card figcaption { display: flex; justify-content: flex-end; gap: 22px; align-items: baseline;
  font-family: var(--font-nav); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--soft); padding: 10px 6px 4px; text-align: right; }
.hs-main-card figcaption .y { color: var(--yellow); }
.hs-small-card { position: absolute; left: -11%; bottom: -22%; width: 46%; background: var(--strip);
  border-radius: 16px; padding: 10px 10px 6px; transform: rotate(-3.4deg);
  box-shadow: 0 14px 34px rgba(0,0,0,.5); margin: 0; z-index: 1; }
.hs-small-card img { border-radius: 10px; width: 100%; aspect-ratio: 1 / 1.08; object-fit: cover; object-position: center 20%; }
.hs-small-card figcaption { font-family: var(--font-nav); font-size: .64rem; color: var(--soft);
  padding: 8px 4px 4px; letter-spacing: .06em; line-height: 1.5; }
.hero-stack .hs-chip { position: absolute; top: -16px; right: -10px; z-index: 2; background: var(--yellow); color: #0D1B24;
  font-weight: 800; font-size: .82rem; padding: 8px 14px; border-radius: 999px; box-shadow: 0 8px 20px rgba(0,0,0,.4);
  transform: rotate(2deg); white-space: nowrap; }
.hero-stack .hs-chip .s { letter-spacing: 1px; margin-right: 6px; }
@media (max-width: 880px) { .hero-stack { margin-top: 34px; margin-bottom: 96px; } .hs-small-card { left: 0; } }

/* stats strip under hero */
.stats-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.stats-strip .wrap { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 18px; }
@media (max-width: 720px) { .stats-strip .wrap { grid-template-columns: 1fr 1fr; gap: 22px 18px; } }
.stats-strip .stat { border-left: 1px solid var(--line); padding-left: 24px; }
.stats-strip .stat:first-child { border-left: 0; padding-left: 0; }
.stat .st-label { font-family: var(--font-nav); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--soft); }
.stat .st-value { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: #fff; margin-top: 2px; }
.stat .st-value .yy { color: var(--yellow); }

/* mono eyebrow labels */
.eyebrow { font-family: var(--font-nav); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--yellow); font-weight: 400; margin-bottom: 10px; }
.eyebrow::before { content: "// "; }
h2.eyebrow { font-size: .78rem; }
.display { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; color: #fff; }
.display .dim { color: rgba(255,255,255,.45); }

/* numbered service cards (CSS counter — no text nodes added) */
.svc-cards { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: svc; margin-top: 34px; }
@media (max-width: 900px) { .svc-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .svc-cards { grid-template-columns: 1fr; } }
.svc-cards li { counter-increment: svc; background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 24px; position: relative; }
.svc-cards li:hover { border-color: var(--line-strong); }
.svc-cards li::before { content: "0" counter(svc); font-family: var(--font-nav); font-size: .78rem; color: var(--soft); letter-spacing: .1em; }
.svc-cards li::after { content: "\2726"; position: absolute; top: 22px; right: 22px; color: var(--yellow); font-size: .9rem; }
.svc-cards h3 { font-size: 1.08rem; margin: 10px 0 8px; }
.svc-cards p { font-size: .93rem; color: var(--soft); }
.svc-cards img { display: none; }

/* map panel card */
.map-panel { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 26px;
  display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 30px; align-items: center; margin-top: 22px; }
@media (max-width: 900px) { .map-panel { grid-template-columns: 1fr; } }
.map-panel .map-embed { height: 280px; }
.map-panel .caption { text-align: left; margin-top: 0; }
.map-panel .mp-title { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: #fff; margin-bottom: 8px; }

/* guarantee bar */
.guarantee-bar { border: 1px dashed var(--line-strong); border-radius: 10px; padding: 16px 22px; margin-top: 34px; }
.guarantee-bar strong { font-family: var(--font-nav); font-weight: 400; letter-spacing: .1em; text-transform: uppercase; font-size: .82rem; }

/* ---------- vertical video polaroid (seniors page) ---------- */
.yt-card { max-width: 300px; margin: 36px auto 0; background: rgba(255,255,255,.12);
  border: 1px solid var(--line); border-radius: 16px; padding: 10px 10px 6px; }
.yt-card .yt-short { display: block; width: 100%; aspect-ratio: 9 / 16; border: 0; border-radius: 10px; background: #0D1B24; }
.yt-card .yt-cap { font-family: var(--font-nav); font-size: .68rem; color: var(--soft);
  padding: 8px 4px 4px; line-height: 1.5; letter-spacing: .04em; }

/* hero CTA: TEXT centers on the pill itself; stacks centered on mobile */
.hero-cta { align-items: flex-start; }
.hero-cta > .text-line { margin-top: 14px; }
@media (max-width: 700px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta > .text-line { margin-top: 0; }
}

/* Google preferred-sources button sizing */
.ps-wrap { display: flex; justify-content: center; margin: 22px 0 26px; }
.ps-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #202124; color: #fff; text-decoration: none;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
  white-space: nowrap;
}
.ps-btn:hover { background: #2b2c30; }
.stats-strip .ps-btn { padding: 10px 20px; font-size: .9rem; }

@media (max-width: 720px) {
  .stats-strip .stat:first-child { grid-column: 1 / -1; }
  .stats-strip .ps-btn { padding: 8px 16px; font-size: .82rem; gap: 8px; }
  .stats-strip .ps-btn svg { width: 16px; height: 16px; }
}

/* ---- build-sheet intake: styled selects + chip checkboxes ---- */
form.contact select {
  width: 100%; padding: 11px 40px 11px 13px; font-family: var(--font-body); font-size: 1rem;
  border: 1px solid var(--line-strong); border-radius: 8px; background: rgba(13,27,36,.45); color: #fff;
  -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FFE057' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
form.contact select:focus { outline: 2px solid var(--yellow); }
form.contact select option { background: #1C3949; color: #fff; }
.bs-checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; margin-top: 4px; }
form.contact .bs-checks label {
  display: flex; align-items: center; gap: 10px; margin: 0; padding: 11px 13px; cursor: pointer;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600; letter-spacing: 0; text-transform: none; color: #fff;
  border: 1px solid var(--line-strong); border-radius: 8px; background: rgba(13,27,36,.45);
  transition: border-color .15s, background .15s;
}
form.contact .bs-checks label:hover { border-color: rgba(255,224,87,.6); }
form.contact .bs-checks label:has(input:checked) { border-color: var(--yellow); background: rgba(255,224,87,.12); }
.bs-checks input[type=checkbox] {
  width: 18px; height: 18px; margin: 0; padding: 0; flex: 0 0 18px; accent-color: var(--yellow); cursor: pointer;
}
form.contact .two select { margin-bottom: 0; }

/* post summary + Q&A (answer-engine friendly, plain HTML) */
.tldr { background: var(--panel); border-left: 4px solid var(--yellow); border-radius: 8px; padding: 16px 20px; margin: 18px 0 26px; }
.tldr-label { display: block; font-family: "Fira Mono", monospace; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 6px; }
.tldr p { margin: 0; font-size: 1.02rem; line-height: 1.55; }
.post-qa { margin-top: 34px; padding-top: 10px; border-top: 1px solid var(--line); }
.post-qa h2 { font-size: 1.35rem; margin-bottom: 14px; }
.post-qa .qa { margin-bottom: 16px; }
.post-qa .qa h3 { font-size: 1.05rem; margin-bottom: 4px; }
.post-qa .qa p { margin: 0; }

/* Turnstile (spam gate) */
.cf-turnstile { margin: 10px 0 4px; min-height: 0; }
#wcrc-ts { margin: 8px 0; }
#wcrc-ts:empty { display: none; }
