/* ==========================================================================
   WISE PLUMBING — DESIGN SYSTEM
   Tokens, layout primitives (container/grid/flex), and components.
   Spacing scale is strictly 4px-based. Section rhythm is consistent site-wide.
   ========================================================================== */

:root {
  /* Color tokens */
  --navy-900: #0b2e4e;
  --navy-800: #123a5e;
  --navy-700: #1a4a75;
  --blue-500: #2f9be8;
  --blue-100: #e6f4fd;
  --orange-500: #f47920;
  --orange-600: #d9640f;
  --white: #ffffff;
  --gray-050: #f7f9fb;
  --gray-100: #eef1f4;
  --gray-300: #cbd3da;
  --gray-600: #5b6572;
  --gray-900: #1c232c;

  /* Type */
  --font-heading: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-accent: "Caveat", cursive;

  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.5rem;

  /* Spacing scale (4px base) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* Layout */
  --container-max: 1280px;
  --container-pad: 24px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-card: 0 4px 20px rgba(11, 46, 78, 0.08);
  --shadow-card-hover: 0 12px 32px rgba(11, 46, 78, 0.14);

  --section-pad-y: var(--sp-16);
}

@media (max-width: 768px) {
  :root {
    --container-pad: 16px;
    --section-pad-y: var(--sp-12);
    --fs-4xl: 2.25rem;
    --fs-3xl: 1.875rem;
    --fs-2xl: 1.5rem;
  }
}

/* ---------------------------------- Reset -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/* Flex/grid items default to min-width:auto, which refuses to shrink below the
   content's natural width (e.g. a <select>'s longest option) and overflows the
   page instead of wrapping. Force every direct grid/flex child to be shrinkable. */
.grid > *, .flex > *, .booking-layout > *, .hero-cta > *,
.topbar .container > *, .site-header .container > *, .header-cta > *,
.about-grid > *, .footer-grid > *, .promo-banner, .promo-banner > *,
.hero-stats > *, .about-stats > *, .info-block > *, .reviews-grid > *,
.form-row > * { min-width: 0; }

.form-group select, .form-group input, .form-group textarea { width: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; line-height: 1.15; font-weight: 700; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

/* ------------------------------- Layout primitives ----------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-pad-y); }
.section--alt { background: var(--gray-050); }
.section--navy { background: var(--navy-900); color: var(--white); }
.section--navy .eyebrow { color: var(--blue-500); }

.flex { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }

.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.grid-autofit { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  /* Icon/feature card grids (Services, Why Choose Us) stay 2 columns on
     tablet+mobile instead of collapsing to one long single-column scroll —
     matches Choice, which never drops these below 2-across. */
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}
/* Offer/pricing cards are tall and dense (list + price + button) — they go
   single column earlier than the icon-card grids above. Everything else
   (Services, Why Choose Us) stays 2 columns at every phone width. */
@media (max-width: 1024px) {
  #offers .grid-3 { grid-template-columns: 1fr; }
}

/* ------------------------------- Type helpers ----------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: var(--sp-3);
}
.section-heading { font-size: var(--fs-3xl); margin-bottom: var(--sp-3); }
.section-sub { font-size: var(--fs-lg); color: var(--gray-600); max-width: 640px; }
.section--navy .section-sub { color: var(--blue-100); }
.section-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: var(--sp-8); }
.accent-script { font-family: var(--font-accent); font-size: var(--fs-2xl); color: var(--navy-900); }
.section--navy .accent-script { color: var(--white); }

/* --------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  height: 48px;
  padding-inline: var(--sp-6);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--fs-base);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange-500); color: var(--white); box-shadow: 0 6px 16px rgba(244, 121, 32, 0.35); }
.btn-primary:hover { background: var(--orange-600); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); }
.btn-block { width: 100%; }

/* --------------------------------- Header --------------------------------- */
.topbar {
  background: var(--navy-900);
  color: var(--blue-100);
  font-size: var(--fs-sm);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 40px; padding-block: var(--sp-2); gap: var(--sp-4); flex-wrap: wrap; }
.topbar-badge { color: var(--orange-500); font-weight: 700; }
.topbar-links { display: flex; gap: var(--sp-6); flex-shrink: 0; }
.topbar-links a:hover { color: var(--white); }

@media (max-width: 768px) {
  .topbar-badge { font-size: 12px; }
  .topbar-links { display: none; }
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: var(--sp-4); }
.brand { display: flex; align-items: center; gap: var(--sp-3); min-width: 0; }
.brand img { height: 52px; width: auto; border-radius: var(--radius-sm); flex-shrink: 0; }
.brand-name { font-family: var(--font-heading); font-weight: 800; font-size: var(--fs-xl); color: var(--navy-900); line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.brand-name span { color: var(--orange-500); display: block; font-size: var(--fs-sm); font-weight: 700; letter-spacing: 0.04em; }

@media (max-width: 640px) {
  .site-header .container { height: 68px; }
  .brand img { height: 40px; }
  .brand-name { font-size: var(--fs-base); }
  .brand-name span { display: none; }
}

.main-nav { display: flex; align-items: center; gap: var(--sp-8); }
.nav-links { display: flex; align-items: center; gap: var(--sp-6); font-weight: 600; font-size: var(--fs-sm); }
.nav-links a { padding-block: var(--sp-2); position: relative; }
.nav-links a:hover { color: var(--orange-500); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 320px;
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-card-hover);
  padding: var(--sp-4); display: none; grid-template-columns: 1fr 1fr; gap: var(--sp-2);
  border: 1px solid var(--gray-100);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: grid; }
.dropdown a { display: block; padding: var(--sp-2) var(--sp-3); border-radius: var(--radius-sm); font-weight: 500; }
.dropdown a:hover { background: var(--gray-050); }
.header-cta { display: flex; align-items: center; gap: var(--sp-4); flex-shrink: 0; }
.header-phone { font-weight: 800; font-size: var(--fs-lg); color: var(--navy-900); }
.header-phone small { display: block; font-size: 11px; font-weight: 600; color: var(--gray-600); }
.nav-toggle { display: none; background: none; border: none; padding: var(--sp-2); flex-shrink: 0; }

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; align-items: center; }
}
@media (max-width: 640px) {
  .header-phone { display: none; }
  .header-cta .btn { height: 40px; padding-inline: var(--sp-4); font-size: var(--fs-sm); }
}
@media (max-width: 360px) {
  .header-cta .btn { padding-inline: var(--sp-3); font-size: 12px; }
  .header-cta { gap: var(--sp-2); }
}

/* Wave divider — the section above shows through as the divider's own background;
   the path is filled with the color of the section below, so the two appear to
   flow into each other. Matches the wave graphic used on Wise's print/flyer assets. */
.wave-divider { display: block; width: 100%; height: 56px; }
.wave-divider--hero { background: var(--navy-900); }
.wave-divider--hero path { fill: var(--white); }
.wave-divider--emergency { background: var(--navy-900); }
.wave-divider--emergency path { fill: var(--gray-050); }
.wave-divider--footer { background: var(--gray-050); }
.wave-divider--footer path { fill: var(--navy-900); }
@media (max-width: 640px) { .wave-divider { height: 32px; } }

/* --------------------------------- Hero ------------------------------------ */
.hero { background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%); color: var(--white); overflow: hidden; position: relative; }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-12); align-items: center; padding-block: var(--sp-16); }
.hero-badge { display: inline-flex; align-items: center; gap: var(--sp-2); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); padding: var(--sp-2) var(--sp-4); border-radius: 999px; font-size: var(--fs-sm); font-weight: 700; margin-bottom: var(--sp-6); }
.hero h1 { font-size: var(--fs-4xl); margin-bottom: var(--sp-4); }
.hero h1 .hero-accent { color: var(--orange-500); }
.hero p.lead { font-size: var(--fs-lg); color: var(--blue-100); max-width: 520px; margin-bottom: var(--sp-8); }
.hero-cta { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-8); }
.hero-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-3); }
.hero-stat {
  text-align: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-2);
}
.hero-stat strong { display: block; font-size: var(--fs-lg); font-family: var(--font-heading); color: var(--orange-500); }
.hero-stat span { font-size: 10.5px; color: var(--blue-100); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.hero-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card-hover); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero-media-badge { position: absolute; bottom: var(--sp-6); left: var(--sp-6); right: var(--sp-6); background: rgba(11,46,78,0.85); backdrop-filter: blur(6px); border-radius: var(--radius-md); padding: var(--sp-4); display: flex; align-items: center; gap: var(--sp-3); }

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; padding-block: var(--sp-12); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------------------- Reviews mini-strip ---------------------------- */
.reviews-strip { background: var(--white); border-bottom: 1px solid var(--gray-100); padding-block: var(--sp-8); }
.reviews-strip-head { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-6); flex-wrap: wrap; }
.rating-badge { display: flex; align-items: center; gap: var(--sp-2); font-weight: 800; font-size: var(--fs-lg); color: var(--navy-900); }
.rating-badge .stars { color: #fbbc04; letter-spacing: 2px; }
.google-g { flex-shrink: 0; }
.rating-count { font-weight: 600; color: var(--gray-600); font-size: var(--fs-sm); }

.review-track { display: flex; gap: var(--sp-4); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--sp-2); }
.review-card { flex: 0 0 300px; scroll-snap-align: start; background: var(--gray-050); border-radius: var(--radius-md); padding: var(--sp-6); border: 1px solid var(--gray-100); }
.review-card .stars { color: #fbbc04; margin-bottom: var(--sp-3); letter-spacing: 2px; display: block; }
.review-card p { color: var(--gray-600); margin-bottom: var(--sp-4); font-size: var(--fs-sm); }
.review-who { display: flex; align-items: center; gap: var(--sp-3); }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 13px; flex-shrink: 0; }
.review-avatar.c1 { background: var(--orange-500); }
.review-avatar.c2 { background: var(--blue-500); }
.review-avatar.c3 { background: var(--navy-900); }
.review-name { font-weight: 700; font-size: var(--fs-sm); }
.review-loc { color: var(--gray-600); font-size: 12px; }

/* ------------------------------ Trust bar ----------------------------------- */
.trust-bar { background: var(--white); border-top: 3px solid var(--orange-500); border-bottom: 3px solid var(--orange-500); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: var(--sp-12); }
.trust-item { display: flex; align-items: center; gap: var(--sp-4); padding: var(--sp-4) var(--sp-2); border-bottom: 1px solid var(--gray-100); min-width: 0; }
.trust-grid .trust-item:nth-last-child(-n+2) { border-bottom: none; }
.trust-icon { font-size: 22px; width: 32px; text-align: center; flex-shrink: 0; }
.trust-item strong { display: block; font-family: var(--font-heading); font-size: var(--fs-lg); color: var(--orange-500); line-height: 1.3; }
.trust-item span { font-size: 12px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.03em; font-weight: 700; }

/* Stays 2 columns at every width — matches Choice, never collapses to a single
   stacked column. Only the spacing/type shrink on narrow screens. */
@media (max-width: 640px) {
  .trust-grid { column-gap: var(--sp-3); }
  .trust-item { gap: var(--sp-2); padding: var(--sp-3) 0; }
  .trust-icon { font-size: 18px; width: 24px; }
  .trust-item strong { font-size: var(--fs-base); }
  .trust-item span { font-size: 10px; }
  .trust-item .placeholder-tag { display: none; }
}

/* ------------------------------ Arrival banner ------------------------------ */
/* 3-across horizontal strip: badge | headline | CTA. flex-wrap + min-width:0 on
   the headline means it wraps to a second line (or stacks under 640px) instead
   of ever getting clipped — the exact failure mode in the reference banner. */
.arrival-banner {
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.08) 0 14px, transparent 14px 28px),
    linear-gradient(120deg, var(--orange-600), var(--orange-500));
  border-bottom: 3px solid var(--navy-900);
  overflow: hidden;
  position: relative;
  padding-bottom: 18px; /* room for the dot indicators */
}
/* Slides stack in the same grid cell; only the active one is visible/laid out.
   Scoped under .arrival-banner (2-class specificity) so it reliably beats the
   single-class .arrival-banner-inner{display:flex} rule regardless of source order.
   Instant swap, no fade — avoids any opacity/animation timing edge cases. */
.arrival-banner .promo-slide { display: none; }
.arrival-banner .promo-slide.is-active { display: flex; }

.promo-dots {
  position: absolute; left: 0; right: 0; bottom: 6px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.promo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: none; padding: 0; cursor: pointer;
}
.promo-dot.is-active { background: var(--navy-900); width: 18px; border-radius: 4px; }
/* flex-wrap: nowrap is intentional — badge, headline, and CTA stay in ONE row
   at every width, always 3 columns side by side. The headline's own text still
   wraps onto multiple lines inside its column (that's the anti-clip fix); the
   row itself never breaks into a vertical stack. */
.arrival-banner-inner { display: flex; align-items: center; gap: clamp(8px, 2vw, 24px); padding-block: var(--sp-3); flex-wrap: nowrap; }
.arrival-badge {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy-900); color: var(--white);
  font-family: var(--font-heading); font-weight: 800; font-size: clamp(10px, 2.6vw, 15px);
  text-transform: uppercase; letter-spacing: 0.02em;
  padding: clamp(8px, 2vw, 12px) clamp(10px, 3vw, 22px); border-radius: 6px; white-space: nowrap;
}
.arrival-headline {
  flex: 1 1 auto; min-width: 0;
  color: var(--white); font-family: var(--font-heading); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.01em;
  font-size: clamp(13px, 3.2vw, 1.5rem); line-height: 1.2; margin: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
  text-align: center;
}
.arrival-cta {
  flex-shrink: 0;
  background: var(--navy-900); border-radius: 6px;
  text-transform: uppercase; letter-spacing: 0.02em; font-size: clamp(10px, 2.6vw, 14px);
  padding-inline: clamp(12px, 3vw, 32px);
  height: auto; padding-block: clamp(8px, 2vw, 12px);
}
.arrival-cta:hover { background: #061f38; }

/* ------------------------------ Emergency CTA ------------------------------ */
.emergency-cta { background: var(--navy-900); color: var(--white); text-align: center; }
.emergency-cta h2 { font-size: var(--fs-2xl); margin-bottom: var(--sp-4); }
.emergency-cta .phone-link { font-size: var(--fs-3xl); font-weight: 800; color: var(--orange-500); display: inline-flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-3); }
.emergency-cta .sub { color: var(--blue-100); }

/* --------------------------------- Cards ------------------------------------ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }

/* Offer cards — styled like an actual coupon, not a generic card */
.offer-card {
  position: relative;
  text-align: left;
  border: 2px dashed var(--orange-500);
  background: var(--white);
}
.offer-card::before,
.offer-card::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 22px;
  background: var(--gray-050);
  border: 2px dashed var(--orange-500);
  border-radius: 50%;
}
.offer-card::before { top: -12px; }
.offer-card::after { bottom: -12px; }
.clip-save { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--orange-600); margin-bottom: var(--sp-3); }
.offer-tag { position: absolute; top: var(--sp-6); right: var(--sp-6); background: var(--orange-500); color: var(--white); font-size: 11px; font-weight: 800; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; box-shadow: 0 4px 10px rgba(244,121,32,0.4); }
.offer-card h3 { font-size: var(--fs-xl); margin: var(--sp-4) 0 var(--sp-2); color: var(--navy-900); }
.offer-card .price { font-family: var(--font-heading); font-size: var(--fs-3xl); color: var(--orange-500); font-weight: 800; margin: var(--sp-4) 0; }
.offer-card .price small { font-size: var(--fs-base); color: var(--gray-600); font-weight: 500; display: block; }
.offer-list { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.offer-list li { display: flex; gap: var(--sp-2); align-items: flex-start; font-size: var(--fs-sm); color: var(--gray-600); }
.offer-list li::before { content: "✔"; color: var(--orange-500); font-weight: 800; }
.offer-disclaimer { font-size: 11px; color: var(--gray-300); margin-top: var(--sp-3); }

/* Service cards */
.service-card { text-align: left; padding: var(--sp-4); }
.service-icon {
  display: block; height: 84px; width: auto; max-width: 100%;
  object-fit: contain;
  margin: 0 auto var(--sp-4);
}
.service-card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); color: var(--navy-900); }
.service-card p { color: var(--gray-600); font-size: var(--fs-sm); margin-bottom: var(--sp-4); }
.service-card .learn-more { color: var(--orange-500); font-weight: 700; font-size: var(--fs-sm); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.about-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); margin-top: var(--sp-8); padding-top: var(--sp-8); border-top: 1px solid var(--gray-100); }
.about-stats strong { display: block; font-family: var(--font-heading); font-size: var(--fs-2xl); color: var(--navy-900); }
.about-stats span { font-size: var(--fs-sm); color: var(--gray-600); }
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Why choose us — icon stacked above heading/text, centered. Matches Choice's
   card pattern and stays legible in a 2-up grid at any phone width. */
.why-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--sp-3); padding: var(--sp-6);
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-100); border-top: 3px solid var(--orange-500);
  box-shadow: var(--shadow-card);
}
.why-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; background: var(--navy-900); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 20px; }
img.why-icon { width: auto; height: 56px; background: none; border-radius: 0; object-fit: contain; }
.why-item h3 { font-size: var(--fs-base); margin-bottom: var(--sp-1); color: var(--navy-900); }
.why-item p { font-size: var(--fs-sm); color: var(--gray-600); }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--orange-500), var(--orange-600)); color: var(--white); text-align: center; }
.cta-band h2 { font-size: var(--fs-3xl); margin-bottom: var(--sp-3); }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: var(--sp-8); font-size: var(--fs-lg); }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn-outline { border-color: var(--white); }

/* Detailed reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Booking form */
.booking-section { background: var(--navy-900); color: var(--white); }
.booking-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-16); align-items: flex-start; }
.booking-form { background: var(--white); border-radius: var(--radius-lg); padding: var(--sp-6); color: var(--gray-900); box-shadow: var(--shadow-card-hover); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-bottom: var(--sp-3); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-1); margin-bottom: var(--sp-3); }
.form-group label { font-size: var(--fs-sm); font-weight: 700; color: var(--navy-900); }
.form-group input, .form-group select, .form-group textarea {
  height: 44px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); padding-inline: var(--sp-4);
  font-family: var(--font-body); font-size: var(--fs-base);
  accent-color: var(--orange-500);
}
.form-group textarea { height: 90px; padding-block: var(--sp-3); resize: vertical; }
.form-group input[type="date"] { color: var(--navy-900); }
@media (max-width: 1024px) {
  .booking-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Service areas */
/* Service area pills — matches Choice: rounded-full outline chips in a wrapping row */
.areas-list { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3); }
.areas-list li {
  list-style: none;
  border: 1.5px solid var(--orange-500); color: var(--navy-900);
  font-weight: 700; font-size: var(--fs-sm);
  padding: var(--sp-2) var(--sp-6); border-radius: 999px;
}

/* Business info — compact map + stacked key/value facts, not boxed cards */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); align-items: stretch; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; box-shadow: var(--shadow-card); }
.contact-map iframe { display: block; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg); padding: var(--sp-8);
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.contact-card h3 { font-size: var(--fs-xl); color: var(--navy-900); margin-bottom: var(--sp-4); }
.contact-facts { margin: 0 0 var(--sp-6); }
.contact-facts > div { display: flex; justify-content: space-between; gap: var(--sp-4); padding-block: var(--sp-3); border-bottom: 1px solid var(--gray-100); }
.contact-facts dt { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-600); flex-shrink: 0; }
.contact-facts dd { margin: 0; font-weight: 700; color: var(--navy-900); text-align: right; }
.contact-card .btn { margin-top: auto; }

.contact-phone-actions { display: flex; gap: var(--sp-2); }
.contact-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: var(--fs-sm);
  padding: var(--sp-2) var(--sp-4); border-radius: 999px;
  white-space: nowrap;
}
.contact-btn-call { background: var(--orange-500); color: var(--white); }
.contact-btn-call:hover { background: var(--orange-600); }
.contact-btn-text { background: var(--blue-500); color: var(--white); }
.contact-btn-text:hover { background: var(--navy-700); }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map { min-height: 260px; }
  .contact-facts > div { flex-direction: column; gap: var(--sp-1); }
  .contact-facts dd { text-align: left; }
  .contact-phone-row dd { text-align: left; }
}

/* Placeholder tag used for unverified/soft-launch data */
.placeholder-tag { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; background: var(--gray-100); color: var(--gray-600); padding: 2px 8px; border-radius: 4px; margin-left: var(--sp-2); vertical-align: middle; }
.section--navy .placeholder-tag { background: rgba(255,255,255,0.12); color: var(--blue-100); }

/* ---------------------------------- Footer ---------------------------------- */
.site-footer { background: var(--navy-900); color: var(--blue-100); padding-top: var(--sp-24); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-12); padding-bottom: var(--sp-16); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 56px; margin-bottom: var(--sp-4); }
.footer-brand p { color: var(--blue-100); font-size: var(--fs-sm); margin-bottom: var(--sp-6); max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--sp-4); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col a { font-size: var(--fs-sm); color: var(--blue-100); }
.footer-col a:hover { color: var(--white); }
.trust-badges { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.trust-badge { font-size: 11px; font-weight: 700; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); padding: var(--sp-2) var(--sp-3); border-radius: 999px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-block: var(--sp-6); font-size: 12px; color: var(--gray-300); flex-wrap: wrap; gap: var(--sp-3); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* Mobile sticky call bar */
.sticky-call { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none; }
.sticky-call a { display: flex; align-items: center; justify-content: center; gap: var(--sp-2); height: 56px; color: var(--white); font-weight: 800; font-size: var(--fs-sm); }
.sticky-call-link { flex: 2; background: var(--orange-500); }
.sticky-text-link { flex: 1; background: var(--blue-500); border-left: 2px solid rgba(255,255,255,0.25); }
@media (max-width: 1024px) { .sticky-call { display: flex; } body { padding-bottom: 56px; } }

/* Mobile nav panel */
.mobile-nav { position: fixed; inset: 0; background: var(--navy-900); z-index: 100; display: none; flex-direction: column; padding: var(--sp-6); overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--white); font-size: var(--fs-lg); font-weight: 700; padding-block: var(--sp-3); border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav-close { align-self: flex-end; background: none; border: none; color: var(--white); font-size: var(--fs-2xl); margin-bottom: var(--sp-4); }
