/* All Saints — same brand tokens as the live site (fonts load via <link> in head) */
:root {
  --bg: #f4faff;
  --card: #ffffff;
  --ink: #08233a;
  --ink-2: #405b73;
  --ink-3: #7c91a6;
  --accent: #0f6cae;
  --accent-dk: #084d7d;
  --accent-soft: #e7f2fa;
  --line: rgba(8, 35, 58, 0.12);
  --gold-star: #e8a013;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--accent); }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- progress ---------- */
#progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--accent); z-index: 1200; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(244, 250, 255, 0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); transition: box-shadow 0.3s; overflow-anchor: none; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(8, 35, 58, 0.1); }
.header-inner { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; height: 72px;
  display: flex; align-items: center; gap: 1.5rem; }
.site-header.scrolled .header-inner { height: 58px; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink);
  margin-right: auto; }
.brand-mark { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--line); background: #fff; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; font-size: 1rem; }
.brand-text span { display: block; font-weight: 500; color: var(--ink-2); font-size: 0.82rem; letter-spacing: 0.02em; }
.main-nav .nav-list { display: flex; align-items: center; gap: 1rem; list-style: none; flex-wrap: nowrap; }
.main-nav .nav-list > li { white-space: nowrap; }
.main-nav .nav-list a:not(.btn) { text-decoration: none; color: var(--ink-2); font-size: 0.9rem;
  font-weight: 600; padding-bottom: 2px; border-bottom: 2px solid transparent; white-space: nowrap; }
.main-nav .nav-list a:not(.btn):hover { color: var(--ink); }
.main-nav .nav-list a.current { color: var(--ink); border-bottom-color: var(--accent); }

/* ---------- nav dropdown (Jet Washing sub-pages) ---------- */
.main-nav .nav-list .has-sub { position: relative; }
.main-nav .nav-list .sub-toggle { display: none; }
.main-nav .nav-list .sub-chev { width: 1.05rem; height: 1.05rem; }
.main-nav .nav-list .sub-nav { position: absolute; top: 100%; left: 50%;
  transform: translate(-50%, 10px); min-width: 220px; list-style: none; background: #fff;
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 18px 44px rgba(8, 35, 58, 0.16); padding: 0.5rem;
  opacity: 0; visibility: hidden; transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 1001; }
.main-nav .nav-list .sub-nav::before { content: ''; position: absolute; top: -14px; left: 0;
  right: 0; height: 14px; }
.main-nav .nav-list .has-sub:hover > .sub-nav,
.main-nav .nav-list .has-sub:focus-within > .sub-nav { opacity: 1; visibility: visible;
  transform: translate(-50%, 0); }
.main-nav .nav-list .sub-nav a { display: block; padding: 0.65rem 0.9rem; border-radius: 8px;
  white-space: nowrap; text-decoration: none; color: var(--ink-2); font-size: 0.88rem;
  font-weight: 600; border-bottom: 0; }
.main-nav .nav-list .sub-nav a:hover { background: var(--accent-soft); color: var(--ink); }
.main-nav .nav-list .sub-nav a.current { color: var(--ink); background: var(--accent-soft); }
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none;
  color: var(--ink); font-weight: 800; font-size: 0.95rem; white-space: nowrap; }
.header-phone svg { color: var(--accent); }
@media (max-width: 1100px) {
  .header-phone span { display: none; }
  .main-nav .nav-list { gap: 0.85rem; }
}
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px;
  width: 42px; height: 42px; cursor: pointer; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); display: block; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; cursor: pointer;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 1.7rem; border-radius: 999px; border: 1px solid var(--accent);
  transition: background 0.25s, transform 0.35s var(--ease), box-shadow 0.3s; }
.btn:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 108, 174, 0.28); }
.btn-small { padding: 0.6rem 1.25rem; font-size: 0.86rem; }
.btn-secondary { background: transparent; color: var(--ink); border-color: rgba(8, 35, 58, 0.3); }
.btn-secondary:hover { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: none; }
.btn-light { background: #fff; border-color: #fff; color: var(--ink); }
.btn-light:hover { background: var(--accent-soft); border-color: #fff; color: var(--ink); box-shadow: none; }
.btn-outline-light { background: transparent; border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; color: #fff; box-shadow: none; }

/* ---------- inline SVG icons (no icon font to download) ---------- */
svg.ico { width: 1em; height: 1em; flex-shrink: 0; vertical-align: -0.12em; }

/* ---------- type helpers ---------- */
.kicker { display: flex; align-items: center; gap: 0.75rem; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.kicker::before { content: ''; width: 34px; height: 2px; background: var(--accent); flex-shrink: 0; }
.kicker-light { color: #9fd3f5; }
.kicker-light::before { background: #9fd3f5; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.015em; line-height: 1.15; }
h1 em, h2 em { font-style: italic; color: var(--accent); }
.section { padding: 5rem 0; }
.section-narrow { max-width: 760px; }
.lede { font-size: 1.12rem; color: var(--ink-2); margin-top: 1.1rem; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 3.5rem 0; }

/* ---------- page hero ---------- */
.page-hero { border-bottom: 1px solid var(--line); background: var(--card); }
.page-hero .wrap { padding-top: 3rem; padding-bottom: 3rem; }
#quote { scroll-margin-top: 84px; }
.crumbs { font-size: 0.8rem; color: var(--ink-3); margin-bottom: 1.2rem; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.page-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); max-width: 18ch; }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.page-hero img.main { border-radius: var(--radius); border: 1px solid var(--line);
  aspect-ratio: 16 / 10; object-fit: cover; width: 100%; height: auto; max-height: 560px;
  box-shadow: 0 18px 50px rgba(8, 35, 58, 0.12); }
.hero-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.6rem; font-size: 0.88rem;
  font-weight: 600; color: var(--ink-2); }
.hero-meta svg { color: var(--accent); margin-right: 0.4rem; }
.hero-actions { display: flex; gap: 0.9rem; margin-top: 1.8rem; flex-wrap: wrap; }

/* ---------- home hero ---------- */
.home-hero { background: var(--ink); color: #fff; overflow: hidden;
  background-image: radial-gradient(900px 480px at 85% -10%, rgba(15,108,174,0.35), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(143,203,243,0.12), transparent 60%); }
.home-hero .wrap { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 3.5rem;
  align-items: center; padding-top: 4.5rem; padding-bottom: 4.5rem; }
.home-hero h1 { font-size: clamp(2.75rem, 5.4vw, 4.4rem); color: #fff; letter-spacing: -0.02em; }
.home-hero h1 em { color: #8fcbf3; }
.home-hero .lede { color: rgba(255, 255, 255, 0.82); max-width: 46ch; }
.home-hero figure { margin: 0; }
.home-hero img { border-radius: var(--radius); aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35); outline: 1px solid rgba(255, 255, 255, 0.14); outline-offset: 10px; }
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip .wrap { display: flex; gap: 2.2rem; flex-wrap: wrap; padding-top: 1.1rem;
  padding-bottom: 1.1rem; font-size: 0.88rem; font-weight: 700; color: var(--ink-2); }
.trust-strip svg { color: var(--accent); margin-right: 0.45rem; background: var(--accent-soft);
  border-radius: 8px; padding: 3px; width: 1.45em; height: 1.45em; vertical-align: -0.35em; }
.trust-strip .stars { color: var(--gold-star); letter-spacing: 2px; }

/* ---------- before / after ---------- */
.ba { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 16 / 10; user-select: none; touch-action: pan-y; background: #dfeaf3;
  max-width: 880px; margin-left: auto; margin-right: auto; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { clip-path: inset(0 0 0 var(--split, 50%)); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--split, 50%); width: 2px;
  background: #fff; box-shadow: 0 0 14px rgba(0, 0, 0, 0.5); cursor: ew-resize; }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px;
  height: 46px; border-radius: 50%; background: #fff; color: var(--ink); display: flex;
  align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35); }
.ba-tag { position: absolute; top: 0.9rem; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em;
  background: rgba(8, 35, 58, 0.72); color: #fff; padding: 0.32rem 0.75rem; border-radius: 999px; }
.ba-tag.before { left: 0.9rem; } .ba-tag.after { right: 0.9rem; }
.ba-hint { font-size: 0.82rem; color: var(--ink-3); margin-top: 0.6rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.split > * { min-width: 0; }
.contact-panel { overflow: hidden; }
.contact-panel .area-marquee { margin-top: 1.2rem; }
.contact-panel .area-track { gap: 2rem; padding-right: 2rem; animation-duration: 26s; }
.contact-panel .area-track span { gap: 2rem; font-size: 1.05rem; }

/* ---------- service index rows ---------- */
.svc-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: center;
  padding: 2.8rem 0; border-top: 1px solid var(--line); text-decoration: none; color: inherit; }
.svc-row:first-of-type { border-top: 0; }
.svc-row img { border-radius: var(--radius); aspect-ratio: 16 / 10; object-fit: cover; width: 100%;
  border: 1px solid var(--line); }
.svc-row:nth-child(even) .svc-row-img { order: 2; }
.svc-no { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.2em; color: var(--ink-3); }
.svc-row h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0.5rem 0 0.7rem; }
.svc-row p { color: var(--ink-2); }
.svc-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-weight: 800;
  font-size: 0.9rem; color: var(--accent); }
.svc-row:hover .svc-link { gap: 0.8rem; }
.svc-link, .svc-row img { transition: gap 0.3s, transform 0.5s var(--ease); }
.svc-row:hover img { transform: scale(1.015); }

/* ---------- checklists / steps ---------- */
.checks { list-style: none; display: grid; gap: 0.7rem; margin-top: 1.4rem; }
.checks li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-2); }
.checks svg { color: var(--accent); margin-top: 0.35rem; }
.steps { list-style: none; counter-reset: step; display: grid; gap: 0; margin-top: 1.6rem;
  border-top: 1px solid var(--line); }
.steps li { counter-increment: step; display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem;
  padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.steps li::before { content: '0' counter(step); font-family: var(--serif); font-size: 1.3rem;
  color: var(--accent); }
.steps b { display: block; font-size: 1.02rem; }
.steps p { color: var(--ink-2); font-size: 0.94rem; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); margin-top: 1.6rem; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq summary { cursor: pointer; font-weight: 700; list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.3rem; color: var(--accent); font-weight: 400; }
.faq details[open] summary::after { content: '–'; }
.faq details p { color: var(--ink-2); margin-top: 0.6rem; font-size: 0.95rem; max-width: 60ch; }

/* ---------- gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px;
  grid-auto-flow: dense; gap: 1rem; margin-top: 1.4rem; }
.gal-grid figure { border-radius: 12px; overflow: hidden; position: relative; cursor: zoom-in;
  border: 1px solid var(--line); height: 100%; min-height: 0; background: #dfeaf3; margin: 0;
  box-shadow: 0 8px 24px rgba(8,35,58,0.07); transition: transform 0.45s var(--ease), box-shadow 0.35s; }
.gal-grid figure.wide { grid-column: span 2; }
.gal-grid figure:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(8,35,58,0.14); }
.gal-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gal-grid figure:hover img { transform: scale(1.05); }
.gal-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; color: #fff;
  background: linear-gradient(transparent, rgba(6,26,44,0.88)); padding: 2rem 0.9rem 0.8rem;
  pointer-events: none; }
.gal-grid figcaption b { display: block; font-size: 0.92rem; font-weight: 800; letter-spacing: 0.01em; }
.gal-grid figcaption span { display: block; font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.78); }

/* ---------- reviews ---------- */
.rating-line { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem; flex-wrap: wrap; }
.rating-line .stars { color: var(--gold-star); letter-spacing: 3px; font-size: 1.1rem; }
.rating-line b { font-size: 1.15rem; }
.rating-line span { color: var(--ink-3); font-size: 0.88rem; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2.2rem; }
.rev { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; }
.rev .who { display: flex; align-items: center; gap: 0.8rem; }
.rev .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.rev .stars { color: var(--gold-star); letter-spacing: 2px; font-size: 0.85rem; }
.rev p { color: var(--ink-2); font-size: 0.94rem; flex: 1; }
.rev small { color: var(--ink-3); }
.rev-foot { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-top: auto; }
.rev-tag { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px; padding: 0.25rem 0.7rem; color: var(--ink-2); }
.rev .stars.fb { color: #1877f2; letter-spacing: 0; font-size: 0.85rem; }
.rev.hide { display: none; }

/* ---------- kit logos (gutter vac) ---------- */
.kit-panel { position: relative; overflow: hidden; background: #061a2c; color: #fff;
  border-radius: calc(var(--radius) + 8px); padding: clamp(2rem, 5vw, 3.5rem); }
.kit-panel::before { content: ''; position: absolute; top: -40%; right: -10%; width: 60%;
  aspect-ratio: 1; background: radial-gradient(circle, rgba(63, 154, 214, 0.28), transparent 65%); }
.kit-panel::after { content: ''; position: absolute; bottom: -50%; left: -10%; width: 55%;
  aspect-ratio: 1; background: radial-gradient(circle, rgba(63, 154, 214, 0.16), transparent 65%); }
.kit-panel > * { position: relative; z-index: 1; }
.kit-panel h2 { color: #fff; }
.kit-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.kit-shot { margin: 0; }
.kit-shot img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 15%;
  border-radius: var(--radius); }
.kit-shot figcaption { color: rgba(255, 255, 255, 0.72); font-size: 0.85rem; margin-top: 0.8rem; }
.kit-rows { display: grid; gap: 1rem; margin-top: 1.6rem; }
.kit-row { display: flex; align-items: center; gap: 1.1rem;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px; padding: 1.1rem 1.25rem; }
.kit-badge { flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 10px; padding: 0.65rem 0.9rem; }
.kit-badge img { height: 34px; width: auto; max-width: 124px; object-fit: contain; }
.kit-row h3 { color: #fff; font-size: 1rem; margin-bottom: 0.25rem; }
.kit-row p { color: rgba(255, 255, 255, 0.72); font-size: 0.87rem; line-height: 1.6; }
@media (max-width: 860px) {
  .kit-split { grid-template-columns: 1fr; }
  .kit-shot img { aspect-ratio: 4 / 5; object-position: center top; }
}

/* ---------- areas ---------- */
.area-marquee { overflow: hidden; max-width: 100%; margin-top: 1.6rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
@media (hover: none) {
  .area-track { animation-duration: 48s; }
}
.area-track { display: flex; align-items: center; gap: 2.75rem; width: max-content;
  padding-right: 2.75rem; animation: area-scroll 32s linear infinite; }
.area-track span { display: inline-flex; align-items: center; gap: 2.75rem; white-space: nowrap;
  font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink); }
.area-track span::after { content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; }
.area-marquee:hover .area-track { animation-play-state: paused; }
@keyframes area-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .area-track { animation: none; flex-wrap: wrap; width: auto; padding-right: 0; }
}
.area-list-drop { margin-top: 0.9rem; }
.area-list-drop summary { display: inline-flex; align-items: center; gap: 0.45rem; cursor: pointer;
  font-weight: 800; font-size: 0.9rem; color: var(--accent); list-style: none; }
.area-list-drop summary::-webkit-details-marker { display: none; }
.area-list-drop summary .ico { transition: transform 0.2s; }
.area-list-drop[open] summary .ico { transform: rotate(90deg); }
.area-list-drop ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.3rem 1.5rem;
  margin: 0.9rem 0 0; padding: 0; list-style: none; }
.area-list-drop li { font-size: 0.92rem; font-weight: 600; color: var(--ink-2); padding: 0.25rem 0; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2.2rem; }
.contact-card { display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem;
  padding: 2rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; color: inherit; transition: border-color 0.25s, transform 0.4s var(--ease), box-shadow 0.35s; }
.contact-card:hover { border-color: var(--accent); transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 108, 174, 0.16); }
.contact-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 0.7rem; }
.contact-card .label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3); }
.contact-card b { font-size: 1.15rem; }
.contact-card .svc-no { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; color: var(--ink-3); }
.contact-card.featured .svc-no { color: rgba(255, 255, 255, 0.55); }
.contact-card span.hint { color: var(--ink-2); font-size: 0.9rem; }
.contact-card .svc-link { margin-top: 0.9rem; }
.contact-card.featured { background: var(--ink); border-color: var(--ink); color: #fff;
  box-shadow: 0 18px 50px rgba(8, 35, 58, 0.22); position: relative; }
.contact-card.featured .label { color: #9fd3f5; }
.contact-card.featured span.hint { color: rgba(255,255,255,0.78); }
.contact-card.featured .svc-link { color: #8fcbf3; }
.contact-card.featured .ic { background: rgba(255,255,255,0.12); color: #fff; }
.contact-badge { position: absolute; top: 1.1rem; right: 1.1rem; font-size: 0.68rem;
  font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  background: #fff; color: var(--ink); border-radius: 999px; padding: 0.3rem 0.8rem; }
.contact-panel { background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.2rem; }
.contact-panel-dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.contact-panel-dark .lede, .contact-panel-dark .checks li { color: rgba(255,255,255,0.82); }
.contact-panel-dark h2 { color: #fff; }
.contact-panel-dark h2 em { color: #8fcbf3; }
.contact-panel-dark .kicker { color: #9fd3f5; }
.contact-panel-dark .kicker::before { background: #9fd3f5; }
.contact-panel-dark .checks svg { color: #8fcbf3; }

/* ---------- contact quote builder ---------- */
.contact-figure { margin: 0; }
.contact-figure img.main { outline: none; }
.quote-builder { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1.3rem; margin-top: 2.2rem; align-items: start; }
.quote-form, .quote-summary { border-radius: var(--radius); padding: 2rem; border: 1px solid var(--line); }
.quote-form { background: var(--card); }
.quote-summary { background: var(--ink); border-color: var(--ink); color: #fff; position: sticky; top: 88px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.8rem 0 0.4rem; }
.chip { border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 0.55rem 1.15rem; font: inherit; font-size: 0.86rem; font-weight: 700;
  color: var(--ink-2); cursor: pointer; transition: all 0.25s var(--ease); }
.chip:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.field label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); display: block; margin: 1.2rem 0 0.5rem; }
.field label .step { display: inline-flex; align-items: center; justify-content: center;
  width: 1.4rem; height: 1.4rem; border-radius: 50%; background: var(--ink); color: #fff;
  font-size: 0.72rem; letter-spacing: 0; margin-right: 0.45rem; vertical-align: 0.1em; }
.field label .opt { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--ink-3); }
.field-hint { font-size: 0.83rem; color: var(--ink-3); margin-top: 0.45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.check-row { display: flex; gap: 0.7rem; align-items: flex-start; background: var(--accent-soft);
  border: 1px solid var(--line); border-radius: 12px; padding: 0.9rem 1rem; margin-top: 1.1rem;
  font-size: 0.9rem; line-height: 1.55; color: var(--ink); cursor: pointer;
  text-transform: none; letter-spacing: 0; font-weight: 600; }
.check-row input { width: 1.1rem; height: 1.1rem; margin-top: 0.2rem; accent-color: var(--accent); flex-shrink: 0; }
.field input, .field textarea, .field select { width: 100%; font: inherit; font-size: 0.95rem;
  padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid var(--line);
  background: #f8fcff; color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
#quoteForm input, #quoteForm select, #quoteForm textarea { font-size: 1rem; padding: 1rem; }
#quoteForm input[type="file"] { padding: 0.7rem 0.2rem; border: 0; background: none; }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
/* Custom photo upload: label acts as the tap target, input stays accessible. */
.upload-box { display: block; position: relative; border: 2px dashed var(--line); border-radius: 14px; background: #f8fcff;
  padding: 1.4rem 1.2rem; text-align: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.upload-box:hover { border-color: var(--accent); background: #f0f7fd; }
.upload-box svg { width: 1.8rem; height: 1.8rem; color: var(--accent); }
.upload-box b { display: block; margin-top: 0.5rem; font-size: 0.95rem; }
.upload-box span { display: block; margin-top: 0.2rem; font-size: 0.85rem; color: var(--ink-2); }
.upload-box small { display: block; margin-top: 0.5rem; font-size: 0.8rem; color: var(--ink-3); }
.upload-box input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.upload-names { font-size: 0.85rem; color: var(--ink-2); margin-top: 0.5rem; }
.hp-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.scope-note { background: var(--accent-soft); border: 1px solid var(--line);
  border-left: 4px solid var(--accent); border-radius: 12px; padding: 1.1rem 1.3rem;
  font-size: 0.95rem; line-height: 1.65; color: var(--ink-2); }
.scope-note a { color: var(--accent); font-weight: 800; }
.quote-reassure { font-size: 0.88rem; color: var(--ink-2); margin-top: 1rem; }
.quote-alt { display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem 1.1rem;
  margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); font-size: 0.92rem; }
.quote-alt span { color: var(--ink-3); }
.quote-alt a { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 800;
  color: var(--ink); text-decoration: none; padding: 0.5rem 0; }
.quote-cta { text-align: center; margin-top: 2.2rem; }
.quote-cta h3 { font-size: 1.35rem; }
.quote-cta .hero-actions { justify-content: center; }
.cta-final-inner { background: #061a2c; color: #fff; border-radius: calc(var(--radius) + 8px);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem); text-align: center; }
.cta-final-inner h2 { color: #fff; }
.cta-final-inner .hero-actions { justify-content: center; }
.cta-final-phone { margin-top: 1.4rem; color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; }
.cta-final-phone a { color: #fff; font-weight: 800; text-decoration: none; font-size: 1.1rem; }
.svc-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.field textarea { min-height: 108px; resize: vertical; }
.wa-wrap { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 1rem; margin: 1.2rem 0 0.9rem; }
.wa-bubble { background: #dcf8c6; color: #0b2b16; border-radius: 12px 12px 4px 12px;
  padding: 0.85rem 1rem 1.4rem; font-size: 0.92rem; line-height: 1.6; position: relative;
  white-space: pre-wrap; word-wrap: break-word; }
.wa-meta { position: absolute; right: 0.7rem; bottom: 0.4rem; font-size: 0.7rem; color: rgba(11,43,22,0.6); }
.wa-ticks { color: #34b7f1; }
.q-status { font-size: 0.86rem; color: #9fd3f5; margin: 0 0 1.1rem; min-height: 1.4em; }
.quote-tip { display: flex; gap: 0.6rem; margin-top: 1.2rem; font-size: 0.85rem;
  color: rgba(255,255,255,0.7); line-height: 1.6; }
.quote-tip svg { color: #8fcbf3; margin-top: 0.25rem; flex-shrink: 0; }
@media (max-width: 960px) {
  .quote-builder { grid-template-columns: 1fr; }
  .quote-summary { position: static; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- cta band / footer ---------- */
.cta-band { background: var(--ink); color: #fff; margin-top: 5rem; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  padding-top: 3.5rem; padding-bottom: 3.5rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); max-width: 22ch; }
.cta-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.cta-band-phone { flex-basis: 100%; margin: 0.7rem 0 0; color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; }
.cta-band-phone a { color: #fff; font-weight: 800; text-decoration: none; }
.site-footer { background: #061a2c; color: rgba(255, 255, 255, 0.72); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 2.5rem;
  padding-top: 3.5rem; padding-bottom: 3rem; }
.foot-grid h3 { font-family: var(--sans); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 1rem; }
.foot-grid ul { list-style: none; display: grid; gap: 0.55rem; font-size: 0.92rem; }
.foot-grid a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.foot-grid a:hover { color: #fff; }
.foot-brand .brand-text { color: #fff; font-size: 1.05rem; margin-bottom: 0.7rem; }
.foot-brand .brand-text span { color: rgba(255, 255, 255, 0.6); }
.foot-trust { margin-top: 1rem; font-size: 0.85rem; }
.foot-trust svg { color: #8fcbf3; }
.foot-phone { font-size: 1.2rem; font-weight: 800; color: #fff !important; }
.foot-social { display: flex; gap: 1rem; margin-top: 0.8rem; font-size: 1.15rem; }
.foot-base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 1.3rem; padding-bottom: 1.5rem;
  font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); }

/* ---------- prose (privacy/404) ---------- */
.prose h2 { font-size: 1.35rem; margin: 2rem 0 0.6rem; }
.prose h2:first-of-type { margin-top: 0; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { padding-left: 1.25rem; margin: 0.6rem 0 1rem; }
.prose li { margin-bottom: 0.35rem; }
.prose a { color: var(--accent); font-weight: 700; }
.prose-card { background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.5rem, 5vw, 2.75rem); }
.prose-card h2 { font-size: 1.15rem; padding-top: 1.6rem; margin-top: 1.6rem;
  border-top: 1px solid var(--line); }
.prose-card h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }

/* ---------- lightbox / sticky call / reveal ---------- */
#lightbox { position: fixed; inset: 0; background: rgba(6, 20, 33, 0.93); display: none;
  align-items: center; justify-content: center; z-index: 2000; padding: 2rem; }
#lightbox.open { display: flex; }
#lightbox figure { margin: 0; max-width: min(1000px, 92vw); text-align: center; }
#lightbox img { max-width: min(1000px, 92vw); max-height: 76vh; border-radius: 12px; margin: 0 auto; }
#lightboxCap { margin-top: 0.9rem; line-height: 1.5; }
#lightbox button { position: absolute; top: 1.2rem; right: 1.4rem; background: #fff; border: 0;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; }
.sticky-call { display: none; }
.sticky-dock { display: none; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- photo band ---------- */
.band { position: relative; color: #fff; overflow: hidden; background: var(--ink); }
.band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(98deg, rgba(6,26,44,0.9) 15%, rgba(6,26,44,0.55) 55%, rgba(6,26,44,0.25)); }
.band-inner { position: relative; z-index: 1; padding: 4.5rem 0; max-width: 620px; }
.band .stars { color: var(--gold-star); letter-spacing: 3px; }
.band blockquote { font-family: var(--serif); font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.45; margin: 0.9rem 0 1rem; }
.band cite { font-style: normal; font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ---------- telltale signs ---------- */
.signs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.sign { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.3rem; }
.sign .n { font-family: var(--serif); font-size: 1.5rem; color: var(--accent); }
.sign b { display: block; margin: 0.4rem 0 0.3rem; font-size: 0.98rem; }
.sign p { color: var(--ink-2); font-size: 0.88rem; line-height: 1.65; }

/* ---------- related services ---------- */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.related a { text-decoration: none; color: inherit; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: block;
  transition: transform 0.4s var(--ease), box-shadow 0.35s; }
.related a:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(8,35,58,0.12); }
.related img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.related div { padding: 1.1rem 1.3rem 1.3rem; }
.related h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.related p { color: var(--ink-2); font-size: 0.87rem; }

@media (max-width: 960px) {
  .signs { grid-template-columns: 1fr 1fr; }
  .related { grid-template-columns: 1fr; }
  .band-inner { padding: 3.2rem 0; }
}
@media (max-width: 600px) {
  .signs { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-proof { left: 0.8rem; right: 0.8rem; bottom: 0.8rem; padding: 0.7rem 0.85rem; }
  .hero-proof p { font-size: 0.9rem; }
}

/* ---------- gallery feature + filters ---------- */
.gal-feature { margin: 2.4rem 0 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); position: relative; box-shadow: 0 18px 50px rgba(8,35,58,0.12); }
.gal-feature img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; cursor: zoom-in; }
.gal-feature figcaption { position: absolute; left: 1rem; bottom: 1rem; right: 1rem; color: #fff;
  background: rgba(8, 35, 58, 0.78); padding: 0.7rem 1.1rem; border-radius: 12px;
  font-size: 0.85rem; font-weight: 500; backdrop-filter: blur(6px); }
.gal-feature figcaption b { display: block; font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0; }
.gal-feature figcaption span { color: rgba(255,255,255,0.75); }
.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2.2rem; position: sticky; top: 72px; z-index: 50;
  background: rgba(244,250,255,0.94); backdrop-filter: blur(10px); padding: 0.7rem 0; }
.filter-bar button { border: 1px solid var(--line); background: var(--card); border-radius: 999px;
  padding: 0.55rem 1.25rem; font: inherit; font-size: 0.85rem; font-weight: 700;
  color: var(--ink-2); cursor: pointer; transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.3s var(--ease); }
.filter-bar button:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.filter-bar button.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.gal-grid figure.hide { display: none; }
/* compare cards */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.8rem; }
.compare-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem; box-shadow: 0 12px 32px rgba(8,35,58,0.08); }
.compare-card .ba { aspect-ratio: 4 / 3; }
.compare-card h3 { font-size: 1.15rem; margin: 1rem 0 0.25rem; }
.compare-card p { color: var(--ink-2); font-size: 0.9rem; }
@media (max-width: 860px) { .compare-grid { grid-template-columns: 1fr; } }

/* ---------- home hero figure + points ---------- */
.hero-figure { position: relative; margin: 0; }
.hero-proof { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; background: rgba(255,255,255,0.97);
  color: var(--ink); padding: 0.8rem 1rem 0.85rem; border-radius: 12px;
  border-top: 3px solid var(--gold-star);
  box-shadow: 0 14px 34px rgba(0,0,0,0.3); }
.hero-proof .stars { color: var(--gold-star); letter-spacing: 2px; font-size: 0.8rem; }
.hero-proof p { font-family: var(--serif); font-size: 0.98rem; line-height: 1.45; margin: 0.25rem 0 0.2rem; }
.hero-proof small { color: var(--ink-2); font-size: 0.75rem; font-weight: 600; }
.hero-proof-who { display: flex; align-items: center; gap: 0.55rem; margin-top: 0.5rem; }
.hero-proof-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: #fff;
  font-weight: 800; font-size: 0.75rem; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-points { list-style: none; display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 1.6rem;
  color: rgba(255,255,255,0.88); font-size: 0.88rem; font-weight: 700; }
.hero-points svg { color: #8fcbf3; margin-right: 0.45rem; }

/* ---------- home service cards ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.2rem; }
.svc-card { text-decoration: none; color: inherit; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: block;
  transition: transform 0.4s var(--ease), box-shadow 0.35s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(8,35,58,0.12); }
.svc-card-img { overflow: hidden; position: relative; }
.svc-card-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  transition: transform 0.5s var(--ease); }
.svc-card:hover .svc-card-img img { transform: scale(1.04); }
.svc-card-body { padding: 1.3rem 1.4rem 1.5rem; }
.svc-card-body h3 { font-size: 1.25rem; margin: 0.4rem 0 0.4rem; }
.svc-card-body p { color: var(--ink-2); font-size: 0.92rem; }

/* ---------- home work strip ---------- */
.work-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.work-strip figure { border-radius: 12px; overflow: hidden; position: relative; cursor: zoom-in;
  border: 1px solid var(--line); aspect-ratio: 4 / 3; background: #dfeaf3; margin: 0;
  box-shadow: 0 8px 24px rgba(8,35,58,0.07); transition: transform 0.45s var(--ease), box-shadow 0.35s; }
.work-strip figure:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(8,35,58,0.14); }
.work-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-strip figure:hover img { transform: scale(1.05); }
.work-strip figcaption { position: absolute; left: 0; right: 0; bottom: 0; color: #fff;
  background: linear-gradient(transparent, rgba(6,26,44,0.88)); padding: 1.6rem 0.8rem 0.7rem;
  pointer-events: none; }
.work-strip figcaption b { display: block; font-size: 0.88rem; font-weight: 800; }
.work-strip figcaption span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.78); }
@media (max-width: 960px) { .work-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr; } .svc-grid.cols-3 { grid-template-columns: 1fr; } }

/* ---------- instant-feeling photos (skeleton + develop-in) ---------- */
/* The shimmer lives on the frame in pure CSS, so it paints with the HTML —
   every photo slot looks intentional instantly, even on slow connections. */
img { background-color: #dfeaf3; }
.gal-grid figure::before,
.work-strip figure::before,
.gal-feature::before,
.svc-card-img::before,
.hero-figure::before,
.ba::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: #d9e7f2;
  pointer-events: none;
}
/* Sheen sweep uses transform only, so it stays composited (no jank on phones). */
.gal-grid figure::after,
.work-strip figure::after,
.gal-feature::after,
.svc-card-img::after,
.hero-figure::after,
.ba::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 55%; z-index: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-120%);
  animation: frame-sheen 1.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes frame-sheen { to { transform: translateX(320%); } }
/* Sheen stops the moment the photo is in — saves phone batteries. */
.is-done::before, .is-done::after { display: none; }
/* Paint order: shimmer at the back, photo above it, captions/handles on top. */
.gal-grid img,
.work-strip img,
.gal-feature img,
.svc-card-img img,
.hero-figure img { position: relative; z-index: 1; }
.ba img { z-index: 1; }
.gal-grid figcaption,
.work-strip figcaption,
.gal-feature figcaption,
.hero-figure figcaption,
.ba-tag,
.ba-handle { z-index: 2; }
/* Logo has transparency — keep it off the photo placeholder tint. */
.brand-mark img { background-color: transparent; }
/* Photos develop in with opacity + settle only (compositor-cheap on phones).
   Above-the-fold heroes (fetchpriority=high) are excluded on purpose:
   hiding them until fully loaded is what caused the appear/disappear flash.
   They render natively over their shimmer frames instead. */
html.img-fx .gal-grid img,
html.img-fx .work-strip img,
html.img-fx .svc-card-img img,
html.img-fx .ba img,
html.img-fx .band > img,
html.img-fx .related img {
  opacity: 0; transform: scale(1.045);
}
html.img-fx img.is-loaded { opacity: 1; transform: none;
  transition: opacity 0.8s var(--ease), transform 0.9s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .gal-grid figure::after,
  .work-strip figure::after,
  .gal-feature::after,
  .svc-card-img::after,
  .hero-figure::after,
  .ba::after { animation: none; display: none; }
  html.img-fx .gal-grid img,
  html.img-fx .work-strip img,
  html.img-fx .svc-card-img img,
  html.img-fx .ba img,
  html.img-fx .band > img,
  html.img-fx .related img { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  /* No frosted-glass blur on phones: it repaints every scroll frame and judders. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #f4faff; }
  .page-hero-grid, .home-hero .wrap, .split, .svc-row { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-row-img { order: 0; }
  .rev-grid, .contact-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .header-phone span { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav .nav-list { position: absolute; top: 72px; left: 0; right: 0; background: var(--card);
    flex-direction: column; align-items: stretch; padding: 1rem 1.5rem 1.5rem; gap: 0;
    border-bottom: 1px solid var(--line); display: none; box-shadow: 0 20px 40px rgba(8, 35, 58, 0.12); }
  .main-nav .nav-list.open { display: flex; }
  .site-header.scrolled .main-nav .nav-list { top: 58px; }
  .main-nav .nav-list li a:not(.btn) { display: block; padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
  /* Sub-pages live behind an arrow toggle: collapsed until tapped */
  .main-nav .nav-list .has-sub { display: block; width: 100%; }
  .main-nav .nav-list .has-sub-head { display: flex; align-items: center; gap: 0.5rem; }
  .main-nav .nav-list .has-sub-head > a { flex: 1; }
  .main-nav .nav-list .sub-toggle { display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; flex-shrink: 0; background: none;
    border: 0; cursor: pointer; color: var(--ink-2); }
  .main-nav .nav-list .sub-toggle .sub-chev { transform: rotate(90deg); transition: transform 0.2s; }
  .main-nav .nav-list .has-sub.open .sub-toggle .sub-chev { transform: rotate(-90deg); }
  .main-nav .nav-list .sub-nav { display: none; list-style: none; margin: 0 0 0.4rem 0.25rem; padding: 0 0 0 1.1rem;
    border: 0; border-left: 2px solid var(--line);
    position: static; left: auto; top: auto; transform: none; min-width: 0;
    background: transparent; border-radius: 0; box-shadow: none;
    opacity: 1; visibility: visible; }
  .main-nav .nav-list .has-sub.open .sub-nav { display: block; opacity: 1; visibility: visible; transform: none; }
  .main-nav .nav-list .sub-nav::before { display: none; }
  .main-nav .nav-list .sub-nav li { display: block; margin: 0; }
  .main-nav .nav-list .sub-nav li a:not(.btn) { display: block;
    width: 100%; box-sizing: border-box; padding: 0.7rem 0;
    font-size: 0.9rem; font-weight: 600; color: var(--ink-2); text-decoration: none; white-space: normal;
    background: none; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .main-nav .nav-list .sub-nav li:last-child a:not(.btn) { border-bottom: 0; }
  .main-nav .nav-list .sub-nav li a:not(.btn)::before { display: none; }
  .main-nav .nav-list .sub-nav a.current { color: var(--ink); font-weight: 800; }
  .nav-cta-item { padding-top: 1rem; }
  .section { padding: 3.5rem 0; }
  /* Floating action dock (mobile only): Free Quote leads, Call + WhatsApp alongside. */
  .sticky-dock { display: grid; grid-template-columns: 0.85fr 1fr 1.35fr; gap: 8px;
    position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 1100; background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(10, 50, 80, 0.08); border-radius: 18px; padding: 8px;
    box-shadow: 0 6px 20px rgba(5, 31, 51, 0.12), 0 2px 6px rgba(5, 31, 51, 0.06);
    opacity: 0; visibility: hidden; transform: translateY(12px); pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms; }
  .sticky-dock.is-visible { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .sticky-dock.dock-hidden { opacity: 0; visibility: hidden; transform: translateY(12px); pointer-events: none; }
  .dock-btn { display: flex; align-items: center; justify-content: center; gap: 0.45rem;
    min-height: 52px; border-radius: 13px; font-weight: 800; font-size: 0.85rem;
    text-decoration: none; white-space: nowrap; }
  .dock-btn svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
  .dock-btn:active { transform: scale(0.98); }
  .dock-btn { transition: transform 0.15s; }
  .dock-call { background: #F7FAFC; color: var(--ink); border: 1px solid rgba(10, 50, 80, 0.16); }
  .dock-wa { background: var(--ink); color: #fff; }
  .dock-quote { background: var(--accent); color: #fff; }
  .site-footer { padding-bottom: calc(104px + env(safe-area-inset-bottom)); }
  /* Very small phones: compress spacing so all three labels fit one line. */
  @media (max-width: 380px) {
    .sticky-dock { left: 8px; right: 8px; padding: 6px; gap: 6px;
      grid-template-columns: 0.9fr 1fr 1.3fr; }
    .dock-btn { font-size: 0.8rem; gap: 0.3rem; }
    .dock-btn svg { width: 1rem; height: 1rem; }
  }
}

/* ---------- footer + CTA band on phones ---------- */
@media (max-width: 640px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.25rem;
    padding-top: 2.5rem; padding-bottom: 2.25rem; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-talk { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem; }
  .foot-grid ul { gap: 0; font-size: 0.95rem; }
  .foot-grid ul a { display: block; padding: 0.6rem 0; }
  .foot-phone { font-size: 1.35rem; }
  .foot-social { gap: 0.75rem; margin-top: 1rem; }
  .foot-social a { display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%; font-size: 1.3rem; }
  .foot-base { flex-direction: column; align-items: center; text-align: center; gap: 0.35rem; }
  .cta-inner { padding-top: 2.5rem; padding-bottom: 2.5rem; gap: 1.5rem; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1 1 100%; justify-content: center; padding: 1rem; }
}

/* ---------- jet hero on mobile: copy -> photo -> trust -> CTAs ---------- */
@media (max-width: 960px) {
  .jet-hero .wrap { padding-bottom: 2.25rem; }
  .jet-hero .page-hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .jet-hero .page-hero-grid > div:first-child { display: contents; }
  .jet-hero .crumbs { order: 0; }
  .jet-hero .kicker { order: 1; margin-bottom: 0.85rem; }
  .jet-hero h1 { order: 2; }
  .jet-hero .lede { order: 3; }
  .jet-hero .page-hero-grid > div:last-child { order: 4; margin: 1.4rem 0; }
  .jet-hero img.main { aspect-ratio: 16 / 10; max-height: 220px; border-radius: 18px;
    box-shadow: 0 10px 28px rgba(8, 35, 58, 0.12); }
  .jet-hero .hero-meta { order: 5; margin-top: 0; display: flex; flex-wrap: wrap;
    gap: 10px 18px; font-size: 0.85rem; }
  .jet-hero .hero-actions { order: 6; margin-top: 1.4rem; gap: 12px; }
  .jet-hero .hero-actions .btn { min-height: 56px; }
}
