/* ==========================================================================
   ACK Detailing — shared stylesheet
   Design tokens and copy per the approved v2 redesign reference.
   Fonts: Archivo (headings/buttons) + Source Sans 3 (body).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700&family=Source+Sans+3:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --navy-deep: #0F212F;
  --navy: #14293D;
  --navy-mid: #1B3A57;
  --navy-slate: #2B3C4C;
  --amber: #E8B04B;
  --amber-hover: #F0BE60;
  --bronze: #8A651F; /* was #A8792C — darkened to pass WCAG AA (4.6:1 on sand, 5.3:1 on white) */
  --sand-tan: #C9B48A;
  --warm-white: #FAF8F4;
  --sand: #F6F2EA;
  --sand-deep: #EDE5D8;
  --border-sand: #DED6C7;
  --border-sand-2: #E3DCCF;
  --body: #3E4A54;
  --body-2: #4A555F;
  --body-3: #5B666F;
  --muted: #6E777D;
  --muted-2: #68727A; /* was #8A9299 — darkened to pass WCAG AA (4.9:1 on white) */
  --on-dark: #DDE5EB;
  --on-dark-2: #A8BBC9;
  --on-dark-3: #8FA3B4;
  --tier-good: #6E8393;
  --tier-slate: #6E8393;

  --maxw: 1180px;
  --radius-btn: 4px;
  --radius-card: 6px;

  --font-head: 'Archivo', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

/* Keyboard users: hidden until focused, then a visible jump-to-content link */
.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 100;
  background: var(--navy); color: #fff; font-weight: 600;
  padding: 12px 18px; border-radius: 4px;
}
.skip-link:focus { left: 12px; color: #fff; }

/* Spam honeypot — off-screen, never shown to real users; bots that fill it
   get their submission dropped by Formspree via the _gotcha field. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }
a { color: var(--navy-mid); text-decoration: none; }
a:hover { color: var(--bronze); }
p { text-wrap: pretty; margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; }
.eyebrow {
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; margin: 0 0 12px;
}
.eyebrow.on-dark { color: var(--sand-tan); }
.eyebrow.bronze { color: var(--bronze); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 16px 28px; border-radius: var(--radius-btn);
  border: 1px solid transparent; cursor: pointer; transition: background .18s, color .18s, border-color .18s;
  text-align: center; line-height: 1;
}
.btn-amber { background: var(--amber); color: var(--navy); }
.btn-amber:hover { background: var(--amber-hover); color: var(--navy); }
.btn-navy { background: var(--navy-mid); color: #fff; font-size: 13px; letter-spacing: .1em; padding: 14px 24px; }
.btn-navy:hover { background: var(--navy); color: #fff; }
.btn-outline { background: transparent; color: var(--navy-mid); border: 1px solid var(--navy-mid); font-size: 13px; letter-spacing: .1em; padding: 14px 24px; font-weight: 600; }
.btn-outline:hover { background: var(--navy-mid); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 13px 22px; font-size: 13px; }

.link-arrow { font-weight: 600; font-size: 15px; color: var(--navy-mid); }
.link-arrow:hover { color: var(--bronze); }

/* ---------- Top bar + header ---------- */
.topbar {
  background: var(--navy); color: #CFD8E0; font-size: 13px;
  letter-spacing: .02em; padding: 9px 0; text-align: center;
}
.topbar a { color: #fff; font-weight: 600; }

.site-header {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 40px; background: var(--warm-white);
  border-bottom: 1px solid var(--border-sand-2);
  position: sticky; top: 0; z-index: 50;
}
.site-header .logo img { height: 68px; width: auto; display: block; }
.site-nav { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.site-nav a {
  font-size: 16px; font-weight: 600; color: #3A4550;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--navy-mid); }
.site-nav a.active { border-bottom-color: var(--amber); color: var(--navy); }

/* services dropdown */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop > a .caret { font-size: 10px; margin-left: 5px; color: var(--bronze); }
.drop-menu {
  position: absolute; top: calc(100% + 10px); left: -14px; display: none; flex-direction: column;
  background: #fff; border: 1px solid var(--border-sand); border-radius: 6px;
  box-shadow: 0 14px 34px rgba(20,41,61,.14); min-width: 250px; padding: 8px 0; z-index: 60;
}
.drop-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { display: flex; }
.drop-menu a { font-size: 15px; font-weight: 600; color: #3A4550; padding: 10px 18px; border-bottom: none; }
.drop-menu a:hover { background: var(--sand); color: var(--navy-mid); }
.header-cta { flex: none; }

/* mobile header pieces (hidden on desktop) */
.mobile-header, .menu-toggle, .mobile-menu { display: none; }
.icon-phone {
  width: 44px; height: 44px; flex: none; display: grid; place-items: center;
  border: 1px solid var(--navy-mid); border-radius: 4px; color: var(--navy-mid);
}

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: 64px 40px; }
.section-narrow { max-width: 900px; margin: 0 auto; }

/* ---------- Hero (interior pages) ---------- */
.hero {
  position: relative; background: var(--navy-slate);
  padding: 96px 40px; overflow: hidden;
}
.hero-media { position: absolute; inset: 0 0 0 50%; background: var(--navy-slate); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(11,24,36,.94) 0%, rgba(11,24,36,.9) 50%, rgba(11,24,36,.4) 66%, rgba(11,24,36,0) 82%);
}
.hero-copy { position: relative; max-width: 620px; }
.hero-copy h1 { font-weight: 700; font-size: 44px; line-height: 1.08; color: #fff; margin: 0 0 16px; }
.hero-copy p.lead { font-size: 19px; line-height: 1.55; color: var(--on-dark); margin: 0 0 26px; }
.hero-copy .eyebrow { margin-bottom: 14px; }
.hero-note { margin: 18px 0 0; font-size: 16px; color: #B6C6D2; }

/* Home hero — bigger */
.hero-home { min-height: 540px; display: flex; align-items: center; padding: 0 40px; }
.hero-home .hero-media { inset: 0 0 0 52%; }
.hero-home .hero-copy { padding: 60px 0; max-width: 620px; }
.hero-home h1 { font-size: 52px; line-height: 1.04; letter-spacing: -.015em; }
.hero-home p.lead { font-size: 20px; max-width: 560px; }
.hero-rating { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; margin: 0 0 28px; }
.stars { color: var(--amber); letter-spacing: 1.5px; }
.hero-rating .num { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: #fff; }
.hero-rating .sub { font-size: 16px; color: #CBD8E2; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.pill-human {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid #3D5B76; border-radius: 100px; padding: 9px 16px; color: #fff; font-size: 15px;
}
.pill-human:hover { border-color: var(--amber); color: #fff; }
.pill-human .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); flex: none; }

/* trust strip */
.trust-strip { background: var(--navy); padding: 20px 40px; }
.trust-strip .row { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: center; }
.trust-strip span.t { color: var(--on-dark-2); font-size: 15px; }

/* ---------- Section headers ---------- */
.sec-title { font-weight: 700; font-size: 32px; color: var(--navy); margin: 0 0 8px; }
.sec-sub { font-size: 17px; color: var(--body-3); margin: 0 0 36px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; align-items: start; }
.grid.grid-stretch { align-items: stretch; }
.grid-auto-345 { grid-template-columns: repeat(auto-fit, minmax(min(345px, 100%), 1fr)); }
.grid-auto-320 { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.grid-auto-300 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.grid-auto-290 { grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); }
.grid-auto-250 { grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); }

.card {
  background: #fff; border: 1px solid var(--border-sand);
  border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column;
}
/* Service cards: the whole card is the tap target, not just the small text
   link. Stretched-link pattern — the anchor's ::after covers the card, so
   there is still exactly one real link and keyboard/screen-reader behaviour
   is unchanged. Cards with no link (detailing.html) are simply unaffected. */
article.card { position: relative; }
article.card .link-arrow::after { content: ""; position: absolute; inset: 0; }
article.card:hover { box-shadow: 0 12px 28px rgba(20,41,61,.13); }

.card-media { position: relative; height: 200px; background: var(--sand-deep); }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-body { padding: 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.card-body h3 { font-weight: 700; font-size: 21px; color: var(--navy); }
.card-body p { font-size: 16px; line-height: 1.6; color: var(--body-2); }
.card-price { font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--bronze); margin: 0; }

/* ---------- Recent work cards ---------- */
.work-head { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: baseline; justify-content: space-between; margin-bottom: 30px; }
a.work-card { color: inherit; transition: box-shadow .18s, transform .18s; }
a.work-card:hover { color: inherit; box-shadow: 0 14px 34px rgba(20,41,61,.14); transform: translateY(-2px); }
a.work-card:hover .paid { color: var(--navy-mid); }
.work-card .card-media { height: 215px; }
.work-card .card-body { padding: 22px; gap: 12px; }
.work-card p.q { font-size: 16px; line-height: 1.6; color: var(--body); flex: 1; }
.work-meta { border-top: 1px solid var(--sand-deep); padding-top: 12px; display: flex; flex-wrap: wrap; gap: 4px 12px; align-items: baseline; }
.work-meta .name { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--navy); }
.work-meta .when { font-size: 14px; color: var(--muted-2); }
.work-meta .paid { margin-left: auto; font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--bronze); }

/* ---------- Full-bleed band ---------- */
.band { position: relative; background: var(--navy-deep); overflow: hidden; }
.band-media { position: absolute; inset: 0; background: var(--navy-slate); }
.band-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.band-scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(11,24,36,.9) 0%, rgba(11,24,36,.62) 55%, rgba(11,24,36,.9) 100%); }
.band-inner { position: relative; padding: 88px 40px; max-width: var(--maxw); margin: 0 auto; }
.band-inner h2 { font-weight: 700; font-size: 40px; line-height: 1.12; letter-spacing: -.015em; color: #fff; margin: 0 0 16px; max-width: 660px; }
.band-inner p.lead { font-size: 19px; line-height: 1.55; color: var(--on-dark); margin: 0 0 44px; max-width: 600px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; border-top: 1px solid rgba(255,255,255,.22); padding-top: 26px; }
.step { display: flex; flex-direction: column; gap: 8px; }
.step .n { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .16em; color: var(--amber); }
.step h3 { font-weight: 600; font-size: 19px; color: #fff; }
.step p { font-size: 16px; line-height: 1.55; color: #B6C6D2; }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; align-items: center; }
.split-img { min-height: 340px; border-radius: var(--radius-card); overflow: hidden; }
.split-img img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; display: block; }
.split-copy { display: flex; flex-direction: column; gap: 16px; }
.split-copy h2 { font-weight: 700; font-size: 32px; line-height: 1.15; color: var(--navy); }
.split-copy p { font-size: 17px; line-height: 1.65; color: var(--body); }

/* ---------- Pricing tiers ---------- */
.tier-legend { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 0 0 34px; }
.tier-legend span { display: flex; align-items: center; gap: 9px; font-size: 16px; color: var(--body-2); }
.tier-legend .swatch { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.tier-legend strong { font-weight: 600; color: var(--navy); }
.sw-good { background: var(--tier-good); }
.sw-better { background: var(--navy-mid); }
.sw-best { background: var(--bronze); }

.pkg { background: #fff; border: 1px solid var(--border-sand); border-radius: var(--radius-card); padding: 28px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.pkg.featured { border: 2px solid var(--navy-mid); box-shadow: 0 12px 30px rgba(20,41,61,.12); }
.pkg.t-good { border-top: 4px solid var(--tier-good); }
.pkg.t-better { border-top: 4px solid var(--navy-mid); }
.pkg.t-best { border-top: 4px solid var(--bronze); }
.pkg-photo { margin: -28px -28px 0; height: 170px; overflow: hidden; border-radius: var(--radius-card) var(--radius-card) 0 0; background: var(--sand-deep); }
.pkg-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pkg h3 { font-weight: 700; font-size: 23px; color: var(--navy); }
.pkg .sub { font-size: 15px; color: #68727A; margin: 0; }
.pkg .price-flat { font-family: var(--font-head); font-weight: 700; font-size: 32px; color: var(--navy-mid); margin: 0; }
.pkg .price-flat .starting { font-family: var(--font-body); font-size: 15px; font-weight: 400; color: #68727A; }
.pkg .quote-price { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--navy-mid); margin: 0; }
.pkg ul { display: flex; flex-direction: column; gap: 9px; font-size: 15px; line-height: 1.45; color: var(--body); border-top: 1px solid var(--sand-deep); padding-top: 16px; }
.pkg .btn { margin-top: auto; }

.tier-pill {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #fff; padding: 6px 13px; border-radius: 100px;
}
.tier-pill.good { background: var(--tier-good); }
.tier-pill.better { background: var(--navy-mid); }
.tier-pill.best { background: var(--bronze); }
.tier-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.tier-label.good { color: var(--muted-2); }
.tier-label.better { color: var(--bronze); }
.tier-label.best { color: var(--muted-2); }

.ribbon {
  position: absolute; top: -13px; left: 28px; background: var(--navy-mid); color: #fff;
  font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 3px;
}

/* Finished-work photo strip (marine). Portrait and landscape shots are mixed,
   so a fixed height + object-fit keeps the row even. */
.shot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 18px; }
.shot { margin: 0; }
.shot img { width: 100%; height: 260px; object-fit: cover; display: block; border-radius: var(--radius-card); background: var(--sand-deep); }
.shot figcaption { margin-top: 10px; font-size: 14px; line-height: 1.5; color: var(--body-3); }

/* Condition-grade explainer cards (marine "What moves the price") */
.grade { background: #fff; border: 1px solid var(--border-sand); border-radius: var(--radius-card); padding: 24px; }
.grade h3 { font-weight: 700; font-size: 20px; color: var(--navy); margin: 0 0 10px; }
.grade p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--body-2); }
/* Clarifying line that sits under a price grid */
.grid-note { margin: 22px 0 0; font-size: 15px; line-height: 1.6; color: var(--body-3); max-width: 76ch; }

.price-pair { display: flex; gap: 10px; }
.price-box { flex: 1; border-radius: 4px; padding: 12px; background: var(--sand); }
.price-box.good { background: #EDF1F4; }
.price-box.better { background: #E7EDF3; }
.price-box.best { background: #F7EFDE; }
.price-box .l { margin: 0 0 4px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }
.price-box .v { margin: 0; font-family: var(--font-head); font-weight: 700; font-size: 24px; color: var(--navy-mid); }
/* Three-across price chips (marine, where LOA needs a low/mid/high bracket) */
.price-pair.trio { gap: 8px; }
.price-pair.trio .price-box { padding: 11px 7px; }
.price-pair.trio .l { font-size: 11px; letter-spacing: .06em; }
/* Scales with the viewport so a 5-character price ($8,000) never overflows its
   chip on narrow Androids (360px) — fixed sizing broke there. */
.price-pair.trio .v { font-size: clamp(15px, 4.4vw, 20px); }

/* ---------- Add-on rows ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 14px; }
.addon {
  display: flex; flex-wrap: wrap; gap: 4px 16px; align-items: center;
  background: #fff; border: 1px solid var(--border-sand); border-radius: var(--radius-card); padding: 20px 22px;
}
.addon .ic { width: 38px; height: 38px; flex: none; border-radius: 50%; background: var(--sand); display: grid; place-items: center; }
.addon .txt { flex: 1; min-width: 180px; }
.addon h4 { font-weight: 600; font-size: 17px; color: var(--navy); margin: 0 0 5px; }
.addon p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--muted); }
.addon .amt { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--navy-mid); }

/* ---------- Callout box (sand) ---------- */
.callout { background: var(--sand-deep); border-radius: var(--radius-card); padding: 34px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; align-items: center; }
.callout h2 { font-weight: 700; font-size: 26px; color: var(--navy); margin: 0 0 12px; }
.callout p { font-size: 17px; line-height: 1.6; color: var(--body-2); }
.callout .callout-img { min-height: 200px; position: relative; border-radius: var(--radius-card); overflow: hidden; }
.callout .callout-img img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; display: block; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--border-sand-2); }
.faq details { border-bottom: 1px solid var(--border-sand-2); }
/* padding lives on summary, not details — otherwise the row looks tappable
   but only the 24px of text actually toggles it */
.faq summary { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 20px 0; }
.faq details[open] > *:not(summary):last-child { padding-bottom: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--bronze); font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { margin: 14px 0 0; font-size: 17px; line-height: 1.65; color: var(--body-2); }

/* ---------- Fleet / list rows ---------- */
.fleet { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; align-items: start; }
.fleet-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px 26px; }
.fleet-item { display: flex; flex-direction: column; gap: 5px; border-top: 1px solid var(--border-sand); padding-top: 12px; }
.fleet-item .h { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--navy); }
.fleet-item .d { font-size: 15px; line-height: 1.5; color: var(--muted); }

.where-list { display: flex; flex-direction: column; border-top: 1px solid var(--border-sand); }
.where-row { display: flex; flex-wrap: wrap; gap: 4px 16px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--sand-deep); }
.where-row:last-child { border-bottom: none; }
.where-row .k { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--navy); min-width: 130px; }
.where-row .v { flex: 1; font-size: 16px; line-height: 1.5; color: var(--body-2); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); padding: 64px 40px; text-align: center; }
.cta-band h2 { font-weight: 700; font-size: 32px; color: #fff; margin: 0 0 12px; }
.cta-band p { font-size: 18px; color: var(--on-dark-2); margin: 0 0 28px; }

/* ---------- Reviews page ---------- */
.reviews-hero { background: var(--navy); padding: 56px 40px; }
.reviews-hero .inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; align-items: center; }
.reviews-hero h1 { font-weight: 700; font-size: 40px; line-height: 1.1; color: #fff; }
.rating-card { background: #fff; border-radius: var(--radius-card); padding: 28px; text-align: center; }
.rating-card .big { font-family: var(--font-head); font-weight: 700; font-size: 58px; line-height: 1; color: var(--navy); margin: 0; }
.rating-card .stars { font-size: 22px; letter-spacing: 2px; margin: 8px 0; display: block; }
.rating-card .count { margin: 0 0 18px; font-size: 16px; color: var(--muted); }
.review-card { background: #fff; border: 1px solid var(--border-sand); border-radius: var(--radius-card); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
a.review-card { color: inherit; transition: box-shadow .18s, transform .18s; }
a.review-card:hover { color: inherit; box-shadow: 0 12px 28px rgba(20,41,61,.13); transform: translateY(-2px); }
a.review-card:hover .when { color: var(--navy-mid); }
.review-card p.q { font-size: 16px; line-height: 1.6; color: var(--body); margin: 0; }
.review-card .meta { margin-top: auto; border-top: 1px solid var(--sand-deep); padding-top: 12px; }
.review-card .meta .name { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--navy); }
.review-card .meta .when { margin: 2px 0 0; font-size: 14px; color: var(--muted-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); padding: 52px 40px 30px; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.site-footer .flogo img { height: 54px; width: auto; display: block; filter: brightness(0) invert(1); margin-bottom: 14px; }
.site-footer p.desc { font-size: 15px; line-height: 1.6; color: var(--on-dark-3); }
.site-footer h4 { font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--sand-tan); margin: 0 0 14px; }
.site-footer ul { display: flex; flex-direction: column; gap: 9px; font-size: 15px; color: var(--on-dark-3); }
.site-footer ul a { color: #C6D3DC; }
.site-footer ul a:hover { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border: 1px solid #33495A; border-radius: 50%; display: grid; place-items: center; color: #C6D3DC; }
.socials a:hover { border-color: var(--sand-tan); color: #fff; }
.footer-legal { max-width: var(--maxw); margin: 32px auto 0; border-top: 1px solid #23384A; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: 14px; color: #7E8D9A; }
.footer-legal a { color: #7E8D9A; }
.footer-legal a:hover { color: #C6D3DC; }
.footer-legal .links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Policy / long-form pages ---------- */
.policy { max-width: 820px; margin: 0 auto; padding: 56px 40px 72px; }
.policy h1 { font-size: 40px; color: var(--navy); margin: 0 0 8px; }
.policy .updated { color: var(--muted); font-size: 15px; margin: 0 0 32px; }
.policy h2 { font-size: 24px; color: var(--navy); margin: 36px 0 10px; }
.policy h3 { font-size: 19px; color: var(--navy); margin: 26px 0 8px; }
.policy p, .policy li { font-size: 17px; line-height: 1.7; color: var(--body-2); }
.policy p { margin: 0 0 14px; }
.policy ul.bullets { list-style: disc; padding-left: 22px; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.policy .contact-block { background: var(--sand); border: 1px solid var(--border-sand); border-radius: var(--radius-card); padding: 20px 24px; margin: 16px 0; font-size: 16px; line-height: 1.7; }

/* ---------- Book page ---------- */
.book-hero { background: var(--navy); padding: 52px 40px; }
.book-hero .inner { max-width: var(--maxw); margin: 0 auto; }
.book-hero h1 { font-weight: 700; font-size: 40px; line-height: 1.1; color: #fff; margin: 0 0 12px; }
.book-hero p { font-size: 18px; color: var(--on-dark-2); margin: 0; max-width: 640px; }

.book-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; align-items: start; }
.book-panel { background: #fff; border: 1px solid var(--border-sand); border-radius: var(--radius-card); padding: 30px; display: flex; flex-direction: column; gap: 30px; }
.step-label { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze); margin: 0 0 14px; }

/* quiz */
.quiz-box { background: var(--sand); border: 1px solid var(--border-sand-2); border-radius: var(--radius-card); padding: 24px; }
.quiz-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.quiz-dots { display: flex; gap: 6px; margin-left: auto; }
.quiz-dots span { width: 22px; height: 4px; border-radius: 2px; background: var(--border-sand); }
.quiz-dots span.done { background: var(--navy-mid); }
.quiz-dots span.current { background: var(--amber); }
.quiz-q { margin: 0 0 16px; font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--navy); }
.quiz-q.tight { margin-bottom: 6px; }
.quiz-hint { margin: 0 0 14px; font-size: 15px; color: var(--body-3); }
.choice-row { display: flex; gap: 10px; flex-wrap: wrap; }
.choice {
  cursor: pointer; flex: 1; min-width: 118px; display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--navy);
  background: #fff; border: 1px solid var(--border-sand); border-radius: var(--radius-card); padding: 18px 12px;
  transition: border-color .15s, background .15s;
}
.choice:hover { border-color: var(--navy-mid); background: #FBF8F2; }
.choice span { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.choice small { font-weight: 400; font-size: 13px; color: #68727A; line-height: 1.3; }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--navy);
  padding: 10px 15px; border-radius: 100px; border: 1px solid var(--border-sand); background: #fff;
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; flex: none; background: transparent; }
.chip.on { background: var(--sand); border-color: var(--navy-mid); }
.chip.on .dot { background: var(--navy-mid); }
.quiz-next { margin-top: 18px; }
.quiz-back { margin-top: 16px; cursor: pointer; background: transparent; border: none; padding: 0; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: #68727A; }
.rec-head { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.rec-check { width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--amber); display: grid; place-items: center; }
.rec-name { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--navy); }
.rec-price { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--navy-mid); margin-left: 8px; }
.rec-why { margin: 0 0 12px; font-size: 16px; line-height: 1.55; color: var(--body-2); }
/* Lighter / recommended / further cards on the quiz result. The middle card
   is the recommendation and stays visually dominant; the sides exist so the
   price reads as a range instead of a single take-it-or-leave-it number. */
.rec-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr)); gap: 12px; margin: 0 0 18px; align-items: stretch; }
.tier-card { display: flex; flex-direction: column; gap: 6px; background: #fff; border: 1px solid var(--border-sand); border-radius: var(--radius-card); padding: 16px 14px; }
.tier-card.is-rec { border: 2px solid var(--navy-mid); box-shadow: 0 8px 22px rgba(20,41,61,.10); }
.tier-card .tc-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.tier-card.is-rec .tc-label { color: var(--bronze); }
.tier-card .tc-name { font-family: var(--font-head); font-weight: 700; font-size: 17px; line-height: 1.25; color: var(--navy); margin: 0; }
.tier-card .tc-price { margin: 0; font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--navy-mid); }
.tier-card .tc-note { margin: 0 0 4px; font-size: 14px; line-height: 1.45; color: var(--body-3); }
.tier-card .btn { margin-top: auto; padding: 12px 14px; font-size: 12px; }

/* coverage gap — the recommended package cannot reach part of what they asked for */
.rec-gap { margin: 0 0 14px; font-size: 15px; line-height: 1.55; color: var(--navy); background: var(--sand); border-left: 3px solid var(--bronze); border-radius: 0 4px 4px 0; padding: 12px 14px; }

.rec-addon { margin: 0 0 18px; font-size: 15px; line-height: 1.55; color: var(--body-3); border-top: 1px solid var(--border-sand); padding-top: 12px; }
/* Add-ons have to be picked by hand in the Urable shop, so each row names the
   product exactly as it appears there, with its category. */
.rec-addon-lead { margin: 0 0 10px; font-size: 15px; line-height: 1.55; color: var(--body-3); }
.rec-addon-covered { margin: 10px 0 0; font-size: 14px; line-height: 1.5; color: var(--muted-2); }
.addon-pick { display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0; list-style: none; }
.addon-pick li { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 10px; background: var(--sand); border: 1px solid var(--border-sand); border-radius: 4px; padding: 10px 12px; }
.addon-pick .ic { font-size: 17px; line-height: 1; flex: none; }
.addon-pick .nm { font-weight: 600; color: var(--navy); }
.addon-pick .pr { color: var(--body-3); }
.addon-pick .cat { margin-left: auto; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--bronze); white-space: nowrap; }
.rec-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.rec-actions .btn-outline { padding: 14px 20px; }

.two-doors { background: var(--sand); border: 1px solid var(--border-sand-2); border-radius: 6px; padding: 20px 22px; }
.two-doors .td-q { margin: 0 0 12px; font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy); }
.two-doors .td-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 16px 26px; }
.two-doors .td-opt { font-size: 15px; line-height: 1.5; color: var(--body-2); }
.two-doors .td-opt strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--navy); margin-bottom: 3px; }
.two-doors a { color: var(--navy-mid); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.btn-ghost { cursor: pointer; background: transparent; border: 1px solid #C4B79F; color: var(--navy-mid); font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; padding: 14px 20px; border-radius: 4px; }
.btn-ghost:hover { background: var(--sand-deep); }

/* booking selectors */
.opt-row { display: flex; gap: 10px; flex-wrap: wrap; }
.opt {
  flex: 1; min-width: 130px; text-align: left; padding: 16px; border-radius: 5px; cursor: pointer;
  font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--navy);
  border: 1px solid var(--border-sand); background: #fff; transition: border-color .15s, background .15s;
}
.opt small { display: block; font-weight: 400; font-size: 14px; color: #68727A; margin-top: 2px; }
.opt:hover { border-color: var(--navy-mid); }
.opt.sel { background: var(--sand); border-color: var(--navy-mid); }
.svc-group { margin-bottom: 22px; }
.svc-group > p { margin: 0 0 9px; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-opt {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  padding: 15px 16px; border-radius: 5px; cursor: pointer;
  font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--navy);
  text-align: left; border: 1px solid var(--border-sand); background: #fff; width: 100%; transition: border-color .15s, background .15s;
}
.svc-opt:hover { border-color: var(--navy-mid); }
.svc-opt.sel { background: var(--sand); border-color: var(--navy-mid); }
.svc-opt small { display: block; font-weight: 400; font-size: 14px; color: #68727A; }
.svc-opt .p { font-family: var(--font-head); font-weight: 600; color: var(--navy-mid); white-space: nowrap; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; }
.slot { padding: 14px 10px; border-radius: 5px; cursor: pointer; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--navy); border: 1px solid var(--border-sand); background: #fff; text-align: center; }
.slot small { display: block; font-weight: 400; color: #68727A; }
.slot:hover { border-color: var(--navy-mid); }
.slot.sel { background: var(--sand); border-color: var(--navy-mid); }
.book-summary { border-top: 1px solid var(--sand-deep); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.book-summary .lbl { margin: 0; font-size: 14px; color: var(--muted-2); }
.book-summary .val { margin: 4px 0 0; font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--navy); }

.urable-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.urable-note { margin: 0 0 14px; font-size: 15px; line-height: 1.5; color: var(--body-3); }
#urable-frame {
  display: block; width: 100%; height: 780px; border: 1px solid var(--border-sand);
  border-radius: var(--radius-card); background: #fff;
}
/* Homepage reviews: on phones the three cards stacked to ~2.3 screens of
   scrolling. Turned into a swipeable rail so they sit side by side, with the
   next card peeking to signal there is more. Desktop keeps the grid. */
@media (max-width: 760px) {
  .work-rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -22px;
    margin-right: -22px;
    padding: 4px 22px 8px;
    scroll-padding-left: 22px;
  }
  .work-rail::-webkit-scrollbar { display: none; }
  .work-rail > .work-card { flex: 0 0 84%; scroll-snap-align: start; }
  /* same treatment for the six service cards */
  .svc-rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -22px;
    margin-right: -22px;
    padding: 4px 22px 8px;
    scroll-padding-left: 22px;
  }
  .svc-rail::-webkit-scrollbar { display: none; }
  .svc-rail > .card { flex: 0 0 82%; scroll-snap-align: start; }
  /* the link becomes a full-width button on phones */
  article.card .link-arrow {
    display: flex; align-items: center; justify-content: center; text-align: center;
    min-height: 46px; margin-top: 4px; padding: 0 10px;
    border: 1px solid var(--navy-mid); border-radius: var(--radius-btn);
    font-family: var(--font-head); font-size: 12px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
  }
  article.card .link-arrow:active { background: var(--navy-mid); color: #fff; }
  .svc-rail:focus-visible { outline: 2px solid var(--navy-mid); outline-offset: 4px; }
  .work-rail:focus-visible { outline: 2px solid var(--navy-mid); outline-offset: 4px; }
}

@media (max-width: 760px) {
  /* Urable's shop renders its own layout inside the frame, and at ~286px it
     came out cramped. Break out of the .book-panel gutter so the widget gets
     the full card width instead of the padded content box. The 22px matches
     .book-panel's mobile padding set further down in this file. */
  #urable-frame {
    height: 720px;
    width: calc(100% + 44px);
    margin-left: -22px; margin-right: -22px;
    border-left: 0; border-right: 0; border-radius: 0;
  }
  .book-panel { padding: 18px 14px; }
  .quiz-box { padding: 18px 14px; }
}

.book-side { display: flex; flex-direction: column; gap: 24px; }
.human-box { background: var(--sand-deep); border-radius: var(--radius-card); padding: 28px; transition: box-shadow .25s ease; }
.human-box h2 { font-weight: 700; font-size: 22px; color: var(--navy); margin: 0 0 18px; }
.human-box .k { margin: 0 0 6px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.human-box .big-link { margin: 0 0 16px; font-size: 20px; font-weight: 600; }
.human-box .hours { margin: 0 0 22px; font-size: 16px; color: var(--body-2); }
.human-box .divider { border-top: 1px solid #DCCFBA; padding-top: 20px; }
.form-stack { display: flex; flex-direction: column; gap: 10px; }
.field { font-family: var(--font-body); font-size: 16px; color: var(--navy); background: #fff; border: 1px solid #D3C6B1; border-radius: 4px; padding: 13px 14px; width: 100%; }
.field:focus { outline: 2px solid var(--navy-mid); outline-offset: -1px; border-color: var(--navy-mid); }
textarea.field { line-height: 1.5; resize: vertical; }
.form-title { margin: 0 0 4px; font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--navy); }
.form-note { margin: 0 0 14px; font-size: 15px; line-height: 1.5; color: var(--body-3); }
.confirm { display: flex; gap: 12px; align-items: flex-start; }
.confirm .dot { width: 9px; height: 9px; margin-top: 7px; border-radius: 50%; background: #2E7D6E; flex: none; }
.confirm p.t { margin: 0 0 4px; font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--navy); }
.confirm p.d { margin: 0; font-size: 15px; line-height: 1.5; color: var(--body-3); }
.map-box { aspect-ratio: 1040 / 590; border-radius: var(--radius-card); overflow: hidden; }
.map-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; }
.quote-box { background: #fff; border: 1px solid var(--border-sand); border-radius: var(--radius-card); padding: 24px; }
.quote-box h3 { font-weight: 700; font-size: 18px; color: var(--navy); margin: 0 0 10px; }
.quote-box > p.intro { margin: 0 0 16px; font-size: 16px; line-height: 1.6; color: var(--body-2); }
.file-label { display: flex; align-items: center; gap: 12px; cursor: pointer; border: 1px dashed #C9BCA6; border-radius: 4px; padding: 15px 14px; background: #FBF8F2; }
.file-label:hover { border-color: var(--bronze); }
.file-label span { font-size: 15px; color: var(--body-3); }
/* text-your-photos lane — the site never uploads files, photos arrive by MMS */
.photo-lane { margin-top: 16px; }
.photo-lane-note { margin: 0 0 8px; font-size: 14px; color: var(--body-3); }
.text-photos { display: flex; align-items: center; gap: 12px; min-height: 44px; border: 1px dashed #C9BCA6; border-radius: 4px; padding: 15px 14px; background: #FBF8F2; text-decoration: none; }
.text-photos:hover { border-color: var(--bronze); }
.text-photos svg { flex: none; }
.text-photos span { font-size: 15px; color: var(--body-3); }
.text-photos strong { color: var(--navy); font-weight: 600; white-space: nowrap; }
.mockup-note { margin: 0; font-family: ui-monospace, monospace; font-size: 12px; color: var(--muted-2); }
.hidden { display: none !important; }

/* fluid film block */
.fluidfilm { background: #fff; border: 1px solid var(--border-sand); border-radius: var(--radius-card); padding: 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; align-items: center; }
.ff-logo { display: block; width: 150px; margin: 0 0 20px; transition: transform .18s ease; }
.ff-logo img { width: 100%; height: auto; display: block; }
a.ff-logo:hover { transform: scale(1.04); }
.ff-badge { display: inline-flex; align-self: flex-start; align-items: center; gap: 12px; background: var(--sand); border: 1px solid var(--border-sand-2); border-radius: 999px; padding: 7px 16px 7px 8px; margin: 0; }
.ff-badge img { width: 40px; height: 40px; display: block; flex: none; }
.ff-badge span { font-family: var(--font-head); font-size: 13px; font-weight: 600; line-height: 1.3; color: var(--navy); }
a.ff-badge { text-decoration: none; transition: border-color .18s ease, background .18s ease; }
a.ff-badge:hover { background: var(--sand-deep); border-color: var(--bronze); }
.ff-price { margin: 0; font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--navy-mid); }
.ff-price .per { font-family: var(--font-body); font-size: 16px; font-weight: 400; color: #68727A; }

/* rate tables (2027 program) */
.rate-wrap { overflow-x: auto; }
.rate-table { width: 100%; border-collapse: collapse; font-size: 15px; background: #fff; border-radius: 6px; overflow: hidden; }
.rate-table th { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--bronze); background: var(--sand); text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border-sand); }
.rate-table td { padding: 12px 14px; border-bottom: 1px solid var(--sand-deep); color: var(--body); }
.rate-table tr:last-child td { border-bottom: none; }
.rate-table td.p { font-family: var(--font-head); font-weight: 600; color: var(--navy-mid); white-space: nowrap; }
.rate-note { margin: 10px 0 0; font-size: 14px; line-height: 1.5; color: var(--muted); }

.shake { animation: ackShake .62s ease 2; }
@keyframes ackShake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(3px); }
}

/* ==========================================================================
   Responsive — mobile breakpoint ~700px
   ========================================================================== */
@media (max-width: 860px) {
  .section-pad, .hero { padding: 40px 22px; }
  .band-inner { padding: 60px 22px; }
  .cta-band, .trust-strip, .book-hero, .reviews-hero, .book-panel { padding-left: 22px; padding-right: 22px; }
  .hero-copy h1, .hero-home h1 { font-size: 34px; line-height: 1.1; letter-spacing: -.01em; }
  .band-inner h2 { font-size: 30px; }
  .sec-title, .split-copy h2, .book-hero h1, .reviews-hero h1 { font-size: 27px; }
}

@media (max-width: 760px) {
  /* switch header to mobile bar */
  .topbar { display: none; }
  .site-header { display: none; }
  .mobile-header {
    display: flex; align-items: center; gap: 9px; padding: 9px 14px;
    background: var(--warm-white); border-bottom: 1px solid var(--border-sand-2);
    position: sticky; top: 0; z-index: 50;
  }
  .mobile-header .logo img { height: 52px; width: auto; display: block; }
  .mobile-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
  .m-book { flex: none; background: var(--amber); color: var(--navy); font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; padding: 15px 14px; border-radius: 4px; }
  .menu-toggle { display: flex; width: 44px; height: 44px; flex: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: transparent; border: none; cursor: pointer; }
  .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: transform .2s, opacity .2s; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: none; flex-direction: column; background: var(--navy); padding: 8px 18px 18px; position: sticky; top: 62px; z-index: 49; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: var(--sand-deep); font-size: 16px; font-weight: 600; padding: 12px 0; border-bottom: 1px solid #23405A; }
  .mobile-menu a:last-child { border-bottom: none; }

  /* heroes stack: image above copy, CTAs stay in the hero where the eye lands */
  .hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 10px; margin-top: 22px; }
  .hero-actions .btn, .hero-copy > .btn { display: block; width: 100%; text-align: center; padding-top: 17px; padding-bottom: 17px; }
  .pill-human { justify-content: center; width: 100%; padding-top: 14px; padding-bottom: 14px; }
  .hero, .hero-home { display: block; padding: 0; }
  .hero-media, .hero-home .hero-media { position: relative; inset: auto; height: 260px; }
  .hero-scrim { display: none; }
  .hero-copy, .hero-home .hero-copy { max-width: none; padding: 34px 22px; background: var(--navy-slate); }
  .hero-home { min-height: 0; }

  .work-card .card-media { height: 200px; }
  .footer-legal { justify-content: flex-start; }

  /* tap targets: text CTAs render ~22px tall, below the 44px thumb minimum */
  .link-arrow { display: inline-flex; align-items: center; min-height: 44px; }
  .mobile-menu a { padding: 15px 0; }
  .rec-actions .btn, .rec-actions .btn-ghost { min-height: 44px; }
  .two-doors .td-opt a { display: inline-block; padding: 11px 0; }
  .form-stack button, .btn-block { min-height: 46px; }
  .choice small { font-size: 14px; }
  .work-meta .paid { min-height: 44px; display: inline-flex; align-items: center; }

  /* leaves room for the fixed action bar defined below */
  body { padding-bottom: 74px; }
  .site-footer ul a, .footer-legal a, .site-footer .desc a { display: inline-block; padding: 12px 0; }
  .hero-rating a { min-height: 44px; }
  .socials a { width: 44px; height: 44px; }
  .btn { min-height: 46px; }
}

/* ==========================================================================
   Mobile action bar — Call / Book, pinned in the one-thumb reach zone
   ========================================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  border-top: 1px solid #23405A;
  box-shadow: 0 -6px 22px rgba(20, 41, 61, .22);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 58px; padding: 8px 10px;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.mobile-cta-bar .cta-call { color: #fff; }
.mobile-cta-bar .cta-call svg { stroke: var(--amber); }
.mobile-cta-bar .cta-book { background: var(--amber); color: var(--navy); }
.mobile-cta-bar a:active { filter: brightness(.93); }
@media (max-width: 760px) { .mobile-cta-bar { display: grid; } }

/* ==========================================================================
   Service chips — phone-only shortcut past the long home page
   ========================================================================== */
.svc-chips { display: none; }
@media (max-width: 760px) {
  .svc-chips {
    display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    background: var(--sand); border-bottom: 1px solid var(--border-sand-2);
    padding: 14px 22px;
  }
  .svc-chips::-webkit-scrollbar { display: none; }
  .svc-chips a {
    flex: none; scroll-snap-align: start;
    display: inline-flex; align-items: center; min-height: 44px;
    padding: 0 16px; border: 1px solid var(--border-sand-2); border-radius: 999px;
    background: #fff; color: var(--navy);
    font-family: var(--font-head); font-size: 14px; font-weight: 600; white-space: nowrap;
  }
  .svc-chips a:active { background: var(--sand-deep); }
}

/* ==========================================================================
   Rate cards — the subscription table as forwardable cards on phones
   ========================================================================== */
.rate-cards { display: none; }
@media (max-width: 760px) {
  .rate-wrap { display: none; }
  .rate-cards { display: flex; flex-direction: column; gap: 12px; }
  .rate-card { background: #fff; border: 1px solid var(--border-sand); border-radius: 6px; padding: 16px 18px 12px; }
  .rc-veh { margin: 0 0 10px; font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy); }
  .rc-rows { display: flex; flex-direction: column; gap: 7px; border-top: 1px solid var(--sand-deep); padding-top: 10px; }
  .rc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
  .rc-k { font-size: 15px; color: var(--body-2); }
  .rc-v { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy-mid); }
  .rc-v em { font-style: normal; font-family: var(--font-body); font-size: 13px; font-weight: 400; color: var(--muted); }
  .rc-foot { margin: 12px 0 0; padding-top: 9px; border-top: 1px solid var(--sand-deep); font-size: 11px; letter-spacing: .02em; color: var(--muted-2); }
}

@media (max-width: 420px) {
  .choice, .opt { min-width: 100%; }
}
