/* Maple Ridge Home Services — bespoke landing styles (builds on theme.css tokens) */

.icon {
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
  flex: none;
  display: inline-block;
  vertical-align: middle;
}

/* Lucide glyphs are stroke art, so they opt out of the solid-fill default. */
.icon-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Header ---------- */

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

/* The landing lockup carries a third line (.brand-sub), so the leaf grows to
   stay the height of the text beside it, as in the mockup. */
.brand-mark { height: 3.25rem; }

.brand-sub {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-ink-muted);
}

.page-landing .site-nav { gap: 0.95rem; }

.page-landing .nav-link { font-size: 0.72rem; letter-spacing: 0.07em; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-brand);
}

.header-phone .icon { width: 1.5em; height: 1.5em; }

.header-phone-lines { display: flex; flex-direction: column; line-height: 1.25; }

.header-phone-lines strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.header-phone-lines em {
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* ---------- Mobile menu ---------- */

/* Desktop shows the inline nav only: both the trigger and the drawer stay out
   of the document until the mobile media query turns them on. */
.nav-toggle,
.mobile-menu { display: none; }

.nav-toggle {
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  padding: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-brand);
  cursor: pointer;
}

.nav-toggle:hover { background: var(--color-surface-alt); }

.nav-toggle-icon { width: 24px; height: 24px; }

/* The drawer is an overlay layer under the header: absolutely positioned, so
   opening it never moves the hero or anything below it. */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 4px solid var(--color-brand);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.75rem);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transition: none; }
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding-block: 0.5rem 1.25rem;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-ink);
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu-link:hover { color: var(--color-brand); }

.mobile-menu-link.is-active { color: var(--color-brand); }

.mobile-menu-call {
  justify-content: center;
  margin-top: 1.1rem;
}

.mobile-menu-note {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-accent);
  margin-top: 0.5rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: #26497d;
  color: #ffffff;
}

/* Photo layer over the painted mountain-valley gradient (fallback layer).
   The blue grading is gone; instead the cool source frame is white-balanced —
   a warm multiply pulls the blue channel back, and brightness/saturation
   restore the punch — so the van reads white and the valley reads green. */
/* The photo ships naturally graded (sunny daylight); no tint or blend on top,
   only the fallback gradient underneath for when the image is missing. */
.hero-art {
  position: absolute;
  inset: 0;
  background:
    url("../../assets/img/maple-ridge/hero.webp") center 38% / cover no-repeat,
    linear-gradient(160deg, #b9cde8 0%, #8fb0d8 34%, #5c82b4 60%, #3d648f 100%);
}

/* Readability scrim for the copy column only — sits above the photo layer but
   below .hero-inner, and outside .hero-art so the grading never touches it. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(10, 14, 20, 0.38) 0%,
    rgba(10, 14, 20, 0.2) 32%,
    rgba(10, 14, 20, 0.04) 56%,
    rgba(10, 14, 20, 0) 74%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 6.5rem 7.5rem;
}

.hero-copy { max-width: 33rem; }

.hero-eyebrow {
  color: #dbe6f5;
  text-shadow: 0 1px 4px rgba(10, 20, 35, 0.35);
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 10px rgba(10, 20, 35, 0.35);
  margin-bottom: 0.5em;
}

.hero-sub {
  color: #e4ecf7;
  font-size: 1.08rem;
  max-width: 27rem;
  text-shadow: 0 1px 6px rgba(10, 20, 35, 0.4);
  margin-bottom: 1.75em;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-btn-ghost {
  background: #ffffff;
  color: var(--color-brand);
  border-color: #ffffff;
}

.hero-btn-ghost:hover {
  background: #e8eef8;
  border-color: #e8eef8;
}

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--color-brand-deep);
  color: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-block: 1.6rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-inline: 0.5rem;
}

.trust-item + .trust-item { border-left: 1px solid rgba(255, 255, 255, 0.18); }

/* No ring: the traced strip glyphs carry their own outline (the 24/7 mark is
   itself a circle badge), so an extra border would double it. */
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  color: #ffffff;
}

.trust-icon .icon { width: 36px; height: 36px; }

.trust-title {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
}

.trust-text {
  color: #c3d2e8;
  font-size: 0.8rem;
  margin: 0;
}

/* ---------- Services ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}

.service-card {
  text-align: center;
  padding-top: 1.6rem;
}

/* Accent bar is painted inside the card so the hairline top border stays intact. */
.service-card:hover { box-shadow: inset 0 3px 0 var(--color-accent), var(--shadow-md); }

.service-card .card-body { padding: 1rem 1.1rem 1.4rem; align-items: center; }

.service-card .card-title { font-size: 0.98rem; }

.service-card .card-text { font-size: 0.84rem; }

.service-card .card-link { font-size: 0.72rem; }

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  color: var(--color-brand);
}

.service-icon .icon { width: 44px; height: 44px; }

/* ---------- Reviews ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.45fr 1.3fr;
  gap: 1.75rem;
  align-items: center;
}

.reviews-summary .eyebrow { text-align: left; }

.reviews-title { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: 0.6rem; }

.stars {
  display: flex;
  gap: 0.14em;
  color: var(--color-star);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* lucide:star, filled to match the mockup's solid amber stars */
.stars .icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.4;
}

.stars-small { font-size: 0.92rem; margin: 0; }

.reviews-score {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  margin-bottom: 1.2rem;
}

.reviews-score strong { color: var(--color-ink); font-size: 1rem; }

.review-quote {
  margin: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2.4rem 2rem 1.6rem;
  position: relative;
}

/* Real text, not artwork: the left double quote set in the body sans. */
.review-quote-mark {
  position: absolute;
  top: 0.9rem;
  left: 1.4rem;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #1b3f7a;
}

.review-quote blockquote {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.review-quote figcaption {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-ink-muted);
}

/* Unenhanced (no JS): the reviews read as a plain stacked list. */
.review-slides { display: grid; gap: 1.4rem; }

.review-slide { margin: 0; }

/* Enhanced: every slide shares one grid cell, so the card is as tall as the
   longest review and swapping slides never shifts the layout. */
.review-quote.is-enhanced .review-slides { gap: 0; }

.review-quote.is-enhanced .review-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.review-quote.is-enhanced .review-slide.is-active {
  opacity: 1;
  visibility: visible;
}

/* Dots only steer something once the script is running. */
.review-dots { display: none; }

.review-quote.is-enhanced .review-dots {
  display: flex;
  gap: 0.4rem;
  margin-top: 1rem;
}

/* The button is the tap target and the ::before is the painted dot, so the
   target can grow on touch without the dot growing with it. */
.review-dot {
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.review-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--color-border);
  transition: background 0.3s ease;
}

.review-dot.is-active::before { background: var(--color-brand); }

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.ba-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.ba-before {
  /* dated-panel photo over the painted fallback; slight cool grade */
  background:
    url("../../assets/img/maple-ridge/before.webp") center / cover no-repeat,
    repeating-linear-gradient(115deg, rgba(20, 16, 10, 0.25) 0 6px, rgba(20, 16, 10, 0) 6px 22px),
    linear-gradient(170deg, #8a7a63 0%, #5f5142 45%, #3c332a 100%);
  filter: saturate(0.9) contrast(1.02);
}

.ba-after {
  /* new-panel photo over the painted fallback; slight cool grade */
  background:
    url("../../assets/img/maple-ridge/after.webp") center / cover no-repeat,
    repeating-linear-gradient(0deg, rgba(28, 78, 158, 0.12) 0 4px, rgba(28, 78, 158, 0) 4px 18px),
    linear-gradient(170deg, #f4f7fb 0%, #dde5ef 55%, #b9c6d6 100%);
  filter: saturate(0.9) contrast(1.02);
}

.ba-label {
  position: absolute;
  left: 0;
  bottom: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(15, 28, 48, 0.85);
  padding: 0.3rem 0.7rem;
  border-radius: 0 var(--radius-sm) 0 0;
}

.ba-label-accent { background: var(--color-brand); }

/* ---------- Service area ---------- */

.area { padding-block: var(--section-pad); }

.area-grid {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem 3rem;
  align-items: center;
}

.area-map {
  grid-row: 1 / 3;
  /* Fill the copy + badges column height; the ratio only governs the stacked
     layout, where the row height comes from the map itself. */
  align-self: stretch;
  width: 100%;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  /* pale street-map mood: light ground, river band, blue coverage blob */
  background:
    radial-gradient(closest-side at 52% 48%, rgba(28, 78, 158, 0.22) 0 62%, rgba(28, 78, 158, 0.06) 63% 78%, transparent 79%),
    linear-gradient(115deg, transparent 46%, rgba(120, 165, 205, 0.5) 47% 53%, transparent 54%),
    repeating-linear-gradient(0deg, rgba(160, 175, 190, 0.25) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(160, 175, 190, 0.25) 0 1px, transparent 1px 34px),
    linear-gradient(170deg, #eef3ec 0%, #e3ebe1 60%, #dbe5da 100%);
}

/* OpenStreetMap capture (assets/maps/map-regional.png, (c) OpenStreetMap
   contributors), graded toward the mockup's mint-green tone. */
.area-map-tile {
  position: absolute;
  inset: 0;
  background: url("../../assets/maps/map-regional.png") center / cover no-repeat;
  filter: saturate(0.3) brightness(1.12) contrast(0.9);
}

.area-map-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #a9dcb8;
  mix-blend-mode: multiply;
  opacity: 0.8;
}

/* Service-area boundary, layered over the map as its own element. */
.area-map-boundary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: rgba(24, 60, 120, 0.2);
  stroke: #1b3f7a;
  stroke-width: 2;
}

.area-map-boundary path { vector-effect: non-scaling-stroke; }

.area-map-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 37px;
  height: 37px;
  transform: translate(-50%, -50%);
}

.area-map-credit {
  position: absolute;
  right: 5px;
  bottom: 4px;
  font-size: 0.62rem;
  line-height: 1.5;
  color: #3a5068;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  padding: 0 5px;
}

.area-copy .eyebrow { text-align: left; }

.area-copy .section-title { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.area-towns {
  color: var(--color-ink-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.badge-row {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-self: start;
}

/* Mockup stacks each badge: mark on top, label lines centered beneath. */
.cred {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem 0.9rem;
}

.cred-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: #e6eefb;
  color: var(--color-brand);
}

.cred-icon .icon { width: 24px; height: 24px; }

/* Keep the star badge's label on the same baseline as the disc badges. */
.cred .stars { display: flex; align-items: center; height: 44px; }

.cred-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.35;
}

.cred-lines strong { font-size: 0.85rem; }

.cred-lines span { font-size: 0.76rem; color: var(--color-ink-muted); }

/* ---------- Emergency band ---------- */

.emergency {
  background: linear-gradient(120deg, var(--color-brand) 0%, var(--color-brand-deep) 100%);
  color: #ffffff;
}

.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-block: 2.4rem;
}

/* All three columns share one height so the band reads as a single row */
.emergency-inner > * { min-height: 3.5rem; }

.emergency-lead {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.emergency-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.emergency-icon .icon { width: 1.6em; height: 1.6em; }

.emergency-heading {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 0.15rem;
}

.emergency-text { color: #c3d2e8; font-size: 0.9rem; margin: 0; }

.emergency-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.emergency-number a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.1;
}

.emergency-number span { font-size: 0.85rem; color: #c3d2e8; }

.btn-emergency {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

.btn-emergency:hover {
  background: #b32220;
  border-color: #b32220;
}

/* ---------- Footer additions ---------- */

/* The emergency band sits directly above, so the footer needs no brand-blue
   seam of its own. */
.landing-footer { margin-top: 0; border-top: 0; }

/* One row: brand block, Services, Contact, Hours. The hours column is
   max-content so day labels and time ranges never wrap. */
.landing-footer-grid {
  grid-template-columns: 1.3fr 1fr 1.3fr auto;
  row-gap: 2.25rem;
}

.landing-footer-grid .footer-tagline { max-width: 26ch; }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #b6c3d6;
}

.footer-social a:hover { background: var(--color-brand); color: #ffffff; }

/* Contact icons hang to the left of the text so a long address or email
   keeps the line it had before the icon was added. */
.footer-link:has(.contact-icon) {
  position: relative;
  padding-left: 1.3rem;
}

.contact-icon {
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 14px;
  height: 14px;
  color: #8fa1ba;
}

.hours-table {
  border-collapse: collapse;
  font-size: 0.88rem;
  width: 100%;
  max-width: 18rem;
}

.hours-table td {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #b6c3d6;
  white-space: nowrap;
}

/* Keeps a gutter between the day label and its time range. */
.hours-table td:first-child { padding-right: 1.5rem; }

.hours-table td:last-child { text-align: right; color: #ffffff; white-space: nowrap; }

.hours-note { font-size: 0.78rem; color: #8fa1ba; margin: 0.7rem 0 0; }

/* ---------- Responsive ---------- */

/* Tablet: one column-count step down for every grid, and the header hands its
   links to the drawer. */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .landing-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr 1.4fr; }

  /* The photo pair drops to its own row, so it takes the whole row rather than
     keeping the narrow width it had as a third column. */
  .before-after { grid-column: 1 / -1; max-width: 100%; }
  .ba-photo { aspect-ratio: 3 / 2; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.1rem; }
  .trust-item + .trust-item { border-left: 0; }

  /* The map keeps its own column; only the badges drop below, which leaves the
     copy column wide enough to read and no empty strip beside the map. */
  .area-grid { grid-template-columns: minmax(0, 340px) 1fr; gap: 1.5rem 2rem; }
  .area-map { grid-row: 1; }
  .badge-row { grid-column: 1 / -1; }

  /* The band can no longer hold all three blocks on one line, so it centers
     them instead of leaving the button stranded at the left of a second row. */
  .emergency-inner { justify-content: center; text-align: center; }
  .emergency-number { align-items: center; }

  /* Seven inline links no longer fit on one row, so the header trades them for
     the drawer. Only the enhanced (JS-running) header does this, otherwise the
     links would vanish with nothing able to bring them back. */
  .page-landing .site-header.is-enhanced .site-nav { display: none; }
  .page-landing .site-header.is-enhanced .nav-toggle { display: inline-flex; }
  .page-landing .site-header.is-enhanced .mobile-menu { display: block; }

  .page-landing .site-header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

/* Phone: everything is one column, and every link becomes a touch target. */
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ba-photo { aspect-ratio: 4 / 5; }
  .area-grid { grid-template-columns: 1fr; }
  .area-map { grid-row: auto; }
  .badge-row { grid-template-columns: 1fr; }

  .emergency-inner { flex-direction: column; gap: 1.5rem; }
  .emergency-lead { flex-direction: column; text-align: center; }

  /* The stacked band no longer needs the single-row height each column held. */
  .emergency-inner > * { min-height: 0; }

  /* The number is a call link, not just a headline, so it gets a real target. */
  .emergency-number a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }

  /* Hero copy centers under its own column once the art is only a backdrop.
     Centered copy crosses the technician in the photo, so the left-to-right
     scrim that served the desktop copy column becomes an even wash instead. */
  .hero::after {
    background: linear-gradient(180deg,
      rgba(10, 14, 20, 0.52) 0%,
      rgba(10, 14, 20, 0.46) 58%,
      rgba(10, 14, 20, 0.22) 100%);
  }
  .hero-inner { padding-block: 3.75rem 4.25rem; }
  .hero-copy { max-width: 100%; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* "Learn More" is a bare text line on desktop; on touch it needs a target. */
  .service-card .card-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* A shrink-to-fit outline button reads as a stray fragment in the stacked
     service-area column, so it spans the column like the hero buttons do. */
  .area-copy .btn { display: flex; width: 100%; justify-content: center; }

  /* Two columns cannot hold the contact email; stack the footer instead. */
  .landing-footer-grid { grid-template-columns: minmax(0, 1fr); row-gap: 2.75rem; }

  /* Stacked footer links become the tap targets, so they get real height. */
  .footer-col .footer-link { padding-block: 0.62rem; }
  .footer-col .footer-link:has(.contact-icon) .contact-icon { top: calc(0.62rem + 0.3em); }

  /* The legal links sit inline beside a separator, so they need a box of their
     own before they can carry a touch-sized height. */
  .footer-bottom .footer-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* Each dot grows into a full 44px touch target while the painted dot only
     goes from 8px to 12px. */
  .review-quote.is-enhanced .review-dots {
    gap: 0.35rem;
    /* Pull back the padding the taller target adds so the first dot still
       lines up with the quote text above it. */
    margin: 0.25rem 0 -0.75rem -1rem;
  }
  .review-dot { width: 44px; height: 44px; }
  .review-dot::before { width: 12px; height: 12px; }

  /* The header keeps the brand and the drawer trigger; the number itself moves
     into the drawer, where it is a full-width call button. */
  .header-phone { display: none; }
}
