/* ═════════════════════════════════════════════════════════════════
   ADS LANDING — ads_landing.css
   Dedicated single-scroll lead-capture page for paid traffic.
   Same tokens as quote_landing.css for brand consistency, but its own
   (lighter) rules — no funnel/calendar/booking styles to load here.
   ═════════════════════════════════════════════════════════════════ */

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

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: var(--mm-text-base, 16px);
  color: var(--mm-text-primary);
  background: var(--mm-surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
h1, h2, p { margin: 0; }

.al-shell { max-width: 640px; margin: 0 auto; padding: 0 var(--mm-s-4); }

/* ── Header ──────────────────────────────────────────────────── */
.al-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--mm-glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mm-border-soft);
}
.al-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.al-brand { display: flex; align-items: center; text-decoration: none; }
.al-brand__img { height: 44px; display: block; }
.al-brand__img--dark { display: none; }
[data-theme="dark"] .al-brand__img--light { display: none; }
[data-theme="dark"] .al-brand__img--dark { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .al-brand__img--light { display: none; }
  :root:not([data-theme="light"]) .al-brand__img--dark { display: block; }
}
.al-header__phone {
  color: var(--mm-brand-600);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--mm-text-sm);
}

/* ── Display type ────────────────────────────────────────────── */
/* Fraunces carries the headlines; DM Sans stays for everything that has
   to be read fast (steps, form, prices). The italic is the one flourish. */
.al-hero__title, .sec-title, .al-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.015em;
}
.al-hero__title em { font-style: italic; font-weight: 400; color: var(--mm-brand-600); }
.sec-title { font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -0.005em; font-variation-settings: 'opsz' 72; }
.al-card__title { font-size: clamp(24px, 2.4vw, 30px); font-variation-settings: 'opsz' 72; }

/* ── Hero: copy left, real photo right ───────────────────────── */
.al-hero { background: var(--mm-surface); overflow: hidden; }
.al-hero__grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--mm-s-6) var(--mm-s-4) 0;
  display: grid;
  gap: var(--mm-s-6);
}
.al-hero__copy { align-self: center; }
.al-hero__title {
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.02;
  margin-top: var(--mm-s-3);
}
.al-hero__sub {
  margin-top: var(--mm-s-4);
  max-width: 42ch;
  color: var(--mm-text-secondary);
  font-size: var(--mm-text-lg);
  line-height: 1.55;
}
.al-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--mm-s-3) var(--mm-s-5);
  margin-top: var(--mm-s-6);
}
.al-hero__call { color: var(--mm-text-secondary); font-weight: 600; font-size: var(--mm-text-sm); text-decoration: none; }
.al-hero__call:hover { color: var(--mm-brand-600); }
.al-hero__media { margin: 0; position: relative; isolation: isolate; }
.al-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--mm-r-2xl);
  box-shadow: var(--mm-shadow-md);
}
/* brand drop behind the photo's corner — the logo's mark, not a gradient blob */
.al-hero__media::before {
  content: "";
  position: absolute;
  inset: auto -8% -6% auto;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50% 50% 50% 0;
  background: var(--mm-brand-50);
  z-index: -1;
}
.al-scroll-cta {
  display: inline-flex;
  padding: var(--mm-s-4) var(--mm-s-7);
  border-radius: var(--mm-r-pill);
  background: var(--mm-brand-500);
  color: #fff;
  font-weight: 700;
  font-size: var(--mm-text-lg);
  text-decoration: none;
  box-shadow: var(--mm-shadow-brand);
  transition: transform 0.15s var(--mm-ease), background 0.15s;
}
.al-scroll-cta:hover { background: var(--mm-brand-600); transform: translateY(-1px); }

/* facts strip — the trust claims from the main site, as a quiet ledger */
.al-facts {
  list-style: none;
  max-width: 1120px;
  margin: var(--mm-s-7) auto 0;
  padding: var(--mm-s-4) var(--mm-s-4);
  border-top: 1px solid var(--mm-border-soft);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--mm-s-3) var(--mm-s-5);
  color: var(--mm-text-secondary);
  font-size: var(--mm-text-sm);
  font-weight: 500;
}
.al-facts li { display: flex; gap: var(--mm-s-2); align-items: baseline; }
.al-facts li::before {
  content: "";
  flex: none;
  width: 8px; height: 8px;
  border-radius: 50% 50% 50% 0;
  background: var(--mm-brand-500);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .al-hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--mm-s-8); padding-top: var(--mm-s-8); }
  .al-facts { grid-template-columns: repeat(4, 1fr); margin-top: var(--mm-s-8); }
}

/* ── Capture section ─────────────────────────────────────────── */
.al-capture { padding: var(--mm-s-7) 0 var(--mm-s-8); background: var(--mm-bg-app); }
.al-capture__inner { display: grid; }

.al-card {
  background: var(--mm-surface);
  border: 1px solid var(--mm-border-soft);
  border-radius: var(--mm-r-2xl);
  padding: var(--mm-s-6) var(--mm-s-5);
  scroll-margin-top: 76px; /* sticky header height + breathing room */
}
.al-card--reveal { animation: al-rise 0.35s var(--mm-ease-out) both; }
@keyframes al-rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.al-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--mm-text-xs);
  font-weight: 700;
  color: var(--mm-brand-600);
  text-align: center;
}
.al-card__title {
  font-size: var(--mm-text-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  margin-top: var(--mm-s-2);
}

/* sq ft input — typeable, with ±100 nudges and common-size chips below */
.al-sqft {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--mm-s-3);
  margin-top: var(--mm-s-5);
}
.al-sqft__ctrl { width: min(100%, 260px); }
.al-sqft__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: var(--mm-text-2xl);
  font-weight: 700;
  text-align: center;
  color: var(--mm-text-primary);
  -moz-appearance: textfield;
}
.al-sqft__input::-webkit-outer-spin-button, .al-sqft__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.al-sqft__input:focus { outline: none; }
.al-sqft__ctrl:focus-within { border-color: var(--mm-brand-400); }
.al-sqft__unit { color: var(--mm-text-muted); font-weight: 600; font-size: var(--mm-text-sm); }
.al-sqft__presets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--mm-s-2);
  margin-top: var(--mm-s-4);
}
.al-sqft__presets button {
  border: 1.5px solid var(--mm-border);
  border-radius: var(--mm-r-pill);
  background: var(--mm-surface);
  color: var(--mm-text-primary);
  padding: var(--mm-s-2) var(--mm-s-4);
  font: inherit;
  font-size: var(--mm-text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.al-sqft__presets button:hover { border-color: var(--mm-brand-300); }
.al-sqft__presets button.is-selected { border-color: var(--mm-brand-500); background: var(--mm-brand-50); color: var(--mm-brand-700); }
.al-sqft__presets + .al-submit { margin-top: var(--mm-s-6); }

/* ── Steppers (beds/baths) ───────────────────────────────────── */
.al-stepper-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--mm-s-4);
  margin-top: var(--mm-s-5);
}
.al-stepper__label { display: flex; align-items: center; gap: var(--mm-s-2); font-weight: 600; font-size: var(--mm-text-sm); margin-bottom: var(--mm-s-2); }
.al-stepper__ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--mm-border);
  border-radius: var(--mm-r-pill);
  padding: var(--mm-s-1);
}
.al-stepper__btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--mm-r-pill);
  background: var(--mm-surface-strong);
  font-size: var(--mm-text-lg);
  cursor: pointer;
  transition: background 0.15s;
}
.al-stepper__btn:hover { background: var(--mm-brand-100); }
.al-stepper__value { font-size: var(--mm-text-lg); font-weight: 700; min-width: 2ch; text-align: center; }
.al-stepper-row + .al-submit { margin-top: var(--mm-s-6); }

/* ── Choice cards (type & frequency) ─────────────────────────── */
.al-choice-grid { display: grid; gap: var(--mm-s-3); margin-top: var(--mm-s-5); }
.al-choice {
  border: 1.5px solid var(--mm-border);
  background: var(--mm-surface);
  border-radius: var(--mm-r-lg);
  padding: var(--mm-s-4);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s var(--mm-spring);
}
.al-choice strong { display: block; font-size: var(--mm-text-md); }
.al-choice small { display: block; margin-top: 2px; font-size: var(--mm-text-xs); font-weight: 600; color: var(--mm-brand-600); }
.al-choice small:empty { display: none; }
.al-choice__ico { width: 26px; height: 26px; color: var(--mm-brand-600); margin-bottom: var(--mm-s-2); }
.al-choice.is-selected { border-color: var(--mm-brand-500); background: var(--mm-brand-50); }
.al-choice span { color: var(--mm-text-secondary); font-size: var(--mm-text-sm); margin-top: 2px; display: block; }
.al-choice:hover { border-color: var(--mm-brand-300); }
.al-choice-grid--freq { grid-template-columns: repeat(2, 1fr); }
.al-choice-grid--freq .al-choice { text-align: center; }

/* price reveal */
/* price reveal — a receipt-like block, serif label, count-up number */
.al-receipt {
  margin-top: var(--mm-s-5);
  padding: var(--mm-s-5) var(--mm-s-4);
  border-radius: var(--mm-r-xl);
  background: var(--mm-brand-50);
  text-align: center;
}
.al-receipt__label {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--mm-text-lg);
  color: var(--mm-text-secondary);
}
.al-receipt__label em { font-style: italic; color: var(--mm-brand-600); }
.al-receipt__row { display: flex; align-items: baseline; justify-content: center; gap: var(--mm-s-3); flex-wrap: wrap; }
.al-price-original {
  font-size: var(--mm-text-lg);
  color: var(--mm-text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--mm-brand-400);
}
.al-price-original:empty { display: none; }
.al-price {
  font-size: clamp(48px, 12vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-top: var(--mm-s-2);
  color: var(--mm-text-primary);
  font-variant-numeric: tabular-nums;
}
.al-receipt__save {
  margin-top: var(--mm-s-2);
  font-size: var(--mm-text-sm);
  font-weight: 700;
  color: var(--mm-brand-700);
}
.al-receipt__save:empty { display: none; }
.al-price__meta { color: var(--mm-text-muted); font-size: var(--mm-text-sm); margin-top: var(--mm-s-2); }
.al-nav { display: flex; justify-content: space-between; margin-bottom: var(--mm-s-3); }
.al-back {
  display: inline-flex;
  align-items: center;
  gap: var(--mm-s-1);
  border: none;
  background: none;
  font: inherit;
  font-size: var(--mm-text-sm);
  font-weight: 600;
  color: var(--mm-text-muted);
  cursor: pointer;
  padding: var(--mm-s-1) 0;
}
.al-back .al-ico { width: 16px; height: 16px; color: currentColor; }
.al-back:hover { color: var(--mm-brand-600); }
.al-summary-wrap { margin-top: var(--mm-s-6); }
.al-summary-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--mm-text-2xs);
  font-weight: 700;
  color: var(--mm-text-muted);
  margin: 0 0 var(--mm-s-2) var(--mm-s-1);
}
.al-summary {
  margin: 0;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-r-lg);
  background: var(--mm-surface);
  overflow: hidden;
}
.al-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--mm-s-4);
  padding: var(--mm-s-3) var(--mm-s-4);
  border-bottom: 1px solid var(--mm-border-soft);
}
.al-summary > div:last-child { border-bottom: none; }
.al-summary dt {
  display: flex;
  align-items: center;
  gap: var(--mm-s-2);
  margin: 0;
  color: var(--mm-text-secondary);
  font-size: var(--mm-text-sm);
}
.al-summary dt .al-summary__icon { display: inline-flex; color: var(--mm-brand-600); }
.al-summary dt .al-summary__icon svg { width: 18px; height: 18px; }
.al-summary dd {
  margin: 0;
  font-weight: 700;
  font-size: var(--mm-text-sm);
  color: var(--mm-text-primary);
  text-align: right;
}
.al-card__title--form { margin-top: var(--mm-s-6); }
.al-hint {
  text-align: center;
  color: var(--mm-text-muted);
  font-size: var(--mm-text-sm);
  margin-top: var(--mm-s-2);
}

/* ── Form ────────────────────────────────────────────────────── */
#al-lead-form { margin-top: var(--mm-s-5); }
.al-field { margin-bottom: var(--mm-s-4); }
.al-field label {
  display: block;
  font-size: var(--mm-text-sm);
  font-weight: 700;
  margin-bottom: var(--mm-s-1);
}
.al-field label em { font-style: normal; color: var(--mm-text-muted); font-weight: 400; }
.al-field input {
  width: 100%;
  font: inherit;
  font-size: var(--mm-text-lg);
  padding: var(--mm-s-4);
  border: 1.5px solid var(--mm-border);
  border-radius: var(--mm-r-md);
  background: var(--mm-surface);
  color: var(--mm-text-primary);
}
.al-field input::placeholder { color: var(--mm-text-placeholder); }
.al-field input:focus { border-color: var(--mm-brand-400); }

.al-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--mm-s-2);
  margin: var(--mm-s-2) 0 var(--mm-s-5);
  font-size: var(--mm-text-xs);
  color: var(--mm-text-muted);
  cursor: pointer;
}
.al-consent input { margin-top: 3px; flex: none; }

.al-submit {
  width: 100%;
  border: none;
  border-radius: var(--mm-r-pill);
  background: var(--mm-brand-500);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: var(--mm-text-lg);
  padding: var(--mm-s-4);
  cursor: pointer;
  box-shadow: var(--mm-shadow-brand);
  transition: background 0.15s, transform 0.1s;
}
.al-submit:hover { background: var(--mm-brand-600); transform: translateY(-1px); }
.al-submit:disabled {
  background: var(--mm-border);
  color: var(--mm-text-muted);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.al-error {
  margin-top: var(--mm-s-3);
  padding: var(--mm-s-3);
  border-radius: var(--mm-r-md);
  background: var(--mm-danger-50);
  color: var(--mm-danger-600);
  font-size: var(--mm-text-sm);
  text-align: center;
}

/* ── Footer ──────────────────────────────────────────────────── */


/* ── Why / Services: real-site copy + photos ─────────────────── */
.why__split { display: grid; gap: var(--mm-s-5); align-items: center; }
.why__photo { width: 100%; aspect-ratio: 1; border-radius: var(--mm-r-xl); box-shadow: var(--mm-shadow-xs); object-fit: cover; }
@media (min-width: 768px) {
  .why__split { grid-template-columns: 3fr 2fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Our work: editorial one-at-a-time carousel ───────────────── */
/* Deliberately dark in both themes — a single lit room on a charcoal
   stage reads as a gallery, not a grid. Fixed colors, not tokens. */
.work {
  --wk-bg: #141416;
  --wk-ink: #f4f2ee;
  --wk-mute: rgba(244, 242, 238, 0.58);
  --wk-line: rgba(244, 242, 238, 0.18);
  --work-hold: 5000ms;
  background: var(--wk-bg);
  color: var(--wk-ink);
  padding: var(--mm-s-8) 0 var(--mm-s-6);
  outline: none;
  user-select: none;
}
.work:focus-visible { box-shadow: inset 0 0 0 2px var(--mm-brand-500); }
.work__grid { display: grid; gap: var(--mm-s-6); }
.work__copy { display: flex; flex-direction: column; justify-content: center; order: 2; }
.work__count {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: var(--mm-text-sm);
  color: var(--wk-mute);
  letter-spacing: 0.08em;
}
.work__count::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--wk-line); vertical-align: middle; margin-right: var(--mm-s-3); }
.work__title { color: var(--wk-ink); margin: var(--mm-s-3) 0 var(--mm-s-2); font-size: clamp(30px, 3.8vw, 44px); }
.work__eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: var(--mm-text-2xs); font-weight: 700; color: var(--mm-brand-400); }
.work__note { margin-top: var(--mm-s-4); max-width: 38ch; color: var(--wk-mute); font-size: var(--mm-text-md); line-height: 1.6; min-height: 3.2em; }
.work__nav { display: flex; gap: var(--mm-s-2); margin-top: var(--mm-s-6); }
.work__btn {
  width: 44px; height: 44px;
  border: 1px solid var(--wk-line);
  border-radius: 50%;
  background: transparent;
  color: var(--wk-ink);
  font: inherit; font-size: var(--mm-text-lg);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.work__btn:hover { background: rgba(244, 242, 238, 0.08); border-color: var(--wk-ink); }

/* stage: stacked slides, only .is-active visible; the active one drifts */
.work__stage {
  position: relative;
  order: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}
.work__stage img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.9s ease, transform 0s linear 0.9s;
}
.work__stage img.is-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.9s ease, transform 7s linear;
  z-index: 1;
}
/* frame corners, offset from the photo like a mounted print */
.work__stage::before, .work__stage::after {
  content: "";
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--wk-ink);
  z-index: 2;
  pointer-events: none;
}
.work__stage::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.work__stage::after  { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* progress bars — one per slide, active fills over the hold time */
.work__bars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--mm-s-2);
  margin: var(--mm-s-7) auto 0;
  padding: 0 var(--mm-s-4);
}
.work__bars button {
  display: block; width: 100%;
  padding: var(--mm-s-3) 0 0;
  border: 0; border-top: 1px solid var(--wk-line);
  background: none; color: var(--wk-mute);
  font: inherit; font-size: var(--mm-text-2xs); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; text-align: left;
  cursor: pointer; position: relative;
  transition: color 0.3s;
}
.work__bars button span { display: none; white-space: nowrap; }
.work__bars button.is-active span { display: block; }
.work__bars button::before {
  content: ""; position: absolute; left: 0; top: -1px; height: 1px; width: 0;
  background: var(--mm-brand-500);
}
.work__bars button.is-done::before { width: 100%; background: var(--wk-ink); }
.work__bars button.is-active { color: var(--wk-ink); }
.work__bars button.is-active::before { animation: work-fill var(--work-hold) linear forwards; }
.work.is-paused .work__bars button.is-active::before { animation-play-state: paused; }
@keyframes work-fill { from { width: 0; } to { width: 100%; } }

@media (min-width: 768px) {
  .work { padding: var(--mm-s-9, 96px) 0 var(--mm-s-7); }
  .work__grid { grid-template-columns: 1fr 1.05fr; gap: var(--mm-s-8); align-items: center; }
  .work__copy { order: 1; }
  .work__stage { order: 2; aspect-ratio: 4 / 5; max-height: 640px; }
}
@media (prefers-reduced-motion: reduce) {
  .work__stage img, .work__stage img.is-active { transition: opacity 0.3s; transform: none; }
  .work__bars button.is-active::before { animation: none; width: 100%; }
}

/* ── Quieter surfaces ────────────────────────────────────────── */
.al-capture { background: var(--mm-bg-app); }

.al-eyebrow--left { text-align: left; }
.al-header .al-shell, .al-footer .al-shell { max-width: 1120px; }

/* ── Funnel: progress rail, line icons, done mark ─────────────── */
.al-ico, .al-summary svg {
  fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.al-ico { width: 18px; height: 18px; color: var(--mm-brand-600); }
.al-rail { display: flex; align-items: center; gap: var(--mm-s-3); }
.al-rail__segs { display: flex; gap: 4px; flex: 1; }
.al-rail__segs i { display: block; flex: 1; height: 2px; background: var(--mm-border); border-radius: 1px; }
.al-rail__segs i.is-done { background: var(--mm-text-primary); }
.al-rail__segs i.is-active { background: var(--mm-brand-500); }
.al-rail__label {
  flex: none;
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: var(--mm-text-2xs); font-weight: 700; color: var(--mm-brand-600);
}
.al-rail + .al-card__title { margin-top: var(--mm-s-5); }
.al-done__mark {
  display: grid; place-items: center;
  width: 56px; height: 56px; margin: 0 auto var(--mm-s-4);
  border-radius: 50%; background: var(--mm-brand-50); color: var(--mm-brand-600);
}
.al-done__mark .al-ico { width: 26px; height: 26px; }
@media (min-width: 768px) {
  .al-shell { max-width: 720px; }
  .al-card { padding: var(--mm-s-7) var(--mm-s-7); }
  .al-choice-grid { grid-template-columns: repeat(2, 1fr); }
  .al-choice-grid--freq { grid-template-columns: repeat(3, 1fr); }
}

/* ── What we clean: editorial cards ─────────────────────────── */
.services { background: var(--mm-surface); }
.svc-grid { display: grid; gap: var(--mm-s-6); }
.svc__media {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--mm-r-xl); aspect-ratio: 4 / 3; color: #fff; text-decoration: none;
}
.svc__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--mm-ease-out);
}
.svc__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0) 55%);
}
.svc__media h3 {
  position: absolute; left: var(--mm-s-5); right: var(--mm-s-5); bottom: var(--mm-s-4); z-index: 1;
  margin: 0; font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: var(--mm-text-2xl);
  letter-spacing: -0.01em; font-variation-settings: 'opsz' 72;
}
.svc:hover .svc__media img { transform: scale(1.04); }
.svc__lead { margin-top: var(--mm-s-4); color: var(--mm-text-secondary); font-size: var(--mm-text-md); line-height: 1.55; }
.svc__list {
  list-style: none; padding: 0; margin: var(--mm-s-4) 0 0;
  border-top: 1px solid var(--mm-border-soft);
}
.svc__list li {
  padding: var(--mm-s-2) 0; border-bottom: 1px solid var(--mm-border-soft);
  font-size: var(--mm-text-sm); color: var(--mm-text-primary);
  display: flex; gap: var(--mm-s-3); align-items: baseline;
}
.svc__list li::before {
  content: ""; flex: none; width: 7px; height: 7px; border-radius: 50% 50% 50% 0;
  background: var(--mm-brand-500); transform: translateY(-1px);
}
.svc__cta {
  display: inline-flex; align-items: center; gap: var(--mm-s-2);
  margin-top: var(--mm-s-4); color: var(--mm-brand-600); font-weight: 700; font-size: var(--mm-text-sm);
  text-decoration: none;
}
.svc__cta span { transition: transform 0.2s; }
.svc__cta:hover span { transform: translateX(3px); }

/* ── Service area: copy + map ────────────────────────────────── */
.area { background: var(--mm-bg-app); text-align: left; padding: var(--mm-s-8) 0; }
.area__grid { display: grid; gap: var(--mm-s-6); align-items: center; }
.area .sec-title { margin: var(--mm-s-3) 0 var(--mm-s-4); }
.area__lead { color: var(--mm-text-secondary); font-size: var(--mm-text-md); line-height: 1.6; max-width: 46ch; }
.area__lead a { color: var(--mm-brand-600); font-weight: 600; }
.area__cities {
  list-style: none; padding: 0; margin: var(--mm-s-5) 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 var(--mm-s-4);
  font-family: 'Fraunces', Georgia, serif; font-size: var(--mm-text-sm); font-variation-settings: 'opsz' 72;
}
.area__cities li { padding: 6px 0; border-bottom: 1px solid var(--mm-border); white-space: nowrap; }
.area__map {
  height: 420px; border-radius: var(--mm-r-2xl); overflow: hidden;
  border: 1px solid var(--mm-border-soft); background: var(--mm-surface);
}
.area__map .leaflet-tile-pane { filter: grayscale(1) contrast(0.9) brightness(1.06); }
.area__map .leaflet-color-pane { z-index: 250; }
/* city polygons: presentation attrs from Leaflet lose to these classes,
   so fill/stroke/lift all transition in CSS */
path.area-city {
  fill: #fff; fill-opacity: 0; stroke: none;
  transform-box: fill-box; transform-origin: center;
  transition: fill-opacity 0.25s, stroke 0.25s, transform 0.3s var(--mm-ease-out), filter 0.3s;
  cursor: pointer;
}
path.area-city.is-hot {
  fill-opacity: 0.22; stroke: #fff; stroke-width: 2;
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0 10px 14px rgba(20, 48, 74, 0.45));
}
.area-tip {
  background: #14304a; color: #fff; border: 0; border-radius: var(--mm-r-md);
  padding: 6px 12px; box-shadow: 0 6px 18px rgba(20, 48, 74, 0.3);
  font: 500 15px/1.2 'Fraunces', Georgia, serif; letter-spacing: 0.01em;
}
.area-tip::before { border-top-color: #14304a; }
.area__cities li { transition: color 0.15s, border-color 0.15s; cursor: default; }
.area__cities li.is-hot { color: #1f5f9c; border-color: #1f5f9c; }
.leaflet-container { font: inherit; }
.leaflet-control-attribution { font-size: 9px; opacity: 0.7; }

/* ── Footer: dark close ──────────────────────────────────────── */
.al-footer { background: #141416; color: rgba(244,242,238,0.72); padding: var(--mm-s-8) 0 var(--mm-s-5); }
.al-footer__grid { display: grid; gap: var(--mm-s-6); }
.al-footer__brand img { display: block; height: 44px; width: auto; }
.al-footer__brand p { margin-top: var(--mm-s-4); max-width: 34ch; font-size: var(--mm-text-sm); line-height: 1.6; }
.al-footer__h {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: var(--mm-text-2xs); font-weight: 700;
  color: var(--mm-brand-400); margin-bottom: var(--mm-s-3);
}
.al-footer__grid a { display: block; color: #f4f2ee; text-decoration: none; font-size: var(--mm-text-md); padding: var(--mm-s-1) 0; }
.al-footer__grid a:hover { color: var(--mm-brand-400); }
.al-footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--mm-s-2) var(--mm-s-5);
  margin-top: var(--mm-s-7); padding-top: var(--mm-s-4);
  border-top: 1px solid rgba(244,242,238,0.14);
  font-size: var(--mm-text-xs); color: rgba(244,242,238,0.5);
}
@media (min-width: 768px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); gap: var(--mm-s-5); }
  .area__grid { grid-template-columns: 1fr 1.15fr; gap: var(--mm-s-8); }
  .area__cities { grid-template-columns: repeat(3, 1fr); }
  .area__map { height: 640px; }
  .al-footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

/* market comparison inside the receipt */
.al-compare { margin-top: var(--mm-s-5); padding-top: var(--mm-s-4); border-top: 1px solid color-mix(in srgb, var(--mm-brand-500) 18%, transparent); }
.al-compare__bar { position: relative; height: 6px; border-radius: 3px; background: color-mix(in srgb, var(--mm-brand-500) 12%, transparent); }
.al-compare__band { position: absolute; top: 0; height: 100%; border-radius: 3px; background: color-mix(in srgb, var(--mm-text-muted) 45%, transparent); }
.al-compare__you {
  position: absolute; top: 50%; width: 14px; height: 14px; border-radius: 50%;
  background: var(--mm-brand-500); border: 2px solid #fff; box-shadow: var(--mm-shadow-brand);
  transform: translate(-50%, -50%);
}
.al-compare__txt { margin-top: var(--mm-s-3); font-size: var(--mm-text-sm); color: var(--mm-text-secondary); }
.al-compare__txt strong { color: var(--mm-text-primary); }
.al-compare__src { margin-top: var(--mm-s-1); font-size: var(--mm-text-2xs); color: var(--mm-text-muted); }
