/* =========================================================================
   Garbage Disposal Repair Pros — Design System
   Palette: graphite/steel (near-black, brushed-metal register — evokes the
   disposal unit's own housing) + "reset-button red" accent (#d1442c) — a
   literal detail, not a generic trade color: nearly every garbage disposal
   has a small red reset button on its underside, so the accent color is
   drawn directly from the product itself. Sixth distinct hue family in this
   network (prior five: navy+amber x2, teal+rust, forest-green+brass,
   charcoal+lake-blue) — none use graphite+red.

   Type: Space Grotesk (headline — confident geometric grotesque, technical/
   modern register fitting an appliance-repair specialist) + Inter (body —
   the workhorse legibility sans). A sixth distinct pairing.

   Layout motif — genuinely different composition from every prior site:
   - Split hero WITH photo (right), but paired with a "signs you need
     repair" symptom-checklist ribbon directly under it — a component type
     that doesn't exist on any other site in this network.
   - A highlighted "Try This First" free-diagnostic callout box (distinct
     bordered/dashed treatment) — genuine expertise-first framing before any
     sales section, unique to this single-issue specialist site.
   - A big-number local-authority stat callout for the hard-water section
     (large "15-20 GPG" figure), instead of a plain paragraph.
   - ZIP-code chip grid + embedded map for the service-area section (no
     other site needs ZIP-level granularity since they're single-town).
   ========================================================================= */

:root {
  --ink: #202325;
  --ink-soft: #3d4245;
  --steel: #6b7278;
  --steel-light: #aab0b4;
  --red: #d1442c;
  --red-dark: #a8341f;
  --red-light: #fbe2dc;
  --paper: #ffffff;
  --white: #ffffff;
  --bg: #f5f4f2;
  --bg-alt: #ececea;
  --slate-text: #52585a;
  --border: #e0dedb;

  --font-head: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 14px 30px -16px rgba(32, 35, 37, 0.28);
  --shadow-sm: 0 4px 14px -8px rgba(32, 35, 37, 0.18);
  --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.18;
  margin: 0 0 14px;
}
h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); font-weight: 700; }
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 8px 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;
  padding: 14px 26px; border-radius: 9px; 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(--red); color: var(--white); border-color: var(--red);
  box-shadow: 0 10px 20px -10px rgba(168, 52, 31, 0.55);
}
.btn--call:hover { background: var(--red-dark); border-color: var(--red-dark); 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(168, 52, 31, 0.55), 0 0 0 0 rgba(209, 68, 44, 0.5); }
  70%  { box-shadow: 0 10px 20px -10px rgba(168, 52, 31, 0.55), 0 0 0 12px rgba(209, 68, 44, 0); }
  100% { box-shadow: 0 10px 20px -10px rgba(168, 52, 31, 0.55), 0 0 0 0 rgba(209, 68, 44, 0); }
}
@keyframes callPulseGlowFlat {
  0%   { box-shadow: 0 0 0 0 rgba(209, 68, 44, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(209, 68, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(209, 68, 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: 700; 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(--red); }
.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: 6px; font-size: 0.9rem; color: var(--ink); font-weight: 500; }
.site-nav .dropdown li a:hover { background: var(--bg); color: var(--red); }
.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(--red); color: var(--white); 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 — split, photo right                                              */
/* ---------------------------------------------------------------------- */
.hero { background: var(--paper); padding: 56px 0 0; border-bottom: 1px solid var(--border); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; padding-bottom: 48px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--red);
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.03em;
  text-transform: uppercase; margin-bottom: 14px;
}
.hero__eyebrow svg { width: 16px; height: 16px; }
.hero__sub { font-size: 1.05rem; max-width: 520px; }
.hero__ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 22px 0 18px; }
.hero__trust-line { display: flex; align-items: 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(--red); }
.star--dim svg { color: var(--border); }
.hero__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.hero__media img { width: 100%; aspect-ratio: 4/3.6; object-fit: cover; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; padding-bottom: 36px; } .hero__media { order: -1; } }

/* ---------------------------------------------------------------------- */
/* Symptom-checklist ribbon — unique to this site                        */
/* ---------------------------------------------------------------------- */
.symptom-ribbon { background: var(--ink); padding: 22px 0; }
.symptom-ribbon__grid { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; }
.symptom-ribbon__item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.88); font-size: 0.86rem; font-weight: 500; }
.symptom-ribbon__item svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* ---------------------------------------------------------------------- */
/* Trust stat row                                                          */
/* ---------------------------------------------------------------------- */
.trust-stat-row { background: var(--bg-alt); 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 var(--border); }
.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(--red); }
.trust-stat-row__label { display: block; font-size: 0.78rem; color: var(--slate-text); margin-top: 2px; }
@media (max-width: 700px) { .trust-stat-row__item { padding: 18px 16px; } }

/* ---------------------------------------------------------------------- */
/* Mini CTA strip                                                          */
/* ---------------------------------------------------------------------- */
.mini-cta-strip { background: var(--ink); }
.mini-cta-strip__inner {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 24px; color: var(--white);
}
.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(--red-light); }

/* ---------------------------------------------------------------------- */
/* 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(--red); font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; 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(--red-light); color: var(--red-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 cards (Signs You Need Repair)                                  */
/* ---------------------------------------------------------------------- */
.symptom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.symptom-card { background: var(--paper); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: var(--radius-sm); padding: 20px 22px; }
.symptom-card h3 { font-size: 1rem; margin-bottom: 6px; }
.symptom-card p { font-size: 0.88rem; margin: 0; }
@media (max-width: 900px) { .symptom-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .symptom-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* "Try This First" callout — dashed border, distinct treatment           */
/* ---------------------------------------------------------------------- */
.diy-callout { background: var(--paper); border: 2px dashed var(--steel-light); border-radius: var(--radius); padding: 32px; }
.diy-callout__head { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.diy-callout__head svg { width: 22px; height: 22px; color: var(--red); }
.diy-callout__head h2 { margin: 0; }
.diy-callout__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.diy-callout__item h3 { font-size: 0.98rem; margin-bottom: 6px; }
.diy-callout__item p { font-size: 0.88rem; margin: 0; }
.diy-callout__note { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--slate-text); display: flex; gap: 8px; align-items: flex-start; }
.diy-callout__note svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 900px) { .diy-callout__grid { grid-template-columns: 1fr; } .diy-callout { padding: 24px; } }

/* ---------------------------------------------------------------------- */
/* Flat, thin-bordered tile cards (sub-services)                          */
/* ---------------------------------------------------------------------- */
.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);
}
.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__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(--red); }
.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(--red); 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 (hard-water 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(--red-light); 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; } }

/* ---------------------------------------------------------------------- */
/* 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(--white);
  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(--red); 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(--red); 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(--red); }
.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); } }

/* ---------------------------------------------------------------------- */
/* 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;
}
.testimonial-card__quote-mark { color: var(--red-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(--white); 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); }
.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(--red-light); font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; 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(--red); }
.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); }
.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(--red); 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(--red); }
.media-hero { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.media-hero img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
@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(--red); 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); }
.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(--red); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 900px) { .about-grid, .bullet-grid { grid-template-columns: 1fr; } }

.photo-strip { display: grid; grid-template-columns: repeat(4, 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: 780px) { .photo-strip { grid-template-columns: 1fr 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); }
.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(--red); flex-shrink: 0; margin-top: 2px; }
.contact-info-card a { color: var(--red); 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(--red-light); 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; }
}
