/* ═══════════════════════════════════════════════════════════════════
   Helpful Home Solutions LLC — "Blueprint & Oak" design system
   Deep indigo navy + royal blue (brand mark) + warm oak (their floors)
   Bricolage Grotesque display · Inter body · Fraunces italic accents
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --ink: #141b2e;
  --navy: #1b2b5c;
  --navy-deep: #131f45;
  --royal: #2050e0;
  --royal-bright: #2e63ff;
  --peri: #91a7e4;
  --peri-soft: #b9c8ef;
  --sky: #eaf0fb;
  --sky-deep: #dbe5f7;
  --oak: #a9743f;
  --oak-deep: #7c5327;
  --oak-pale: #f3e9dc;
  --paper: #faf8f3;
  --card: #ffffff;
  --dim: #56607a;
  --line: rgba(20, 27, 46, 0.12);
  --line-soft: rgba(20, 27, 46, 0.07);
  --shadow-sm: 0 1px 2px rgba(20, 27, 46, 0.06), 0 2px 8px rgba(20, 27, 46, 0.05);
  --shadow-md: 0 2px 6px rgba(20, 27, 46, 0.07), 0 12px 32px rgba(20, 27, 46, 0.1);
  --shadow-lg: 0 4px 12px rgba(20, 27, 46, 0.1), 0 24px 64px rgba(20, 27, 46, 0.16);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --container: 1180px;
  --header-h: 74px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
/* Width/height attributes reserve layout space, but once max-width shrinks the
   rendered width the attribute height must not stay fixed — that stretches the
   image. Specific rules (object-fit covers) still override this. */
img { height: auto; }
a { color: var(--royal); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
::selection { background: var(--royal); color: #fff; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.015em; }
.display {
  font-size: clamp(2.6rem, 6.2vw, 4.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.display em, .h-em {
  font-style: normal;
  display: block;
  color: var(--peri);
}
.h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.h3 { font-size: 1.28rem; font-weight: 700; }
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--oak);
}
.kicker::before {
  content: ""; width: 26px; height: 12px; flex: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26 12"><path d="M1 11 L8 3 L15 11" fill="none" stroke="%23a9743f" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/><path d="M11 11 L18 3 L25 11" fill="none" stroke="%232050e0" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
}
.kicker.on-dark { color: var(--peri); }
.sub { font-size: 1.12rem; color: var(--dim); max-width: 620px; }
.on-dark .sub, .sub.on-dark { color: rgba(234, 240, 251, 0.78); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head .h2 { margin: 12px 0 14px; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; letter-spacing: 0.01em;
  padding: 15px 28px; border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn.primary {
  background: var(--royal); color: #fff;
  box-shadow: 0 4px 16px rgba(32, 80, 224, 0.32);
}
.btn.primary:hover { background: var(--royal-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(32, 80, 224, 0.4); }
.btn.dark { background: var(--navy); color: #fff; }
.btn.dark:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn.ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line); box-shadow: none;
}
.btn.ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn.on-white { background: #fff; color: var(--navy); }
.btn.on-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); }
.btn.sm { padding: 10px 20px; font-size: 0.92rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ── Top strip ─────────────────────────────────────────────────── */
.top-strip {
  background: var(--navy-deep); color: rgba(234, 240, 251, 0.85);
  font-size: 0.82rem; font-weight: 500;
  position: relative; z-index: 60;
}
.top-strip .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; }
.top-strip .badges { display: flex; gap: 22px; }
.top-strip .badges span { display: inline-flex; align-items: center; gap: 6px; }
.top-strip .badges span::before { content: "▲"; font-size: 7px; color: var(--oak); transform: translateY(-1px); }
.top-strip a { color: #fff; font-weight: 700; }
@media (max-width: 860px) { .top-strip .badges span:nth-child(n+3) { display: none; } }
@media (max-width: 560px) { .top-strip .badges span:nth-child(n+2) { display: none; } }

/* ── Header ────────────────────────────────────────────────────── */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 243, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.25s ease;
}
header.site.scrolled { box-shadow: var(--shadow-sm); }
header.site .container {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none !important; }
.brand img, .brand svg.mark { width: 44px; height: 44px; flex: none; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.06rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.12;
  color: var(--ink); display: block;
}
.brand-word { white-space: nowrap; }
.brand-word em {
  display: block; font-style: normal;
  font-family: var(--font-body);
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--oak); white-space: nowrap;
}
nav.primary ul { display: flex; gap: 4px; }
nav.primary .nav-item {
  display: block; padding: 10px 13px; border-radius: 8px; white-space: nowrap;
  font-size: 0.95rem; font-weight: 600; color: var(--ink);
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease;
}
nav.primary .nav-item:hover, nav.primary .nav-item[aria-current="page"] { background: var(--sky); color: var(--royal); }
nav.primary .has-sub { position: relative; }
nav.primary .submenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 288px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 10px; margin-top: 8px;
  opacity: 0; visibility: hidden; transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
/* Invisible hover bridge so the pointer can cross the gap without closing it */
nav.primary .submenu::before {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
nav.primary .has-sub:hover .submenu, nav.primary .has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
nav.primary .submenu a {
  display: block; padding: 9px 12px; border-radius: 8px; white-space: nowrap;
  font-size: 0.94rem; font-weight: 500; color: var(--ink); text-decoration: none !important;
}
nav.primary .submenu a:hover { background: var(--sky); color: var(--royal); }
.submenu-heading {
  padding: 6px 12px 4px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--oak);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; color: var(--navy);
  text-decoration: none !important; white-space: nowrap;
}
.phone-link:hover { color: var(--royal); }
.phone-link svg { color: var(--oak); }
@media (max-width: 1120px) { nav.primary { display: none; } }
@media (max-width: 640px) { .phone-link .phone-num { display: none; } .nav-cta .btn { display: none; } }

/* Burger */
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 10px; position: relative; }
.menu-btn span {
  position: absolute; left: 11px; right: 11px; height: 2.4px; border-radius: 2px;
  background: var(--ink); transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-btn span:nth-child(1) { top: 15px; }
.menu-btn span:nth-child(2) { top: 21px; }
.menu-btn span:nth-child(3) { top: 27px; }
@media (max-width: 1120px) { .menu-btn { display: block; } }

/* ── Mobile menu (fullscreen overlay) ──────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--navy-deep);
  color: #fff;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-3%);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex: none;
}
.mobile-menu-header .brand-word { color: #fff; }
.mobile-menu-header .brand-word em { color: var(--peri); }
.mobile-menu-close { width: 44px; height: 44px; border-radius: 10px; color: #fff; padding: 10px; }
.mobile-menu-close:hover { background: rgba(255, 255, 255, 0.1); }
.mobile-menu-scroll { flex: 1; overflow-y: auto; padding: 18px 24px 28px; -webkit-overflow-scrolling: touch; }
.mm-link {
  display: block; padding: 13px 4px;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: #fff; text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mm-link:hover { color: var(--peri); }
.mm-row { display: flex; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.mm-row .mm-link { flex: 1; border-bottom: 0; }
.mm-expand {
  flex: none; width: 46px; height: 46px; border-radius: 10px; color: var(--peri);
  display: grid; place-items: center;
}
.mm-expand svg { transition: transform 0.22s ease; }
.mm-expand[aria-expanded="true"] svg { transform: rotate(180deg); }
.submenu-mobile { padding: 6px 4px 14px; display: grid; gap: 2px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.submenu-mobile.collapsed { display: none; }
.submenu-mobile a { display: block; padding: 7px 12px; font-size: 0.98rem; color: rgba(234, 240, 251, 0.75); text-decoration: none !important; }
.submenu-mobile a:hover { color: #fff; }
.submenu-mobile-title {
  padding: 10px 12px 4px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--oak);
}
.mobile-menu-footer {
  flex: none; padding: 16px 24px calc(18px + env(safe-area-inset-bottom));
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-footer .btn { width: 100%; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(46, 99, 255, 0.22), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(169, 116, 63, 0.18), transparent 60%),
    var(--navy-deep);
  color: #fff;
  padding: clamp(64px, 9vw, 118px) 0 clamp(56px, 7vw, 96px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(145, 167, 228, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 167, 228, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(900px 600px at 30% 20%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 30% 20%, black, transparent 75%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; position: relative;
}
.hero .display { margin: 18px 0 20px; }
.hero .display em { color: var(--peri); }
.hero .sub { color: rgba(234, 240, 251, 0.8); margin-bottom: 30px; }
.hero-media { position: relative; }
.hero-media .photo {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
  border: 4px solid rgba(255, 255, 255, 0.08);
}
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.4; }
.hero-media .photo-tag {
  position: absolute; left: -14px; bottom: 26px;
  background: #fff; color: var(--ink);
  border-radius: 12px; padding: 12px 18px; box-shadow: var(--shadow-md);
  font-size: 0.85rem; font-weight: 600; line-height: 1.35;
  transform: rotate(-1.5deg);
}
.hero-media .photo-tag strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.hero-media .photo-tag .stars { color: var(--oak); letter-spacing: 2px; }
.badges-row { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 34px; }
.badge { display: flex; align-items: center; gap: 11px; font-size: 0.85rem; line-height: 1.3; color: rgba(234, 240, 251, 0.82); }
.badge strong { display: block; color: #fff; font-size: 0.92rem; }
.badge .icon {
  width: 38px; height: 38px; flex: none; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(145, 167, 228, 0.14); color: var(--peri);
  border: 1px solid rgba(145, 167, 228, 0.25);
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; }
}

/* ── Sections ──────────────────────────────────────────────────── */
section { padding: clamp(60px, 8vw, 104px) 0; }
section.tight { padding: clamp(40px, 5vw, 64px) 0; }
section.on-navy { background: var(--navy-deep); color: #fff; }
section.on-sky { background: var(--sky); }
section.on-white { background: var(--card); }
section.on-oak { background: var(--oak-pale); }

/* Ribbon divider — roofline */
.roofline {
  height: 26px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 26" preserveAspectRatio="none"><path d="M0 26 L20 6 L40 26 L60 6 L80 26 L100 6 L120 26" fill="none" stroke="%23dbe5f7" stroke-width="2"/></svg>') repeat-x center / 120px 26px;
  opacity: 0.7;
}

/* ── Trust bar (logos/stats strip) ─────────────────────────────── */
.trust-bar { background: var(--card); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust-bar .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 18px 32px; padding-top: 22px; padding-bottom: 22px;
}
@media (max-width: 720px) {
  .trust-bar .container { justify-content: center; gap: 12px 22px; }
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--dim); }
.trust-item svg { color: var(--royal); flex: none; }
.trust-item b { color: var(--ink); }

/* ── Stats ─────────────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  background: rgba(145, 167, 228, 0.09); border: 1px solid rgba(145, 167, 228, 0.2);
  border-radius: var(--r-md); padding: 26px 22px; text-align: center;
}
.stat .n {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em;
  color: #fff; line-height: 1;
}
.stat .l { margin-top: 8px; font-size: 0.84rem; color: rgba(234, 240, 251, 0.72); }
@media (max-width: 800px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

/* ── Cards / services grid ─────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none !important; color: var(--ink);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-card .thumb { aspect-ratio: 16 / 9.6; overflow: hidden; }
.svc-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.svc-card:hover .thumb img { transform: scale(1.05); }
.svc-card .body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.svc-card h3 { font-size: 1.18rem; }
.svc-card p { font-size: 0.93rem; color: var(--dim); flex: 1; }
.svc-card .go {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--royal);
}
.svc-card .go::after { content: "→"; transition: transform 0.2s ease; }
.svc-card:hover .go::after { transform: translateX(4px); }

/* Icon cards (no photo) */
.icon-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
}
.icon-card .ic {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sky); color: var(--royal); margin-bottom: 16px;
}
.icon-card h3 { margin-bottom: 8px; font-size: 1.14rem; }
.icon-card p { font-size: 0.93rem; color: var(--dim); }

/* ── Split feature ─────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split .photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split .photo img { width: 100%; height: 100%; object-fit: cover; }
.split .photo.tilt-l { transform: rotate(-1.2deg); }
.split .photo.tilt-r { transform: rotate(1.2deg); }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split.rev .photo { order: -1; } }

.checklist { display: grid; gap: 13px; margin-top: 22px; }
/* block + absolute icon (not flex) so the bold lead and body text flow as one
   paragraph instead of becoming side-by-side flex columns */
.checklist li { position: relative; padding-left: 34px; font-size: 0.98rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--sky) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232050e0" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12.5 L10 17.5 L19 7"/></svg>') center/13px no-repeat;
}
.on-navy .checklist li::before { background-color: rgba(145, 167, 228, 0.16); }
.checklist li b { font-weight: 700; }
.checklist.two-col { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .checklist.two-col { grid-template-columns: 1fr; } }

/* ── Process steps ─────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: 30px 24px 26px; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1;
  color: var(--sky-deep); display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--dim); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ── Real work strip ───────────────────────────────────────────── */
.work-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.work-card { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.work-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 0.4s ease; }
.work-card:hover img { transform: scale(1.04); }
.work-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 14px 12px;
  background: linear-gradient(transparent, rgba(19, 31, 69, 0.88));
  color: #fff; font-size: 0.8rem; font-weight: 600;
}
@media (max-width: 900px) { .work-strip { grid-template-columns: repeat(2, 1fr); } }

/* ── Reviews ───────────────────────────────────────────────────── */
.review-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.review-card .stars { color: var(--oak); letter-spacing: 3px; font-size: 0.95rem; }
.review-card blockquote { font-size: 1.02rem; line-height: 1.6; flex: 1; }
.review-card blockquote::before { content: "“"; font-family: var(--font-serif); color: var(--peri); font-size: 1.6rem; line-height: 0; margin-right: 2px; }
.review-card .who { display: flex; align-items: center; gap: 12px; }
.review-card .who .avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.review-card .who strong { display: block; font-size: 0.95rem; }
.review-card .who span { font-size: 0.8rem; color: var(--dim); }

.rating-banner {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 999px;
  padding: 10px 22px 10px 14px; box-shadow: var(--shadow-sm);
  font-size: 0.9rem; font-weight: 600;
}
.rating-banner .big { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.rating-banner .stars { color: var(--oak); letter-spacing: 2px; }

/* ── Discount band ─────────────────────────────────────────────── */
.perk-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 70%); color: #fff; border-radius: var(--r-lg); overflow: hidden; position: relative; }
.perk-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 78 L42 38 L74 78" fill="none" stroke="%232e63ff" stroke-width="7" stroke-linecap="round" stroke-linejoin="round" opacity="0.35"/><path d="M34 78 L66 38 L98 78" fill="none" stroke="%2391a7e4" stroke-width="7" stroke-linecap="round" stroke-linejoin="round" opacity="0.5"/></svg>') center/contain no-repeat;
  transform: rotate(8deg);
}
.perk-band .inner { position: relative; padding: clamp(34px, 5vw, 56px); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.perk-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 10px; }
.perk-band p { color: rgba(234, 240, 251, 0.8); }
.perk-list { display: grid; gap: 12px; }
.perk-list li { display: flex; gap: 12px; align-items: center; font-weight: 600; font-size: 0.98rem; }
.perk-list li .ic {
  width: 40px; height: 40px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: rgba(169, 116, 63, 0.22); color: #e5b57f; border: 1px solid rgba(169, 116, 63, 0.4);
}
@media (max-width: 880px) { .perk-band .inner { grid-template-columns: 1fr; } }

/* ── Area chips / lists ────────────────────────────────────────── */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.area-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 20px 22px; text-decoration: none !important; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--peri-soft); }
.area-card strong { display: block; font-family: var(--font-display); font-size: 1.06rem; font-weight: 700; }
.area-card span { font-size: 0.8rem; color: var(--dim); }
@media (max-width: 900px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: 0.88rem; font-weight: 600; color: var(--ink);
  text-decoration: none !important;
}
.chip:hover { border-color: var(--royal); color: var(--royal); }
.chip::before { content: "▲"; font-size: 7px; color: var(--oak); }

/* ── FAQ accordion ─────────────────────────────────────────────── */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 19px 22px; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--sky); color: var(--royal); font-size: 1.2rem; font-weight: 700;
  transition: transform 0.22s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 22px 20px; color: var(--dim); font-size: 0.97rem; max-width: 700px; }

/* ── Contact / forms ───────────────────────────────────────────── */
.form { display: grid; gap: 16px; }
.form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form .row-2 { grid-template-columns: 1fr; } }
.form label { display: grid; gap: 7px; font-size: 0.84rem; font-weight: 700; color: var(--ink); }
.form input, .form select, .form textarea {
  font: inherit; font-size: 0.98rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 11px;
  padding: 13px 15px; width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--royal); box-shadow: 0 0 0 4px rgba(32, 80, 224, 0.12);
}
.form textarea { min-height: 130px; resize: vertical; }
.contact-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md);
}
.contact-meta { display: grid; gap: 22px; }
.contact-meta .row { display: flex; gap: 15px; align-items: flex-start; }
.contact-meta .row .ic {
  width: 44px; height: 44px; border-radius: 13px; flex: none; display: grid; place-items: center;
  background: var(--sky); color: var(--royal);
}
.contact-meta .row strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.contact-meta .row a { font-weight: 600; }
.contact-meta .row span, .contact-meta .row div { font-size: 0.94rem; color: var(--dim); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.hours-table td { padding: 7px 0; border-bottom: 1px solid var(--line-soft); }
.hours-table td:last-child { text-align: right; font-weight: 600; }

/* ── Page hero (interior pages) ────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 90% -20%, rgba(46, 99, 255, 0.2), transparent 60%),
    var(--navy-deep);
  color: #fff; padding: clamp(52px, 7vw, 84px) 0;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(145, 167, 228, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 167, 228, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(700px 500px at 25% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(700px 500px at 25% 30%, black, transparent 75%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.025em; margin: 14px 0 14px; }
.page-hero .sub { color: rgba(234, 240, 251, 0.8); }
.crumbs { font-size: 0.82rem; color: rgba(234, 240, 251, 0.55); }
.crumbs a { color: rgba(234, 240, 251, 0.75); }
.page-hero .cta-row { margin-top: 26px; }

/* Service page layout */
.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(32px, 4vw, 56px); align-items: start; }
@media (max-width: 940px) { .svc-layout { grid-template-columns: 1fr; } }
.svc-body { font-size: 1.02rem; }
.svc-body > * + * { margin-top: 1.15em; }
.svc-body h2 { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.02em; margin-top: 1.7em; }
.svc-body .lead { font-size: 1.14rem; color: var(--ink); }
.svc-body p { color: #33405e; }
.svc-body .photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); margin: 1.6em 0; }
.svc-body .photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 20px; }
.sidebar-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.sidebar-card.navy { background: var(--navy-deep); color: #fff; border: 0; }
.sidebar-card.navy h3 { color: #fff; }
.sidebar-card.navy p { color: rgba(234, 240, 251, 0.78); }
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.sidebar-card p { font-size: 0.92rem; color: var(--dim); }
.sidebar-card .btn { width: 100%; margin-top: 14px; }
.sidebar-links { display: grid; gap: 2px; }
.sidebar-links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 12px; border-radius: 9px; font-size: 0.92rem; font-weight: 600;
  color: var(--ink); text-decoration: none !important;
}
.sidebar-links a:hover { background: var(--sky); color: var(--royal); }
.sidebar-links a[aria-current="page"] { background: var(--sky); color: var(--royal); }
.sidebar-links a::after { content: "→"; opacity: 0.4; }

/* ── Final CTA ─────────────────────────────────────────────────── */
.final-cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(800px 400px at 15% 120%, rgba(169, 116, 63, 0.25), transparent 60%),
    radial-gradient(900px 480px at 90% -30%, rgba(46, 99, 255, 0.25), transparent 60%),
    var(--navy-deep);
  color: #fff; text-align: center;
}
.final-cta .h2 { color: #fff; margin: 14px 0 16px; }
.final-cta .sub { margin: 0 auto 30px; }
.final-cta .cta-row { justify-content: center; }
.final-cta .fine { margin-top: 22px; font-size: 0.84rem; color: rgba(234, 240, 251, 0.55); }

/* ── Footer ────────────────────────────────────────────────────── */
footer.site {
  background: var(--ink); color: rgba(234, 240, 251, 0.72);
  padding: 64px 0 34px; font-size: 0.92rem;
}
footer.site .cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
footer.site h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--peri); margin-bottom: 16px;
}
footer.site ul { display: grid; gap: 9px; }
footer.site a { color: rgba(234, 240, 251, 0.72); }
footer.site a:hover { color: #fff; }
footer.site .brand-word { color: #fff; }
footer.site .brand-word em { color: var(--peri); }
footer.site .blurb { margin: 16px 0 18px; max-width: 320px; font-size: 0.9rem; }
.foot-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 26px; font-size: 0.8rem; color: rgba(234, 240, 251, 0.45);
}
@media (max-width: 900px) { footer.site .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { footer.site .cols { grid-template-columns: 1fr; } }

/* ── Corner call/text widgets (all pages, all viewports) ───────── */
.fab {
  position: fixed; bottom: calc(18px + env(safe-area-inset-bottom)); z-index: 40;
  display: inline-flex; align-items: center; gap: 9px;
  height: 54px; padding: 0 22px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  color: #fff; text-decoration: none !important;
  box-shadow: 0 6px 22px rgba(19, 31, 69, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fab:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(19, 31, 69, 0.45); }
.fab svg { flex: none; }
.fab.call { right: 18px; background: var(--royal); }
.fab.text { left: 18px; background: var(--navy); }
@media (max-width: 600px) {
  .fab { height: 56px; width: 56px; padding: 0; justify-content: center; border-radius: 50%; }
  .fab .fab-label { display: none; }
  .fab.call { right: 14px; }
  .fab.text { left: 14px; }
  .fab { bottom: calc(14px + env(safe-area-inset-bottom)); }
}

/* ── Reveal animation ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .svc-card, .btn, .area-card { transition: none; }
}

/* ── Utility ───────────────────────────────────────────────────── */
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; } .mt-4 { margin-top: 48px; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }
.muted { color: var(--dim); }
.nowrap { white-space: nowrap; }
