/* ==========================================================================
   Engle Wash Co. — styles
   Mobile-first. Black / white / blue. 8px spacing rhythm.
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --ink: #141414;
  --text: #1c1f26;
  --muted: #5b6270;
  --line: #e4e7ec;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;

  --blue: #0070f8;         /* brand accent, sampled from the logo */
  --blue-strong: #005bd4;  /* text-on-white and solid buttons (AA contrast) */
  --blue-soft: #e8f1ff;
  --blue-glow: rgba(0, 112, 248, 0.28);

  --on-dark: #ffffff;
  --on-dark-muted: #b6bcc7;
  --dark-line: rgba(255, 255, 255, 0.1);

  --error: #b42318;
  --error-bg: #fef3f2;
  --success: #067647;

  --font-head: "Sora", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.1);
  --shadow-md: 0 8px 24px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.35);

  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --t-fast: 150ms;
  --t-med: 260ms;

  --header-h: 60px;
  --container: 1180px;
  --gutter: 20px;
}

@media (min-width: 768px) {
  :root { --header-h: 68px; --gutter: 32px; }
}
@media (min-width: 1200px) {
  :root { --gutter: 40px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; text-wrap: balance; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
figure { margin: 0; }
[hidden] { display: none !important; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: 8px; left: 8px; z-index: 1000;
  padding: 12px 16px; background: var(--blue-strong); color: #fff; font-weight: 600; border-radius: var(--r-sm);
  transform: translateY(-200%); transition: transform var(--t-fast);
}
.skip-link:focus { transform: none; }

.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--black); color: var(--on-dark); }
.section__head { max-width: 680px; margin-bottom: 40px; }
@media (min-width: 768px) { .section__head { margin-bottom: 56px; } }
.section__head h2 { margin-top: 12px; }
.section__lead { margin-top: 16px; font-size: 1.0625rem; color: var(--muted); }
.section--dark .section__lead { color: var(--on-dark-muted); }
.section__cta { margin-top: 40px; display: flex; justify-content: center; }
@media (min-width: 768px) { .section__cta { margin-top: 56px; } }
section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

h1 { font-size: clamp(2.25rem, 3.6vw + 1.1rem, 3.4rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; }
h2 { font-size: clamp(1.75rem, 2.2vw + 1rem, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: 1.125rem; }

.eyebrow {
  display: inline-flex; align-items: flex-start; gap: 8px; line-height: 1.5;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-strong);
}
.eyebrow .icon { width: 1rem; height: 1rem; margin-top: 0.2em; }
.eyebrow--light, .section--dark .eyebrow { color: var(--blue); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 12px;
  font-weight: 600; font-size: 1rem; line-height: 1; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: background-color var(--t-fast) ease, border-color var(--t-fast) ease, color var(--t-fast) ease, transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.98); }
.btn .icon { width: 1.125rem; height: 1.125rem; }
.btn--lg { min-height: 56px; padding: 0 28px; font-size: 1.0625rem; }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 0.9375rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--blue-strong); color: #fff; box-shadow: 0 6px 20px rgba(0, 91, 212, 0.28); }
.btn--primary:hover { background: var(--blue); }
.btn--primary:active { background: #004fb8; }

.btn--ghost { background: rgba(255, 255, 255, 0.06); color: #fff; border-color: rgba(255, 255, 255, 0.22); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.4); }

.btn--outline { background: #fff; color: var(--blue-strong); border-color: var(--blue-strong); }
.btn--outline:hover { background: var(--blue-soft); }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; color: #fff;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background-color var(--t-fast) ease;
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.14); }
.icon-btn .icon { width: 1.25rem; height: 1.25rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.88);
  -webkit-backdrop-filter: saturate(140%) blur(12px); backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--dark-line);
  color: #fff;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; }
.brand__logo { width: 40px; height: 40px; border-radius: 50%; flex: none; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.0625rem; letter-spacing: -0.01em; white-space: nowrap; }
@media (min-width: 768px) { .brand__logo { width: 44px; height: 44px; } .brand__name { font-size: 1.125rem; } }

.site-nav { display: none; }
.site-nav__list { display: flex; gap: 4px; }
.site-nav__list a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px; border-radius: 10px;
  font-weight: 500; font-size: 0.9375rem; color: var(--on-dark-muted);
  transition: color var(--t-fast) ease, background-color var(--t-fast) ease;
}
.site-nav__list a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }

.site-header__actions { display: flex; align-items: center; gap: 10px; }
.header-phone { display: none; align-items: center; gap: 8px; min-height: 44px; padding: 0 12px; font-weight: 600; font-size: 0.9375rem; color: #fff; border-radius: 10px; }
.header-phone:hover { background: rgba(255, 255, 255, 0.06); }
.header-phone .icon { width: 1.05rem; height: 1.05rem; color: var(--blue); }
.header-cta { display: none; }

.menu-toggle .icon--close { display: none; }
.menu-toggle[aria-expanded="true"] .icon--menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon--close { display: block; }

@media (min-width: 1024px) {
  .site-nav { display: block; }
  .header-phone { display: inline-flex; }
  .header-cta { display: inline-flex; }
  .header-call, .menu-toggle { display: none; }
}

.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--black); border-bottom: 1px solid var(--dark-line);
  padding: 8px var(--gutter) 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}
.mobile-menu__list a {
  display: flex; align-items: center; min-height: 52px; padding: 0 4px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #fff;
  border-bottom: 1px solid var(--dark-line);
}
.mobile-menu__list li:last-child a { border-bottom: 0; }
.mobile-menu__actions { display: grid; gap: 10px; margin-top: 12px; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--black); color: #fff;
  padding: 48px 0 56px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 85% -5%, var(--blue-glow), transparent 70%),
    radial-gradient(40% 40% at 0% 100%, rgba(0, 112, 248, 0.12), transparent 70%);
}
.hero__grid { position: relative; display: grid; gap: 36px; }
.hero__copy { display: grid; gap: 20px; align-content: center; }
.hero__title { max-width: 16ch; }
.hero__lead { font-size: 1.125rem; color: var(--on-dark-muted); max-width: 52ch; }
.hero__actions { display: grid; gap: 12px; margin-top: 4px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 0.9375rem; font-weight: 500; color: var(--on-dark-muted); }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .icon { width: 1.05rem; height: 1.05rem; color: var(--blue); stroke-width: 2.5; }

.hero__media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; background: #1a1a1a;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 520px) {
  .hero__actions { display: flex; flex-wrap: wrap; }
}
@media (min-width: 768px) {
  .hero { padding: 80px 0 88px; }
}
@media (min-width: 1024px) {
  .hero { padding: 96px 0 104px; }
  .hero__grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
  .hero__copy { gap: 24px; }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 36px 0; }
.trust__grid { display: grid; gap: 20px; }
.trust__item { display: flex; gap: 14px; align-items: flex-start; }
.trust__icon {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); color: var(--blue-strong);
}
.trust__icon .icon { width: 1.25rem; height: 1.25rem; }
.trust__item h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
.trust__item p { margin-top: 2px; font-size: 0.9375rem; color: var(--muted); }
@media (min-width: 600px) { .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .trust { padding: 44px 0; } .trust__grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

/* ---------- Services ---------- */
.services__grid { display: grid; gap: 16px; }
.service {
  padding: 24px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d4dae3; }
.service__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; background: var(--blue-soft); color: var(--blue-strong); margin-bottom: 18px;
}
.service__icon .icon { width: 1.4rem; height: 1.4rem; }
.service h3 { font-size: 1.125rem; }
.service p { margin-top: 8px; font-size: 0.9375rem; color: var(--muted); }
@media (min-width: 640px) { .services__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .service { padding: 28px; } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.commercial {
  display: flex; gap: 14px; align-items: flex-start;
  margin-top: 24px; padding: 18px 20px; border-radius: var(--r-md);
  background: var(--bg-soft); border: 1px dashed #cfd6e0; color: var(--muted); font-size: 0.9375rem;
}
.commercial .icon { width: 1.25rem; height: 1.25rem; color: var(--blue-strong); margin-top: 3px; }
.commercial strong { color: var(--text); }
.commercial a { color: var(--blue-strong); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 640px) { .commercial { margin-top: 28px; align-items: center; } }

/* ---------- Before / After ---------- */
.results__stack { display: grid; gap: 32px; }
@media (min-width: 768px) { .results__stack { gap: 48px; } }
.result figcaption { margin-top: 14px; font-size: 1rem; font-weight: 500; color: var(--on-dark-muted); }

.ba {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  aspect-ratio: 4 / 3; background: #1a1a1a;
  user-select: none; -webkit-user-select: none;
  touch-action: pan-y; cursor: ew-resize;
  border: 1px solid var(--dark-line);
}
.ba--portrait { aspect-ratio: 3 / 4; }
.ba--square { aspect-ratio: 1 / 1; }
/* Mixed-shape pairs: show the whole photo and fill the rest with a blurred backdrop */
.ba--contain::before { content: ""; position: absolute; inset: 0; background: #111 var(--bg) center / cover no-repeat; }
.ba--contain .ba__before { background: #111 var(--bg) center / cover no-repeat; }
.ba.ba--contain img { object-fit: contain; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, 50% 50%); pointer-events: none; }
/* Wide screens: every slider spans the full content width, so use wider boxes */
@media (min-width: 768px) {
  .ba { aspect-ratio: 16 / 9; border-radius: var(--r-lg); }
  .ba--portrait, .ba--square { aspect-ratio: 4 / 3; }
  .ba__grip { width: 56px; height: 56px; }
  .ba__label { top: 16px; font-size: 0.75rem; padding: 7px 12px; }
  .ba__label--before { left: 16px; }
  .ba__label--after { right: 16px; }
}
.ba__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; background: #fff; transform: translateX(-50%); pointer-events: none; z-index: 2;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; color: var(--black);
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.ba__grip .icon { width: 1.25rem; height: 1.25rem; stroke-width: 2.5; }
.ba.is-dragging .ba__grip { transform: translate(-50%, -50%) scale(1.06); }
.ba.is-focus .ba__grip { outline: 3px solid var(--blue); outline-offset: 3px; }
.ba__label {
  position: absolute; top: 12px; z-index: 2; pointer-events: none;
  padding: 6px 10px; border-radius: var(--r-pill);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(10, 10, 10, 0.72); color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.ba__label--before { left: 12px; opacity: clamp(0, calc((var(--p, 50) - 12) / 10), 1); }
.ba__label--after { right: 12px; background: rgba(0, 91, 212, 0.9); border-color: rgba(255, 255, 255, 0.2); opacity: clamp(0, calc((88 - var(--p, 50)) / 10), 1); }


/* ---------- About ---------- */
.about__grid { display: grid; gap: 36px; }
.about__media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__copy h2 { margin-top: 12px; }
.about__copy > p { margin-top: 16px; color: var(--muted); font-size: 1.0625rem; }
.checklist { margin-top: 24px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.checklist .icon { flex: none; width: 1.375rem; height: 1.375rem; padding: 3px; border-radius: 50%; background: var(--blue-soft); color: var(--blue-strong); stroke-width: 3; margin-top: 1px; }
.about__sig { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-family: var(--font-head); font-weight: 700; font-size: 1.125rem; display: grid; gap: 2px; }
.about__sig span { font-family: var(--font-body); font-weight: 400; font-size: 0.9375rem; color: var(--muted); }
@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 0.95fr 1.05fr; gap: 72px; align-items: center; }
}

/* ---------- Reviews ---------- */
.review-cta {
  max-width: 640px; margin: 0 auto; padding: 36px 24px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md);
}
@media (min-width: 640px) { .review-cta { padding: 48px 40px; } }
.review-cta__icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--blue-soft); color: var(--blue-strong); margin-bottom: 18px; }
.review-cta__icon .icon { width: 1.5rem; height: 1.5rem; fill: currentColor; stroke: none; }
.review-cta h3 { font-size: 1.375rem; }
.review-cta p { margin-top: 12px; color: var(--muted); font-size: 1.0625rem; }
.review-cta .btn { margin-top: 24px; }
.review-cta__fine { font-size: 0.8125rem !important; margin-top: 12px !important; }
.reviews__grid { display: grid; gap: 20px; }
.review { padding: 28px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); }
.review__stars { display: flex; gap: 2px; color: var(--blue-strong); }
.review__stars .icon { width: 1.125rem; height: 1.125rem; fill: currentColor; stroke: none; }
.review blockquote { margin: 16px 0 0; font-size: 1.0625rem; line-height: 1.6; }
.review__by { margin-top: 16px; font-weight: 600; display: grid; }
.review__by span { font-weight: 400; font-size: 0.9rem; color: var(--muted); }
@media (min-width: 768px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ---------- Service area ---------- */
.area__grid { display: grid; gap: 32px; }
.area__grid h2 { margin-top: 12px; }
.area__list { display: flex; flex-wrap: wrap; gap: 10px; align-content: flex-start; }
.area__list li {
  padding: 10px 16px; border-radius: var(--r-pill); background: var(--bg-soft); border: 1px solid var(--line);
  font-weight: 500; font-size: 0.9375rem;
}
.area__list li:first-child { background: var(--blue-strong); color: #fff; border-color: var(--blue-strong); }
.area__more { color: var(--muted); background: transparent !important; border-style: dashed !important; box-shadow: none !important; }
@media (min-width: 1024px) { .area__grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; } }

/* ---------- Contact ---------- */
.contact__grid { display: grid; gap: 40px; }
.contact__copy h2 { margin-top: 12px; }
.contact__methods { margin-top: 28px; display: grid; gap: 14px; }
.contact__methods li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.contact__methods .icon { flex: none; width: 2.5rem; height: 2.5rem; padding: 10px; border-radius: 10px; background: var(--blue-soft); color: var(--blue-strong); }
.contact__methods a { min-height: 44px; display: inline-flex; align-items: center; }
.contact__methods a:hover { color: var(--blue-strong); text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 1024px) { .contact__grid { grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; } .contact__copy { position: sticky; top: calc(var(--header-h) + 32px); } }

.contact__form { position: relative; }
.form {
  display: grid; gap: 18px;
  padding: 24px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
@media (min-width: 640px) { .form { padding: 32px; } }
.form__honey { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form__note { font-size: 0.875rem; color: var(--muted); }
.form__row--2 { display: grid; gap: 18px; }
@media (min-width: 560px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 6px; }
.field label, .field__label { font-weight: 600; font-size: 0.9375rem; }
.field__opt { font-weight: 400; color: var(--muted); }
.field input:not([type="file"]), .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 14px;
  border: 1px solid #cfd6e0; border-radius: var(--r-sm); background: #fff;
  font-size: 1rem; /* 16px prevents iOS zoom */
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.field textarea { min-height: 104px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #98a2b3; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 112, 248, 0.18); }
.field.has-error input, .field.has-error select, .field.has-error .file { border-color: var(--error); }
.field.has-error input:focus, .field.has-error select:focus { box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.15); }

/* Service chips (multi-select) */
.field--group { border: 0; padding: 0; margin: 0; min-width: 0; }
.field--group legend { font-weight: 600; font-size: 0.9375rem; padding: 0; margin-bottom: 6px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px; border-radius: var(--r-pill);
  border: 1px solid #cfd6e0; background: #fff; font-weight: 500; font-size: 0.9375rem; color: var(--text);
  transition: background-color var(--t-fast) ease, border-color var(--t-fast) ease, color var(--t-fast) ease;
}
.chip span::before { content: ""; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid #b8c1cf; flex: none; transition: background-color var(--t-fast) ease, border-color var(--t-fast) ease; }
.chip:hover span { border-color: var(--blue); }
.chip input:checked + span { background: var(--blue-soft); border-color: var(--blue-strong); color: var(--blue-strong); }
.chip input:checked + span::before { background: var(--blue-strong); border-color: var(--blue-strong); box-shadow: inset 0 0 0 3px #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }
.field--group.has-error .chip span { border-color: var(--error); }

.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; padding-right: 44px; cursor: pointer; }
.select select:invalid, .select select.is-placeholder { color: #98a2b3; }
.select option { color: var(--text); background: #fff; }
.select option[disabled] { color: #98a2b3; }
.select::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}

.file {
  display: flex; align-items: center; gap: 12px; min-height: 56px; padding: 12px 14px;
  border: 1px dashed #b8c1cf; border-radius: var(--r-sm); background: var(--bg-soft);
  color: var(--muted); cursor: pointer; font-weight: 500; font-size: 0.9375rem;
  transition: border-color var(--t-fast) ease, background-color var(--t-fast) ease;
}
.file:hover { border-color: var(--blue); background: var(--blue-soft); }
.file:focus-within { outline: 3px solid var(--blue); outline-offset: 2px; }
.file .icon { color: var(--blue-strong); width: 1.25rem; height: 1.25rem; }
.file.has-file { color: var(--text); border-style: solid; border-color: var(--blue-strong); background: var(--blue-soft); }
.file__text { overflow-wrap: anywhere; }
.field__hint { font-size: 0.8125rem; color: var(--muted); }
.field__suggest { font-size: 0.875rem; color: var(--text); }
.link-btn { color: var(--blue-strong); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; min-height: 32px; padding: 0 2px; }
.link-btn:hover { color: var(--blue); }

/* Address autocomplete */
.combo { position: relative; }
.combo__list {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20; margin: 0; padding: 6px; list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); box-shadow: var(--shadow-md); max-height: 280px; overflow-y: auto;
}
.combo__list li { display: grid; gap: 2px; padding: 10px 12px; border-radius: 8px; cursor: pointer; min-height: 44px; }
.combo__list li:hover, .combo__list li.is-active { background: var(--blue-soft); }
.combo__main { font-weight: 500; }
.combo__status { color: var(--muted); font-size: 0.875rem; cursor: default; min-height: 40px; display: flex; align-items: center; }
.combo__status:hover { background: transparent; }
.combo__sub { font-size: 0.8125rem; color: var(--muted); }

.form__captcha:empty { display: none; }
.form__captcha { display: flex; justify-content: center; }
.field__error { display: flex; align-items: flex-start; gap: 6px; font-size: 0.875rem; color: var(--error); font-weight: 500; }
.field__error::before { content: "!"; flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--error); color: #fff; font-size: 0.6875rem; font-weight: 800; display: grid; place-items: center; margin-top: 3px; }

.form__summary {
  padding: 14px 16px; border-radius: var(--r-sm); background: var(--error-bg); border: 1px solid #fecdca; color: var(--error); font-size: 0.9375rem;
}
.form__summary ul { margin-top: 6px; padding-left: 18px; list-style: disc; }
.form__summary a { text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }

.form__fine { font-size: 0.8125rem; color: var(--muted); text-align: center; }

.btn__spinner { display: none; width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.35); border-top-color: #fff; animation: spin 0.8s linear infinite; }
.btn.is-loading { pointer-events: none; opacity: 0.85; }
.btn.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__success {
  padding: 40px 28px; border-radius: var(--r-lg); text-align: center;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.form__success-icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #e6f6ee; color: var(--success); margin-bottom: 16px; }
.form__success-icon .icon { width: 1.5rem; height: 1.5rem; stroke-width: 3; }
.form__success h3 { font-size: 1.375rem; }
.form__success p { margin-top: 10px; color: var(--muted); }
.form__success a { color: var(--blue-strong); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--on-dark-muted); padding: 56px 0 0; }
.footer__grid { display: grid; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid var(--dark-line); }
.footer__brand p { margin-top: 16px; font-size: 0.9375rem; max-width: 42ch; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__logo { width: 44px; height: 44px; }
.footer__social { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; min-height: 44px; font-weight: 600; color: #fff; }
.footer__social .icon { color: var(--blue); }
.footer__social:hover { color: var(--blue); }
.footer__col h3 { font-family: var(--font-body); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer__col ul { display: grid; gap: 2px; }
.footer__col li, .footer__col a { font-size: 0.9375rem; }
.footer__col a { display: inline-flex; align-items: center; min-height: 40px; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: grid; gap: 6px; padding: 20px 0 28px; font-size: 0.8125rem; }
@media (min-width: 480px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (min-width: 640px) { .footer__bottom { grid-template-columns: 1fr auto; } }
@media (min-width: 1024px) { .footer__brand { grid-column: auto; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; } }

/* ---------- Mobile sticky CTA ---------- */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: auto 1fr; gap: 10px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 10, 0.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--dark-line);
  transition: transform var(--t-med) var(--ease-out);
}
.cta-bar.is-hidden { transform: translateY(110%); }
.cta-bar .btn--ghost { padding: 0 18px; }
@media (max-width: 1023px) { body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); } }
@media (min-width: 1024px) { .cta-bar { display: none; } body { padding-bottom: 0; } }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .service, .btn, .ba__grip, .cta-bar { transition: none; }
  .btn:active { transform: none; }
}

/* ---------- Before / After: side-by-side pair cards ---------- */
.pairs { display: grid; gap: 40px; }
@media (min-width: 768px) { .pairs { gap: 56px; } }
.pair__images { display: flex; flex-direction: column; gap: 10px; }
.pair__half { position: relative; border-radius: var(--r-md); overflow: hidden; background: #1a1a1a; border: 1px solid var(--dark-line); min-width: 0; aspect-ratio: var(--r, 1.333); }
.pair__half img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; }
.pair figcaption { margin-top: 14px; font-size: 1rem; font-weight: 500; color: var(--on-dark-muted); }
@media (min-width: 640px) {
  .pair__images { flex-direction: row; align-items: stretch; gap: 14px; }
  .pair__half { flex: var(--r, 1.333) 1 0%; }
}
.section__cta { flex-wrap: wrap; gap: 12px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; }
.legal h1 { margin-top: 12px; font-size: clamp(1.9rem, 3vw + 0.8rem, 2.75rem); letter-spacing: -0.02em; }
.legal__meta { margin-top: 10px; color: var(--muted); font-size: 0.9375rem; }
.legal h2 { margin-top: 36px; font-size: 1.25rem; }
.legal p, .legal li { margin-top: 12px; color: var(--text); font-size: 1.0625rem; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a:not(.btn) { color: var(--blue-strong); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal__back { margin-top: 40px; }

/* ---------- Gallery ---------- */
.site-nav__list a.is-active { color: #fff; background: rgba(255, 255, 255, 0.08); }
.gallery-hero { background: var(--black); color: #fff; padding: 48px 0 40px; }
.gallery-hero h1 { margin-top: 12px; }
.gallery-hero p { margin-top: 14px; color: var(--on-dark-muted); font-size: 1.0625rem; max-width: 60ch; }
@media (min-width: 768px) { .gallery-hero { padding: 72px 0 56px; } }
.gallery { columns: 1; column-gap: 20px; }
@media (min-width: 640px) { .gallery { columns: 2; } }
@media (min-width: 1024px) { .gallery { columns: 3; } }
.gallery__item {
  display: block; width: 100%; break-inside: avoid; margin: 0 0 20px; padding: 0; text-align: left;
  border-radius: var(--r-md); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  cursor: zoom-in; transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
.gallery__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery__item img { display: block; width: 100%; height: auto; }
.gallery__cap { display: block; padding: 12px 14px 14px; font-size: 0.9375rem; font-weight: 500; color: var(--text); }
.gallery__cap span { display: block; font-weight: 400; color: var(--muted); font-size: 0.875rem; margin-top: 2px; }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1400px); max-height: 96vh; }
.lightbox::backdrop { background: rgba(0, 0, 0, 0.88); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.lightbox__inner { position: relative; display: grid; gap: 10px; justify-items: center; }
.lightbox img { max-width: 96vw; max-height: 84vh; width: auto; height: auto; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: #fff; font-weight: 500; text-align: center; }
.lightbox__close { position: fixed; top: 16px; right: 16px; z-index: 2; }
.lightbox__nav { position: fixed; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }
@media (max-width: 639px) { .lightbox__nav { top: auto; bottom: 16px; transform: none; } }
