/* =========================================================================
   Fix My Water Softener — Design System
   Palette: deep indigo-navy (#16233b — clean/soft water, trust) + "resin
   gold" accent (#c8862c) — a literal detail, not a generic trade color:
   the resin beads inside a softener tank that actually do the work of
   pulling hardness out of water are amber/gold colored, so the accent is
   drawn from the product's own mechanism, the same way
   garbagedisposalrepair.us drew red from its reset button. Second
   single-service/multi-city site in this network; distinct hue family from
   every prior site (graphite+red, navy+amber x2, teal+rust, forest+brass,
   charcoal+lake-blue) — deep indigo+gold reads differently from the navy+
   amber pairs already in use because of how dark/saturated the navy runs
   and the warmer, more muted gold vs. those sites' brighter amber.

   Type: Oswald (headline — confident condensed grotesque, an industrial/
   utilitarian register fitting mechanical equipment) + Karla (body — a
   clean humanist sans). A pairing not used elsewhere in this network.

   Layout motif — genuinely different composition from garbagedisposalrepair.us,
   not just recolored:
   - CENTERED hero, no split photo (this niche has no real photo library —
     see components.py — and a generic stock-look box would read as more
     templated than no image at all). Problem-signal pills folded directly
     into the hero card instead of a separate dark ribbon section.
   - A "hardness scale" bar — soft-to-very-hard gradient track with a marker
     at this city's actual tested GPG — the signature new component, shown
     only on city pages where a real number grounds it.
   - Sharper corners throughout (4px/2px vs. that site's 12px/8px) for a
     more mechanical, less soft-rounded register.
   - Icon-badge tile media (not photos) with a TOP accent bar on cards
     instead of a left border.
   - Symptom items render as an icon+divider list, not bordered card tiles.
   - "Quick Check" callout is a solid ink-tinted panel, not a dashed border.
   ========================================================================= */

:root {
  --ink: #16233b;
  --ink-soft: #2b3b56;
  --steel: #5c6b82;
  --steel-light: #a7b3c4;
  --accent: #c8862c;
  --accent-dark: #9c6a1f;
  --accent-light: #f3dfb8;
  --paper: #ffffff;
  --white: #ffffff;
  --bg: #eef2f5;
  --bg-alt: #e3e9ee;
  --slate-text: #4c5a6d;
  --border: #d8dfe6;

  --font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 4px;
  --radius-sm: 2px;
  --shadow: 0 14px 30px -16px rgba(22, 35, 59, 0.32);
  --shadow-sm: 0 4px 14px -8px rgba(22, 35, 59, 0.2);
  --container: 1180px;
}

/* ---------------------------------------------------------------------- */
/* Reset / base                                                           */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
svg { width: 1em; height: 1em; vertical-align: -0.15em; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.16;
  margin: 0 0 14px;
  text-transform: none;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 600; }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); font-weight: 600; }
h3 { font-size: clamp(1.08rem, 1.8vw, 1.25rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 16px; color: var(--slate-text); }
.muted { color: var(--slate-text); opacity: 0.85; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 60px 0; }
.text-center { text-align: center; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--white);
  padding: 12px 18px; z-index: 999; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.96rem; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap; min-height: 48px;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--call {
  background: var(--accent); color: var(--ink); border-color: var(--accent);
  box-shadow: 0 10px 20px -10px rgba(156, 106, 31, 0.55);
}
.btn--call:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); transform: translateY(-1px); }
.btn--outline {
  background: transparent; color: var(--ink); border-color: var(--border);
}
.btn--outline:hover { background: var(--paper); border-color: var(--ink); }
.btn--lg { padding: 17px 32px; font-size: 1.04rem; min-height: 54px; }
.btn--xl { padding: 20px 38px; font-size: 1.15rem; min-height: 60px; }
.btn--sm { padding: 9px 16px; font-size: 0.82rem; min-height: 38px; }
.btn--block { width: 100%; white-space: normal; line-height: 1.3; text-align: center; }

/* Attention pulse on always-visible call CTAs */
@keyframes callPulseGlow {
  0%   { box-shadow: 0 10px 20px -10px rgba(156, 106, 31, 0.55), 0 0 0 0 rgba(200, 134, 44, 0.5); }
  70%  { box-shadow: 0 10px 20px -10px rgba(156, 106, 31, 0.55), 0 0 0 12px rgba(200, 134, 44, 0); }
  100% { box-shadow: 0 10px 20px -10px rgba(156, 106, 31, 0.55), 0 0 0 0 rgba(200, 134, 44, 0); }
}
@keyframes callPulseGlowFlat {
  0%   { box-shadow: 0 0 0 0 rgba(200, 134, 44, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(200, 134, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 134, 44, 0); }
}
.site-header__cta { animation: callPulseGlow 2.4s ease-out infinite; }
.sticky-mobile-bar__call { animation: callPulseGlowFlat 2.4s ease-out infinite; }
.site-header__cta:hover, .sticky-mobile-bar__call:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .site-header__cta, .sticky-mobile-bar__call { animation: none; }
}

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */
.site-header { background: var(--paper); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 60; }
.site-header__main { padding: 14px 24px; display: flex; align-items: center; gap: 28px; }
.site-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--ink); margin-right: auto; }
.site-nav ul { display: flex; align-items: center; gap: 26px; }
.site-nav > ul > li { position: relative; }
.site-nav > ul > li > a { font-weight: 600; font-size: 0.95rem; color: var(--ink); padding: 8px 2px; display: inline-block; }
.site-nav > ul > li.active > a, .site-nav > ul > li > a:hover { color: var(--accent-dark); }
.site-nav .dropdown {
  display: none; position: absolute; top: 100%; left: -14px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow); min-width: 220px;
  padding: 8px; margin-top: 8px;
}
.site-nav .has-dropdown:hover .dropdown, .site-nav .has-dropdown:focus-within .dropdown { display: block; }
.site-nav .dropdown li a { display: block; padding: 9px 12px; border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--ink); font-weight: 500; }
.site-nav .dropdown li a:hover { background: var(--bg); color: var(--accent-dark); }
.site-header__cta.btn--call { flex-shrink: 0; }
@media (max-width: 980px) {
  .site-nav { display: none; }
  .site-header__cta span.cta-label-full { display: none; }
}

/* ---------------------------------------------------------------------- */
/* Sticky mobile call bar                                                  */
/* ---------------------------------------------------------------------- */
.sticky-mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; }
.sticky-mobile-bar__call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: var(--ink); font-family: var(--font-head);
  font-weight: 600; font-size: 1rem; padding: 16px 12px; width: 100%;
}
.sticky-mobile-bar__call svg { width: 19px; height: 19px; }
@media (max-width: 780px) {
  .sticky-mobile-bar { display: block; }
  body { padding-bottom: 60px; }
}

/* ---------------------------------------------------------------------- */
/* Hero — centered, no photo (see header comment)                        */
/* ---------------------------------------------------------------------- */
.hero { background: var(--paper); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -140px; right: -120px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%); opacity: 0.55;
}
.hero--centered { padding: 68px 0 46px; text-align: center; }
.hero__inner { position: relative; max-width: 740px; margin: 0 auto; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--accent-dark);
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 14px;
}
.hero__eyebrow svg { width: 16px; height: 16px; }
.hero__sub { font-size: 1.08rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero__ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 24px 0 18px; }
.hero__trust-line { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.88rem; color: var(--slate-text); font-weight: 500; }
.hero__stars { display: inline-flex; gap: 2px; }
.hero__stars svg, .testimonial-card__stars svg { width: 15px; height: 15px; color: var(--accent); }
.star--dim svg { color: var(--border); }
.hero__pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 7px; background: var(--bg-alt); color: var(--ink-soft);
  border: 1px solid var(--border); border-radius: 999px; padding: 8px 15px; font-size: 0.82rem; font-weight: 600;
}
.hero__pill svg { width: 14px; height: 14px; color: var(--accent-dark); }
.hero__photo-banner {
  max-width: 900px; margin: 34px auto 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.hero__photo-banner img { width: 100%; aspect-ratio: 21/8; object-fit: cover; }
@media (max-width: 600px) { .hero--centered { padding: 48px 0 36px; } .hero__photo-banner img { aspect-ratio: 4/3; } }

/* ---------------------------------------------------------------------- */
/* Trust stat row                                                          */
/* ---------------------------------------------------------------------- */
.trust-stat-row { background: var(--ink); border-bottom: 1px solid var(--border); }
.trust-stat-row__grid { display: flex; justify-content: center; flex-wrap: wrap; }
.trust-stat-row__item { text-align: center; padding: 22px 28px; border-right: 1px solid rgba(255,255,255,0.12); }
.trust-stat-row__item:last-child { border-right: none; }
.trust-stat-row__num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--accent); }
.trust-stat-row__label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.72); margin-top: 2px; }
@media (max-width: 700px) { .trust-stat-row__item { padding: 18px 16px; } }

/* ---------------------------------------------------------------------- */
/* Mini CTA strip                                                          */
/* ---------------------------------------------------------------------- */
.mini-cta-strip { background: var(--accent-light); }
.mini-cta-strip__inner {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 24px; color: var(--ink);
}
.mini-cta-strip__inner span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; }
.mini-cta-strip__inner svg { width: 16px; height: 16px; color: var(--accent-dark); }

/* ---------------------------------------------------------------------- */
/* Section heads                                                          */
/* ---------------------------------------------------------------------- */
.section-head { max-width: 660px; margin: 0 auto 40px; text-align: center; }
.section-head--left { max-width: none; margin: 0 0 26px; text-align: left; }
.eyebrow { display: inline-block; color: var(--accent-dark); font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 10px; }

/* ---------------------------------------------------------------------- */
/* Feature list — why-choose-us checklist style                          */
/* ---------------------------------------------------------------------- */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 32px; }
.feature-list__item { display: flex; gap: 14px; align-items: flex-start; }
.feature-list__icon {
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; background: var(--accent-light); color: var(--accent-dark); flex-shrink: 0;
}
.feature-list__icon svg { width: 20px; height: 20px; }
.feature-list__item h3 { margin-bottom: 4px; font-size: 1.02rem; }
.feature-list__item p { margin: 0; font-size: 0.9rem; }
@media (max-width: 700px) { .feature-list { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Symptom list — icon + divider rows, NOT bordered cards                */
/* ---------------------------------------------------------------------- */
.symptom-list { display: flex; flex-direction: column; }
.symptom-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.symptom-item:last-child { border-bottom: none; }
.symptom-item__icon {
  display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; flex-shrink: 0;
  border-radius: var(--radius-sm); background: var(--ink); color: var(--accent);
}
.symptom-item__icon svg { width: 17px; height: 17px; }
.symptom-item h3 { font-size: 1rem; margin-bottom: 4px; }
.symptom-item p { font-size: 0.88rem; margin: 0; }

/* ---------------------------------------------------------------------- */
/* Hardness scale bar — new signature component                          */
/* ---------------------------------------------------------------------- */
.hardness-scale { max-width: 560px; margin: 30px auto 0; text-align: left; }
.hardness-scale__track {
  position: relative; height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, #bcd6ea 0%, #e8d98a 40%, #e3a25a 70%, #b5502f 100%);
}
.hardness-scale__marker { position: absolute; top: -9px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; }
.hardness-scale__marker::after {
  content: ""; width: 4px; height: 28px; background: var(--ink); border-radius: 2px; margin-top: 2px;
}
.hardness-scale__marker-value {
  background: var(--ink); color: var(--white); font-family: var(--font-head); font-weight: 600;
  font-size: 0.76rem; padding: 4px 9px; border-radius: var(--radius-sm); white-space: nowrap;
}
.hardness-scale__labels { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.74rem; color: var(--slate-text); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------------------------------------------------------------------- */
/* "Quick Check" callout — solid ink-tinted panel, not dashed border      */
/* ---------------------------------------------------------------------- */
.quick-check { background: var(--ink); border-radius: var(--radius); padding: 34px; color: var(--white); }
.quick-check__head { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.quick-check__head svg { width: 22px; height: 22px; color: var(--accent); }
.quick-check__head h2 { margin: 0; color: var(--white); }
.quick-check__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quick-check__item { border-left: 2px solid var(--accent); padding-left: 16px; }
.quick-check__item h3 { font-size: 0.98rem; margin-bottom: 6px; color: var(--white); }
.quick-check__item p { font-size: 0.88rem; margin: 0; color: rgba(255,255,255,0.75); }
@media (max-width: 900px) { .quick-check__grid { grid-template-columns: 1fr; } .quick-check { padding: 26px; } }

/* ---------------------------------------------------------------------- */
/* Tile cards — icon-badge media, TOP accent bar (not left border)       */
/* ---------------------------------------------------------------------- */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; border: 1px solid var(--border); border-top: 3px solid var(--accent);
}
.tile-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); position: relative; }
.tile-card__media img { width: 100%; height: 100%; object-fit: cover; }
.tile-card__media--icon { display: flex; align-items: center; justify-content: center; background: var(--ink); }
.tile-card__icon-badge {
  display: flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  border-radius: 50%; background: var(--accent-light); color: var(--accent-dark);
}
.tile-card__icon-badge svg { width: 28px; height: 28px; }
.tile-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.tile-card__body h3 { margin-bottom: 6px; font-size: 1.02rem; }
.tile-card__body h3 a { color: var(--ink); }
.tile-card__body h3 a:hover { color: var(--accent-dark); }
.tile-card__body p { font-size: 0.88rem; margin-bottom: 12px; flex: 1; }
.tile-card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-dark); font-weight: 700; font-family: var(--font-head); font-size: 0.83rem; margin-top: auto; }
.tile-card__link svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .tile-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .tile-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Big-stat local-authority callout (local-conditions section)           */
/* ---------------------------------------------------------------------- */
.stat-callout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 40px; align-items: center; background: var(--ink); border-radius: var(--radius); padding: 40px; color: var(--white); }
.stat-callout__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.8rem, 6vw, 4rem); color: var(--accent); line-height: 1; }
.stat-callout__num span { display: block; font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.7); margin-top: 8px; }
.stat-callout__text p { color: rgba(255,255,255,0.82); margin: 0; }
.stat-callout__text h2 { color: var(--white); }
@media (max-width: 820px) { .stat-callout { grid-template-columns: 1fr; padding: 30px; text-align: center; } }

/* ---------------------------------------------------------------------- */
/* Stat strip (About page credentials)                                    */
/* ---------------------------------------------------------------------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.stat-strip__item { text-align: center; padding: 20px 12px; background: var(--bg-alt); border-radius: var(--radius); border-top: 3px solid var(--accent); }
.stat-strip__num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--ink); }
.stat-strip__label { display: block; font-size: 0.78rem; color: var(--slate-text); margin-top: 4px; }
@media (max-width: 700px) { .stat-strip { grid-template-columns: 1fr 1fr; } }

/* ---------------------------------------------------------------------- */
/* Process list                                                            */
/* ---------------------------------------------------------------------- */
.process-list { counter-reset: step; padding: 0; }
.process-list li { list-style: none; display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.process-list li:last-child { border-bottom: none; }
.process-list li::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: var(--accent);
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem;
}
.process-list h3 { margin: 0 0 4px; font-size: 0.98rem; }
.process-list p { margin: 0; font-size: 0.88rem; }

/* ---------------------------------------------------------------------- */
/* Pricing table                                                          */
/* ---------------------------------------------------------------------- */
table.price-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.9rem; }
table.price-table th, table.price-table td { text-align: left; padding: 11px 13px; border-bottom: 1px solid var(--border); }
table.price-table th { font-family: var(--font-head); letter-spacing: 0.01em; color: var(--ink); font-weight: 700; background: var(--bg-alt); }
table.price-table td.price { font-weight: 700; color: var(--accent-dark); white-space: nowrap; }
.price-note { font-size: 0.84rem; color: var(--slate-text); margin-top: 8px; }

/* ---------------------------------------------------------------------- */
/* What's included checklist (service pages)                             */
/* ---------------------------------------------------------------------- */
.whats-included { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.whats-included li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.whats-included svg { width: 17px; height: 17px; color: var(--accent-dark); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 620px) { .whats-included { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* ZIP-code chip grid                                                     */
/* ---------------------------------------------------------------------- */
.zip-chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.zip-chip { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; text-align: center; }
.zip-chip__zip { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--accent-dark); }
.zip-chip__area { display: block; font-size: 0.78rem; color: var(--slate-text); margin-top: 3px; }
@media (max-width: 820px) { .zip-chip-grid { grid-template-columns: repeat(2, 1fr); } }

.nearby-cities-line { font-size: 0.9rem; margin-top: 16px; }
.nearby-cities-line a { color: var(--accent-dark); font-weight: 700; }

/* ---------------------------------------------------------------------- */
/* Testimonials                                                            */
/* ---------------------------------------------------------------------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow-sm); position: relative; margin: 0; border-top: 3px solid var(--accent);
}
.testimonial-card__quote-mark { color: var(--accent-light); margin-bottom: 8px; }
.testimonial-card__quote-mark svg { width: 28px; height: 28px; }
.testimonial-card__stars { margin-bottom: 10px; }
.testimonial-card blockquote { margin: 0 0 16px; font-size: 0.94rem; color: var(--ink); }
.testimonial-card figcaption { display: flex; align-items: center; gap: 12px; font-size: 0.87rem; }
.testimonial-card__avatar {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: var(--ink); color: var(--accent); font-family: var(--font-head);
  font-weight: 700; font-size: 0.78rem; flex-shrink: 0;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* CTA band                                                                */
/* ---------------------------------------------------------------------- */
.cta-band { background: var(--ink); color: var(--white); border-top: 3px solid var(--accent); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band__eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.cta-band__eyebrow svg { width: 15px; height: 15px; }
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.75); margin: 0; max-width: 480px; }
.cta-band .btn--call { flex-shrink: 0; }
@media (max-width: 700px) { .cta-band__inner { flex-direction: column; align-items: flex-start; } .cta-band .btn--call { width: 100%; justify-content: center; } }

/* ---------------------------------------------------------------------- */
/* Breadcrumbs / page hero                                                */
/* ---------------------------------------------------------------------- */
.page-hero { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 38px 0 42px; }
.page-hero h1 { color: var(--ink); margin-bottom: 8px; }
.page-hero__sub { color: var(--slate-text); margin: 0; max-width: 640px; }
.breadcrumbs { margin-bottom: 16px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 0.85rem; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--slate-text); opacity: 0.6; }
.breadcrumbs a { color: var(--slate-text); }
.breadcrumbs a:hover { color: var(--accent-dark); }
.breadcrumbs li[aria-current] { color: var(--ink); font-weight: 600; }

/* ---------------------------------------------------------------------- */
/* City page detail layout                                                */
/* ---------------------------------------------------------------------- */
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; padding-top: 44px; }
.content-grid__main > *:not(:last-child) { margin-bottom: 38px; }
.sidebar { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 18px; }
.sidebar-panel { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); border-top: 3px solid var(--accent); }
.sidebar-panel h3 { margin-bottom: 12px; }
.sidebar-panel__trust { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--slate-text); margin-top: 12px; }
.sidebar-panel__trust svg { width: 17px; height: 17px; color: var(--accent-dark); flex-shrink: 0; }
.sidebar-panel__divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.sidebar-panel__list a { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--ink); font-weight: 600; font-size: 0.9rem; }
.sidebar-panel__list a:last-child { border-bottom: none; }
.sidebar-panel__list a:hover { color: var(--accent-dark); }
.media-hero { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); background: var(--bg-alt); }
.media-hero img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.media-hero--icon { aspect-ratio: 16/8; display: flex; align-items: center; justify-content: center; background: var(--ink); }
.media-hero__icon-badge {
  display: flex; align-items: center; justify-content: center; width: 84px; height: 84px;
  border-radius: 50%; background: var(--accent-light); color: var(--accent-dark);
}
.media-hero__icon-badge svg { width: 42px; height: 42px; }
@media (max-width: 980px) { .content-grid { grid-template-columns: 1fr; } .sidebar { position: static; } }

.map-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--paper); border: 1px solid var(--border); }
.map-card__head { padding: 20px 22px 4px; }
.map-card__frame { width: 100%; aspect-ratio: 16/9; }
.map-card__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------------------------------------------------------------------- */
/* FAQ accordion                                                          */
/* ---------------------------------------------------------------------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; padding: 17px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item summary h3, .faq-item summary h4 { margin: 0; font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.35rem; color: var(--accent-dark); font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item__body { padding: 0 0 17px; }
.faq-item__body p { margin: 0; }

/* ---------------------------------------------------------------------- */
/* About page                                                             */
/* ---------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 44px; align-items: center; }
.about-grid__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); background: var(--bg-alt); }
.about-grid__media img { display: block; width: 100%; aspect-ratio: 4/4.4; object-fit: cover; }
.bullet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.bullet-grid li { display: flex; gap: 10px; align-items: flex-start; }
.bullet-grid li svg { width: 18px; height: 18px; color: var(--accent-dark); flex-shrink: 0; margin-top: 3px; }

.photo-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 34px; }
.photo-strip img { border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: cover; width: 100%; display: block; border: 1px solid var(--border); }
@media (max-width: 900px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .photo-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .about-grid, .bullet-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Contact page                                                           */
/* ---------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: start; padding-top: 44px; }
.contact-info-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); border-top: 3px solid var(--accent); }
.contact-info-card__row { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--border); }
.contact-info-card__row:last-child { border-bottom: none; }
.contact-info-card__row svg { width: 21px; height: 21px; color: var(--accent-dark); flex-shrink: 0; margin-top: 2px; }
.contact-info-card a { color: var(--accent-dark); font-weight: 700; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Terms page                                                             */
/* ---------------------------------------------------------------------- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { margin-top: 34px; }
.legal-content p, .legal-content li { font-size: 0.94rem; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 6px; color: var(--slate-text); }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.82); padding: 56px 0 0; }
.site-footer h3 { color: var(--accent); font-family: var(--font-body); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 15px; font-weight: 700; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.site-footer__about p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.site-footer .site-logo { color: var(--white); margin-bottom: 14px; }
.site-footer__nap a { color: rgba(255,255,255,0.85); }
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.72); }
.site-footer ul li a:hover { color: var(--white); }
.site-footer ul li { font-size: 0.88rem; color: rgba(255,255,255,0.72); }
.site-footer__nearby { font-size: 0.81rem; margin-top: 14px; }
.site-footer__bottom {
  margin-top: 38px; padding: 20px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.81rem;
}
.site-footer__bottom a { color: rgba(255,255,255,0.72); }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Responsive section padding                                             */
/* ---------------------------------------------------------------------- */
@media (max-width: 700px) {
  section { padding: 44px 0; }
  .btn--xl { padding: 16px 24px; font-size: 1rem; min-height: 52px; }
  .btn--lg { padding: 14px 20px; font-size: 0.96rem; }
}
