/* ============================================================
   Big Birge Plumbing mockup build (smock structure, Birge skin)
   Palette anchored to the real van wrap + logo:
   brick red #B3272D · retro mint #CDE3DA / #4E8D7C · cream #F7F0DF
   warm ink #221F1A · gold stars #F0A93B
   Type: Ultra (retro slab, matches the van's circus-slab lettering)
   + Yellowtail (script accent, matches the wrap's script lines)
   + Hanken Grotesk (body)
   Signature device: buffalo plaid (pure CSS) + lumberjack badge mark
   ============================================================ */

:root {
  --ink:          #221F1A;
  --ink-muted:    #5C564C;
  --paper:        #FFFCF5;
  --cream:        #F7F0DF;
  --mint:         #DDEBE4;
  --mint-deep:    #3F7A6B;
  --red:          #B3272D;
  --red-dark:     #8C1B20;
  --charcoal:     #26221C;
  --charcoal-deep:#1D1A15;
  --gold-star:    #F0A93B;
  --rule:         rgba(34, 31, 26, .14);
  --rule-light:   rgba(255, 252, 245, .16);

  --plaid:
    repeating-linear-gradient(0deg, rgba(20,8,8,.38) 0 7px, transparent 7px 14px),
    repeating-linear-gradient(90deg, rgba(20,8,8,.38) 0 7px, transparent 7px 14px),
    repeating-linear-gradient(0deg, #96191E 0 7px, #B3272D 7px 14px);

  --f-display: "Ultra", "Rockwell", "Georgia", serif;
  --f-script: "Yellowtail", cursive;
  --f-body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --fs-display-lg: clamp(34px, 4.6vw, 58px);
  --fs-display-md: clamp(27px, 3.2vw, 42px);
  --fs-display-sm: 21px;
  --fs-body-lg: 18px;
  --fs-body: 16.5px;
  --fs-body-sm: 14px;

  --container: 1240px;
  --gutter: 24px;          /* ONE gutter token: nothing else pads the page edge */
  --sec-pad: 96px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-card: 6px 6px 0 rgba(34, 31, 26, .10);
  --shadow-card-hover: 9px 9px 0 rgba(34, 31, 26, .12);
  --shadow-btn: 0 5px 0 rgba(34, 31, 26, .30);
  --shadow-btn-hover: 0 8px 0 rgba(34, 31, 26, .26);
}

@media (max-width: 768px) {
  :root { --sec-pad: 56px; --gutter: 20px; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; display: block; }
a { color: var(--red); }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
}
/* never flex .container itself; flex children of it instead */

section { padding-block: var(--sec-pad); }

/* ---------- type ---------- */
h1, h2, h3, .display { font-family: var(--f-display); font-weight: 400; line-height: 1.14; letter-spacing: .005em; }
.script { font-family: var(--f-script); font-weight: 400; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 12px; white-space: nowrap;
}
.eyebrow::before { content: ""; width: 26px; height: 8px; background: var(--plaid); background-size: 14px 14px; border-radius: 2px; flex: none; }
.script-lead { font-family: var(--f-script); font-size: clamp(24px, 2.6vw, 34px); color: var(--mint-deep); display: block; margin-bottom: 4px; }
.sec-head { max-width: 780px; margin-bottom: 44px; }
.sec-head h2 { font-size: var(--fs-display-md); color: var(--ink); margin-bottom: 12px; }
.sec-head p { color: var(--ink-muted); font-size: var(--fs-body-lg); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
@media (max-width: 640px) { .sec-head h2 br, .area h2 br { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-body); font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none; text-align: center;
  font-size: 15px; padding: 17px 30px; border-radius: 10px;
  border: 2px solid var(--ink); cursor: pointer; box-shadow: var(--shadow-btn);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-btn-hover); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #C33238; }
.btn-ink { background: var(--charcoal); color: #fff; }
.btn-ink:hover { background: #38332B; }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: #FFF7E3; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- utility bar ---------- */
.utility {
  background: var(--charcoal-deep); color: #fff;
  font-size: 13.5px; font-weight: 700; letter-spacing: .04em;
}
.utility .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; }
.utility span { white-space: nowrap; }
.utility .u-offer { color: var(--gold-star); }
.utility .u-short { display: none; }
@media (max-width: 640px) {
  .utility .container { justify-content: center; }
  .utility .u-offer, .utility .u-full { display: none; }
  .utility .u-short { display: block; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: #fff; box-shadow: 0 2px 18px rgba(34,31,26,.10);
}
.header-main .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px; }
.brand-lockup { display: flex; align-items: center; text-decoration: none; min-width: 0; }
.brand-lockup img { width: 230px; height: auto; }
.header-serving { text-align: center; font-size: 14px; color: var(--ink-muted); }
.header-serving strong { color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { text-align: right; text-decoration: none; }
.header-phone .ph-num { display: block; font-family: var(--f-display); font-size: 19px; color: var(--charcoal); }
.header-phone .ph-sub { font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: .06em; text-transform: uppercase; }
.header-cta .btn { padding: 13px 22px; font-size: 13.5px; }
.hamburger { display: none; }
.header-phone-icon { display: none; }

/* nav */
.site-nav { border-top: 1px solid var(--rule); }
.site-nav .container { display: flex; justify-content: center; }
.site-nav ul.nav-root { display: flex; gap: 6px; }
.site-nav .nav-root > li { position: relative; }
.site-nav .nav-root > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 13px 16px; font-size: 14.5px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
.site-nav .nav-root > li > a:hover { color: var(--red); }
.site-nav .caret { width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 270px;
  background: var(--paper); border: 2px solid var(--ink); border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 6px 8px 0 rgba(34,31,26,.14);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .18s ease; padding: 10px 0; z-index: 950;
}
.dropdown.dd-wide { min-width: 540px; display: grid; grid-template-columns: 1fr 1fr; }
.site-nav li:hover > .dropdown, .site-nav li:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 22px; font-size: 14.5px; font-weight: 600;
  color: var(--ink); text-decoration: none;
}
.dropdown a:hover { background: var(--cream); color: var(--red); }

@media (max-width: 1024px) {
  .site-nav, .header-serving, .header-cta .btn, .header-phone .ph-sub { display: none; }
  .header-phone .ph-num { font-size: 16px; white-space: nowrap; }
  .hamburger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 46px; padding: 10px; background: var(--charcoal);
    border: 0; border-radius: 10px; cursor: pointer; flex: none;
  }
  .hamburger span { display: block; height: 3px; width: 100%; background: #fff; border-radius: 2px; }
  .brand-lockup img { width: 190px; }
}
@media (max-width: 640px) {
  .header-phone { display: none; }
  .header-phone-icon {
    display: flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 10px; flex: none;
    background: var(--red); color: #fff;
  }
  .header-phone-icon svg { width: 21px; height: 21px; }
  .brand-lockup img { width: 158px; }
  .header-cta { gap: 10px; }
}

/* ---------- mobile drawer ---------- */
.drawer-scrim {
  position: fixed; inset: 0; background: rgba(29,26,21,.55);
  opacity: 0; visibility: hidden; transition: opacity .22s ease; z-index: 990;
}
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(420px, 100%);
  background: #fff; z-index: 995; display: flex; flex-direction: column;
  transform: translateX(102%); transition: transform .26s ease, visibility 0s linear .26s;
  visibility: hidden;
}
body.drawer-open .drawer { visibility: visible; transform: translateX(0); transition: transform .26s ease; }
body.drawer-open .drawer-scrim { opacity: 1; visibility: visible; }
body.drawer-open { overflow: hidden; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px var(--gutter); background: var(--charcoal-deep); position: relative;
}
.drawer-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 7px; background: var(--plaid); background-size: 14px 14px; z-index: 2; }
.d-brand { display: flex; align-items: center; gap: 12px; }
.d-brand img { width: 52px; height: 52px; object-fit: contain; background: #fff; border-radius: 50%; padding: 3px; }
.d-brand span:last-child { font-family: var(--f-display); color: #fff; font-size: 16px; }
.drawer-close {
  width: 42px; height: 42px; border: 0; border-radius: 10px; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; font-size: 22px; line-height: 1;
}
.drawer-body { flex: 1; overflow-y: auto; padding: 15px 0 16px; }
.drawer-body > ul > li { border-bottom: 1px solid var(--rule); }
.d-link, .d-acc-btn {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  padding: 15px var(--gutter); font-family: var(--f-body); font-size: 16px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink);
  text-decoration: none; background: none; border: 0; cursor: pointer; text-align: left;
}
.d-acc-btn .caret { width: 10px; height: 10px; border-right: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red); transform: rotate(45deg); transition: transform .2s ease; flex: none; }
.d-acc.open .d-acc-btn .caret { transform: rotate(225deg); }
.d-acc-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; background: var(--cream); }
.d-acc.open .d-acc-panel { max-height: 620px; }
.d-acc-panel a { display: block; padding: 11px calc(var(--gutter) + 14px); font-size: 15px; font-weight: 600; color: var(--ink); text-decoration: none; }
.drawer-foot { padding: 16px var(--gutter) 20px; background: var(--cream); border-top: 1px solid var(--rule); }
.drawer-foot .btn { width: 100%; margin-bottom: 12px; }
.d-call {
  display: block; text-align: center; text-decoration: none;
  font-family: var(--f-display); font-size: 22px; color: var(--charcoal); margin-bottom: 6px;
}
.d-hours { text-align: center; font-size: 13.5px; color: var(--ink-muted); }

/* ---------- hero (smock card-in-photo) ---------- */
.hero { position: relative; padding: 0; background: var(--charcoal-deep); }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 40%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(29,26,21,.42) 0%, rgba(29,26,21,.10) 46%, rgba(29,26,21,.02) 68%, rgba(29,26,21,.30) 100%);
}
.hero-wave {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: block; width: 100%; height: clamp(34px, 5vw, 74px); color: var(--red);
}
.hero-inner { position: relative; z-index: 4; padding: clamp(66px, 7vw, 96px) 0 clamp(66px, 7vw, 96px); }
.hero-card {
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius-lg);
  box-shadow: 10px 10px 0 rgba(29,26,21,.28);
  max-width: 620px; padding: 36px 38px 30px; position: relative;
}
.hero-ribbon {
  position: absolute; top: 26px; left: -14px;
  background: var(--plaid); color: #fff;
  padding: 9px 20px 9px 24px; font-size: 12.5px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; white-space: nowrap;
  border-radius: 0 6px 6px 0; text-shadow: 0 1px 3px rgba(0,0,0,.55);
  box-shadow: 0 4px 12px rgba(29,26,21,.25);
}
.hero-ribbon::before {
  content: ""; position: absolute; left: 0; bottom: -10px;
  border: 5px solid transparent; border-top-color: #5E0F13; border-right-color: #5E0F13;
}
.hero-h1 {
  font-family: var(--f-body); font-size: 13px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red);
  margin: 32px 0 4px;
}
.hero-script { font-size: clamp(26px, 2.8vw, 34px); color: var(--mint-deep); display: block; line-height: 1.15; }
.hero-h2 {
  font-family: var(--f-display); font-size: clamp(27px, 3.1vw, 44px);
  color: var(--ink); line-height: 1.1; margin: 4px 0 13px;
}
.hero-h2 .accent { color: var(--red); }
.hero-sub { color: var(--ink-muted); font-size: 17px; margin-bottom: 16px; }
.hero-points { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin-bottom: 20px; }
.hero-points li { display: flex; align-items: flex-start; gap: 9px; font-weight: 700; font-size: 15px; }
.hero-points .chk {
  width: 21px; height: 21px; border-radius: 50%; background: var(--red);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; flex: none; margin-top: 2px;
}
.hero-points .chk svg { width: 12px; height: 12px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-review {
  display: inline-flex; align-items: center; gap: 11px; text-decoration: none;
  background: var(--cream); border: 1.5px solid var(--rule); border-radius: var(--radius-pill);
  padding: 9px 20px 9px 12px; color: var(--ink); font-weight: 700; font-size: 14.5px;
}
.hero-review:hover { border-color: var(--red); }
.hero-review .g-badge {
  width: 30px; height: 30px; border-radius: 50%; background: #fff; color: #4285F4;
  font-weight: 900; font-size: 18px; display: inline-flex; align-items: center; justify-content: center;
  font-family: Arial, sans-serif; flex: none; border: 1px solid var(--rule);
}
.hero-review .stars { color: var(--gold-star); letter-spacing: 2px; font-size: 15px; }

@media (max-width: 768px) {
  .hero { background: var(--paper); }
  .hero-media { position: relative; height: clamp(300px, 62vw, 430px); }
  .hero-media img { object-position: 66% 42%; }
  .hero-wave { height: 26px; }
  .hero-inner { padding: 0 0 40px; }
  .hero-card {
    margin: -46px var(--gutter) 0; max-width: none;
    padding: 34px 24px 28px; box-shadow: 7px 7px 0 rgba(29,26,21,.16);
  }
  .hero-ribbon { font-size: 11px; letter-spacing: .08em; top: -16px; left: 12px; border-radius: 6px; }
  .hero-ribbon::before { display: none; }
  .rib-long { display: none; }
  .hero-h1 { margin-top: 8px; font-size: 11.5px; letter-spacing: .13em; }
  .hero-h2 { font-size: 25px; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .hero-review { width: 100%; justify-content: center; }
}

/* ---------- credential strip ---------- */
.cred-strip { background: var(--charcoal-deep); padding: 18px 0; position: relative; }
.cred-strip::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 7px; background: var(--plaid); background-size: 14px 14px; }
.cred-strip .container { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 7px; }
.cred-item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .03em; }
.cred-item svg { width: 20px; height: 20px; color: var(--gold-star); flex: none; }
@media (max-width: 900px) {
  .cred-strip .container { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
  .cred-item:last-child { grid-column: 1 / -1; justify-content: center; }
}

/* ---------- services ---------- */
.services { background: var(--cream); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: #fff; border: 2px solid var(--ink); border-radius: var(--radius-lg);
  padding: 30px 28px 26px; box-shadow: var(--shadow-card);
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: 12px; position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}
.svc-card:hover { transform: translate(-2px, -4px); box-shadow: var(--shadow-card-hover); }
.svc-icon {
  width: 58px; height: 58px; border-radius: 50%; background: var(--mint);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center; color: var(--charcoal);
}
.svc-icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: var(--fs-display-sm); color: var(--charcoal); }
.svc-card p { color: var(--ink-muted); font-size: 15.5px; flex: 1; }
.svc-more { font-weight: 800; font-size: 13.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--red); }
.svc-more::after { content: " →"; }
.svc-all { text-align: center; margin-top: 36px; }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .svc-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline-start: var(--gutter); gap: 16px; padding-bottom: 12px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
  .svc-card { flex: 0 0 82%; scroll-snap-align: start; }
}

/* ---------- why us split ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.why-photo { position: relative; }
.why-photo img { border: 2px solid var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); width: 100%; height: 540px; object-fit: cover; }
.why-photo .photo-tag {
  position: absolute; left: 18px; bottom: 18px; background: var(--charcoal-deep); color: #fff;
  border-radius: var(--radius-pill); padding: 9px 18px; font-size: 13px; font-weight: 700; letter-spacing: .04em;
}
.why-photo .photo-badge {
  position: absolute; top: -26px; right: -18px; width: 108px; height: auto;
  border: 0; border-radius: 0; box-shadow: none; object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(29,26,21,.30)); transform: rotate(6deg);
}
@media (max-width: 900px) { .why-photo .photo-badge { width: 86px; top: -20px; right: 2px; } }
.why-list { display: grid; gap: 16px; margin-top: 26px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-item .chk {
  width: 26px; height: 26px; border-radius: 50%; background: var(--mint-deep);
  color: #fff; display: flex; align-items: center; justify-content: center; flex: none; margin-top: 2px;
}
.why-item .chk svg { width: 14px; height: 14px; }
.why-item strong { display: block; font-size: 16.5px; }
.why-item span { color: var(--ink-muted); font-size: 15px; }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-photo img { height: 380px; }
}

/* ---------- stat band ---------- */
.stat-band { background: var(--charcoal-deep); padding-block: 56px; position: relative; }
.stat-band::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 7px; background: var(--plaid); background-size: 14px 14px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--f-display); font-size: clamp(36px, 4.4vw, 54px); color: var(--gold-star); line-height: 1; }
.stat-label { color: rgba(255,252,245,.85); font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-top: 8px; }
@media (max-width: 768px) {
  .stat-band { padding-block: 40px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
}

/* ---------- crew strip ---------- */
.crew { background: var(--paper); }
.crew-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline-start: var(--gutter); padding-bottom: 14px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
.crew-card {
  flex: 0 0 218px; scroll-snap-align: start; text-align: center;
  background: #fff; border: 2px solid var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 22px 16px 18px;
}
.crew-card .crew-photo {
  width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--mint); border: 2px solid var(--ink); overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.crew-card .crew-photo img { width: 88%; height: auto; object-fit: contain; }
.crew-card strong { display: block; font-family: var(--f-display); font-size: 16px; color: var(--charcoal); line-height: 1.2; }
.crew-card span { font-size: 13px; color: var(--ink-muted); font-weight: 600; }
.crew-card .crew-flag {
  display: inline-block; margin-top: 9px; font-size: 11.5px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: #fff;
  background: var(--red); border-radius: var(--radius-pill); padding: 4px 12px;
}
.crew-note { margin-top: 16px; color: var(--ink-muted); font-size: 14.5px; text-align: center; }
.crew-note strong { color: var(--ink); }

/* ---------- family band ---------- */
.family { background: var(--mint); position: relative; }
.family .eyebrow { color: var(--red); }
.family-photo img { border: 2px solid var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); width: 100%; height: 520px; object-fit: cover; object-position: center 30%; }

/* ---------- reviews ---------- */
.reviews { background: var(--cream); }
.rev-summary {
  display: inline-flex; align-items: center; gap: 14px; background: #fff; border: 2px solid var(--ink); border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card); padding: 12px 24px; margin-bottom: 38px; flex-wrap: wrap; justify-content: center;
}
.rev-summary .g-badge { width: 34px; height: 34px; border-radius: 50%; background: #4285F4; color: #fff; font-family: Arial; font-weight: 900; font-size: 20px; display: flex; align-items: center; justify-content: center; flex: none; }
.rev-summary strong { font-size: 18px; }
.rev-summary .stars { color: var(--gold-star); font-size: 18px; letter-spacing: 2px; }
.rev-summary a { font-size: 13.5px; font-weight: 700; }
.rev-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline-start: var(--gutter); padding-bottom: 14px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
.rev-card {
  flex: 0 0 380px; scroll-snap-align: start; background: #fff; border: 2px solid var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 30px 28px; display: flex; flex-direction: column; gap: 14px;
}
.rev-card .stars { color: var(--gold-star); font-size: 17px; letter-spacing: 3px; }
.rev-card blockquote { font-size: 15.5px; color: var(--ink); flex: 1; }
.rev-who { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff;
  font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; flex: none;
}
.rev-who strong { display: block; font-size: 15px; }
.rev-who span { font-size: 13px; color: var(--ink-muted); }
.rev-nav { display: flex; gap: 10px; margin-top: 20px; }
.rev-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--ink); background: #fff;
  color: var(--ink); font-size: 19px; cursor: pointer; transition: all .15s ease;
}
.rev-nav button:hover { background: var(--red); border-color: var(--red); color: #fff; }
@media (max-width: 640px) { .rev-card { flex-basis: 86%; } }

/* ---------- offer band ---------- */
.offer-band { background: var(--red); position: relative; overflow: hidden; }
.offer-band::before, .offer-band::after { content: ""; position: absolute; left: 0; right: 0; height: 8px; background: var(--plaid); background-size: 14px 14px; }
.offer-band::before { top: 0; }
.offer-band::after { bottom: 0; }
.offer-band .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.offer-band .offer-price { font-family: var(--f-display); font-size: clamp(56px, 7vw, 92px); color: #fff; line-height: 1; flex: none; text-shadow: 4px 4px 0 rgba(29,26,21,.30); }
.offer-band h2 { font-size: var(--fs-display-md); color: #fff; }
.offer-band .offer-script { font-family: var(--f-script); font-size: clamp(22px, 2.4vw, 30px); color: #FFD9A3; display: block; }
.offer-band p { color: rgba(255,252,245,.88); font-size: var(--fs-body-lg); font-weight: 600; max-width: 520px; }
.offer-band .btn { flex: none; }

/* ---------- booking ---------- */
.book { background: var(--paper); }
.book-form {
  background: #fff; border: 2px solid var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 34px 30px; display: grid; gap: 16px;
}
.book-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.book-form input, .book-form select, .book-form textarea {
  padding: 14px 16px; border: 1.5px solid var(--rule); border-radius: 10px; font: inherit; color: var(--ink); background: var(--paper); width: 100%;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.book-form .fine { font-size: 12.5px; color: var(--ink-muted); text-align: center; }
@media (max-width: 640px) { .book-form .row2 { grid-template-columns: 1fr; } }

/* ---------- service area ---------- */
.area { background: var(--cream); }
.city-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.city-pill {
  display: inline-block; padding: 9px 18px; border-radius: var(--radius-pill);
  background: #fff; border: 1.5px solid var(--rule); font-size: 14px; font-weight: 700;
  color: var(--ink); text-decoration: none; transition: all .15s ease;
}
.city-pill:hover, .city-pill.featured { background: var(--red); border-color: var(--red); color: #fff; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: 4px 4px 0 rgba(34,31,26,.08); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 19px 24px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--f-body); font-size: 16.5px; font-weight: 800; color: var(--ink);
}
.faq-q .fq-icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--red); color: #fff; font-size: 17px; line-height: 26px; text-align: center; transition: transform .2s ease; }
.faq-item.open .fq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .26s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--ink-muted); font-size: 15.5px; }

/* ---------- final CTA ---------- */
.final-cta { background: var(--charcoal-deep); position: relative; overflow: hidden; }
.final-cta .cta-badge {
  position: absolute; right: -40px; bottom: -60px; width: clamp(220px, 26vw, 380px);
  opacity: .14; transform: rotate(-9deg); pointer-events: none; z-index: 1;
}
.final-cta .container { position: relative; z-index: 2; text-align: center; }
.final-cta .script-lead { color: #8FC7B6; }
.final-cta h2 { font-size: var(--fs-display-md); color: #fff; margin-bottom: 12px; }
.final-cta p { color: rgba(255,252,245,.82); font-size: var(--fs-body-lg); max-width: 560px; margin: 0 auto 28px; }
.final-cta .hero-ctas { justify-content: center; margin-bottom: 0; }
.final-cta .btn { border-color: transparent; }

/* ---------- footer ---------- */
.site-footer { background: var(--charcoal-deep); color: rgba(255,252,245,.82); font-size: 15px; }
.foot-trust { position: relative; padding: 29px 0 22px; border-bottom: 1px solid var(--rule-light); }
.foot-trust::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 7px; background: var(--plaid); background-size: 14px 14px; }
.foot-trust .container { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 56px 0 40px; }
.foot-brand img { width: 190px; margin-bottom: 14px; background: #fff; border-radius: 10px; padding: 8px 12px; }
.foot-brand p { font-size: 14.5px; margin-bottom: 16px; }
.foot-social { display: flex; gap: 10px; margin-top: 4px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,252,245,.12);
  color: #fff; display: flex; align-items: center; justify-content: center; transition: background .15s ease;
}
.foot-social a:hover { background: var(--red); }
.foot-social svg { width: 18px; height: 18px; }
.foot-col h4 { font-family: var(--f-body); font-weight: 800; font-size: 13.5px; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.foot-col ul { display: grid; gap: 9px; }
.foot-col a { color: rgba(255,252,245,.82); text-decoration: none; font-size: 14.5px; }
.foot-col a:hover { color: var(--gold-star); }
.foot-call { display: block; font-family: var(--f-display); font-size: 21px; color: #fff; text-decoration: none; margin-bottom: 8px; }
.foot-area { border-top: 1px solid var(--rule-light); padding: 22px 0; font-size: 13.5px; }
.foot-area strong { color: #fff; }
.foot-exit { border-top: 1px solid var(--rule-light); padding: 26px 0; }
.foot-exit .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.foot-exit p { font-family: var(--f-display); font-size: 19px; color: #fff; }
.foot-legal { border-top: 1px solid var(--rule-light); padding: 18px 0; font-size: 13px; color: rgba(255,252,245,.55); }
.foot-legal .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.back-top {
  position: fixed; right: 18px; bottom: 86px; z-index: 800;
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--ink); cursor: pointer;
  background: var(--red); color: #fff; font-size: 19px; box-shadow: var(--shadow-btn);
  opacity: 0; visibility: hidden; transition: opacity .2s ease;
}
.back-top.show { opacity: 1; visibility: visible; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- sticky mobile bar ---------- */
.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  background: #fff; box-shadow: 0 -6px 24px rgba(29,26,21,.18);
}
.mobile-bar::before { content: ""; position: absolute; top: -4px; left: 0; right: 0; height: 4px; background: var(--plaid); background-size: 14px 14px; }
.mobile-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 4px 12px; text-decoration: none; font-size: 11.5px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
}
.mobile-bar svg { width: 21px; height: 21px; }
.mb-call { background: var(--red); color: #fff; }
.mb-text { background: #fff; color: var(--charcoal); }
.mb-book { background: var(--charcoal); color: #fff; }
@media (max-width: 768px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 68px; }
  .back-top { bottom: 82px; }
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
