/* ═══════════════════════════════════════════════════════════════════
   5280 TOW — Mountain Theme Stylesheet
   Color Palette: Alpine Blue · Rescue Orange · Pine Green · Snow White
═══════════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  /* Brand colors */
  --color-peak:        #060f1e;   /* Midnight peak — darkest */
  --color-brand:       #1a3154;   /* Deep alpine blue — primary */
  --color-brand-mid:   #2a508c;   /* Mountain sky blue */
  --color-brand-light: #3d6ea8;   /* Light mountain sky */
  --color-brand-xlt:   #d6e6f7;   /* Ice blue tint */

  /* Accent — rescue orange (CTAs, highlights) */
  --color-accent:      #f5821f;
  --color-accent-dark: #d46b10;
  --color-accent-light:#fef1e6;

  /* Pine green */
  --color-pine:        #1e4d3c;
  --color-pine-light:  #2d6a4f;

  /* Neutrals */
  --color-snow:        #f2f6fb;   /* Light section background */
  --color-white:       #ffffff;
  --color-text:        #141d2b;   /* Midnight granite */
  --color-text-mid:    #3d4f61;
  --color-text-light:  #6b7f92;
  --color-border:      #d0dcea;
  --color-border-light:#e8eef5;

  /* Semantic */
  --color-success:     #1a9a5c;
  --color-focus-ring:  #f5821f;

  /* Typography */
  --font-heading: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body:    'Inter', 'Segoe UI', Arial, sans-serif;

  /* Sizing */
  --header-height: 72px;
  --container-max: 1200px;
  --section-pad: clamp(3.5rem, 7vw, 6rem);

  /* Radii */
  --radius-sm:  0.5rem;
  --radius-md:  0.875rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(10,22,50,0.08);
  --shadow-md:  0 4px 16px rgba(10,22,50,0.12);
  --shadow-lg:  0 8px 32px rgba(10,22,50,0.16);
  --shadow-card:0 2px 12px rgba(10,22,50,0.09);

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;

  /* Zoom scale (changed by accessibility JS) */
  --zoom-scale: 1;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: calc(1rem * var(--zoom-scale));
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }
address { font-style: normal; }

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ── Visually Hidden (screen reader only) ── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Focus Rings (ADA) ── */
:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.6em;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}
.btn:focus-visible { outline: 3px solid var(--color-focus-ring); outline-offset: 3px; }
.btn:active { transform: scale(0.97); }

/* Primary — brand blue */
.btn-primary {
  background: var(--color-brand);
  color: var(--color-white);
  border-color: var(--color-brand);
}
.btn-primary:hover {
  background: var(--color-brand-mid);
  border-color: var(--color-brand-mid);
}

/* CTA — rescue orange */
.btn-cta {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 4px 18px rgba(245,130,31,0.35);
}
.btn-cta:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 6px 24px rgba(245,130,31,0.45);
}

/* CTA White (for use on dark backgrounds) */
.btn-cta-white {
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.btn-cta-white:hover {
  background: var(--color-accent-light);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

/* Outline white (for hero) */
.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--color-text-mid);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  background: var(--color-snow);
}

/* Sizes */
.btn-xl {
  font-size: 1.0625rem;
  padding: 0.9em 2em;
}

/* Full width */
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════
   SITE HEADER
══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-slow);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-height);
}

/* Logo */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { width: 180px; height: auto; }

/* Desktop nav */
.header-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-mid);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--color-brand);
  background: var(--color-snow);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-phone {
  font-size: 0.875rem;
  padding: 0.6em 1.2em;
}

/* Accessibility button */
.a11y-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.3rem;
  cursor: pointer;
  border-radius: 50%;
  transition: transform var(--transition);
}
.a11y-btn:hover { transform: scale(1.1); }
.a11y-btn:focus-visible { outline: 3px solid var(--color-focus-ring); outline-offset: 3px; }

.a11y-indicator { display: flex; align-items: center; justify-content: center; }
.a11y-indicator svg circle:first-child { transition: fill var(--transition), stroke var(--transition); }
.a11y-indicator.active svg circle:first-child {
  fill: var(--color-accent);
  stroke: var(--color-accent);
}
.a11y-indicator.active svg g { stroke: white; }
.a11y-indicator.active svg circle:last-child { fill: white; }

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.hamburger-btn:focus-visible { outline: 3px solid var(--color-focus-ring); outline-offset: 2px; }
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--color-brand);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.hamburger-btn[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.hamburger-btn[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
  padding: 1rem 0 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 0.25rem; padding-inline: 1.25rem; }
.mobile-nav-link {
  display: block;
  padding: 0.9rem 1rem;
  font-weight: 600;
  color: var(--color-text-mid);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-link:hover { background: var(--color-snow); color: var(--color-brand); }
.mobile-nav-cta { margin-top: 0.75rem; }

/* Mobile overlay backdrop */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,50,0.4);
  z-index: 90;
  backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(560px, 85vh, 780px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-peak);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-mountains {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(4rem, 10vh, 8rem);
  padding-bottom: clamp(6rem, 14vh, 10rem);
  flex: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(245,130,31,0.12);
  border: 1px solid rgba(245,130,31,0.3);
  padding: 0.4em 1em;
  border-radius: var(--radius-xl);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  max-width: 16ch;
  letter-spacing: -0.02em;
}
.hero-title-accent {
  display: block;
  color: var(--color-accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}
.hero-sub strong { color: white; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 0.25rem;
  backdrop-filter: blur(8px);
  max-width: fit-content;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.85rem 1.5rem;
}
.hero-badge-num {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-align: center;
  letter-spacing: 0.03em;
}
.hero-badge-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.18);
  align-self: center;
}

/* Hero wave divider */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ══════════════════════════════════════════════
   SECTIONS — BASE
══════════════════════════════════════════════ */
.section {
  padding-block: var(--section-pad);
  background: var(--color-white);
}
.section-snow { background: var(--color-snow); }
.section-brand {
  background: var(--color-brand);
  background-image: linear-gradient(135deg, var(--color-peak) 0%, var(--color-brand) 50%, var(--color-brand-mid) 100%);
  position: relative;
  overflow: hidden;
}
.section-brand::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.section-cta {
  background: var(--color-brand);
  background-image: linear-gradient(160deg, var(--color-peak) 0%, #1e3c6e 50%, var(--color-pine) 100%);
  position: relative;
  overflow: hidden;
}

/* Section header */
.section-header {
  text-align: center;
  max-width: 64ch;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header--white { color: var(--color-white); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: rgba(245,200,130,0.85); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-title--white { color: var(--color-white); }

.section-lede {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--color-text-mid);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-brand-xlt);
}

.service-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.service-icon svg { width: 100%; height: 100%; }

.service-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-brand);
  line-height: 1.2;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--color-text-mid);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   TRUST / WHY US
══════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 2rem;
}

.trust-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.trust-pillar:hover { background: rgba(255,255,255,0.09); }

.trust-icon { width: 40px; height: 40px; opacity: 0.85; }

.trust-stat {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}
.trust-stat-unit {
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 0.15em;
}

.trust-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}
.trust-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════
   COVERAGE AREA
══════════════════════════════════════════════ */
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.coverage-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.coverage-map-svg { width: 100%; height: auto; display: block; }

.coverage-info { display: flex; flex-direction: column; gap: 1.5rem; }

.coverage-list-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-brand);
  margin-bottom: 0.5rem;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--color-text-mid);
  line-height: 1.4;
}
.coverage-list li svg { flex-shrink: 0; margin-top: 0.1em; }

.coverage-note {
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border-light);
}
.text-link {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link:hover { color: var(--color-accent-dark); }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-snow);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-brand-xlt);
  line-height: 1;
  user-select: none;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-brand);
}
.step-desc {
  font-size: 0.9375rem;
  color: var(--color-text-mid);
  line-height: 1.6;
}

.step-arrow {
  flex-shrink: 0;
  width: 48px;
}
.step-arrow svg { width: 100%; height: auto; }

/* ══════════════════════════════════════════════
   TESTIMONIALS / REVIEWS
══════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.review-stars {
  font-size: 1.1rem;
  color: var(--color-accent);
  line-height: 1;
}

.review-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.7;
  font-style: italic;
  quotes: "\201C" "\201D";
}
.review-text p::before { content: open-quote; }
.review-text p::after  { content: close-quote; }

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border-light);
}
.review-author {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand);
  font-style: normal;
}
.review-location {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  max-width: 600px;
  margin-inline: auto;
}
.cta-icon { width: 80px; height: 60px; opacity: 0.7; }
.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,200,130,0.8);
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 44ch;
}
.cta-hours {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.cta-hours strong { color: rgba(255,255,255,0.9); }
.cta-fine {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  max-width: 52ch;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--color-peak);
  background-image: linear-gradient(180deg, #0b1829 0%, var(--color-peak) 100%);
  color: rgba(255,255,255,0.75);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-svg { width: 190px; height: auto; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 34ch;
  margin-bottom: 0.5rem;
}
.footer-license {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--color-accent); }

.footer-address { font-size: 0.875rem; line-height: 1.9; }
.footer-address p { color: rgba(255,255,255,0.6); }
.footer-phone {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-accent) !important;
  transition: color var(--transition);
}
.footer-phone:hover { color: white !important; }
.footer-hours {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}
.footer-hours strong { color: var(--color-accent); }
.footer-area-list {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-back-top {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-credit { color: rgba(255,255,255,0.35); }
.footer-back-top:hover { color: var(--color-accent); }

/* ══════════════════════════════════════════════
   ACCESSIBILITY MODAL
══════════════════════════════════════════════ */
.a11y-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,18,40,0.65);
  backdrop-filter: blur(4px);
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.a11y-overlay:not([hidden]) { opacity: 1; }
.a11y-overlay[hidden] { display: none; }

.a11y-modal {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(8,18,40,0.35);
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  transform: translateY(12px) scale(0.97);
  transition: transform var(--transition-slow);
}
.a11y-overlay:not([hidden]) .a11y-modal {
  transform: translateY(0) scale(1);
}

.a11y-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem 1rem;
  border-bottom: 1px solid var(--color-border-light);
}
.a11y-modal-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-brand);
  display: flex;
  align-items: center;
}
.a11y-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.a11y-modal-close:hover { background: var(--color-snow); color: var(--color-text); }
.a11y-modal-close:focus-visible { outline: 3px solid var(--color-focus-ring); outline-offset: 2px; }

.a11y-modal-body {
  padding: 1.25rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.a11y-option-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.1rem;
  background: var(--color-snow);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font-body);
}
.a11y-option-btn:hover {
  background: var(--color-brand-xlt);
  border-color: var(--color-brand-xlt);
}
.a11y-option-btn:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 2px;
}
.a11y-option-btn[aria-pressed="true"] {
  background: #eaf3ff;
  border-color: var(--color-brand-mid);
  box-shadow: 0 0 0 3px rgba(42,80,140,0.12);
}

.a11y-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--color-brand-mid);
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.a11y-option-btn[aria-pressed="true"] .a11y-option-icon {
  background: var(--color-brand);
  color: white;
}

.a11y-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.a11y-option-text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
}
.a11y-option-text small {
  font-size: 0.8rem;
  color: var(--color-text-light);
}
.a11y-option-btn[aria-pressed="true"] .a11y-option-text strong {
  color: var(--color-brand);
}

.a11y-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.6rem 1.4rem;
  border-top: 1px solid var(--color-border-light);
}

/* ══════════════════════════════════════════════
   ACCESSIBILITY STATE MODIFIERS
══════════════════════════════════════════════ */

/* Zoom / Larger Text */
html.zoom {
  --zoom-scale: 1.15;
}

/* Reduce Motion */
body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
  animation-duration: 0.001ms !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}

/* High Contrast */
body.high-contrast {
  --color-text:      #000000;
  --color-text-mid:  #111111;
  --color-border:    #000000;
}
body.high-contrast .service-card,
body.high-contrast .review-card,
body.high-contrast .step {
  border: 2px solid #000;
  box-shadow: none;
}
body.high-contrast .section-snow { background: #f0f0f0; }
body.high-contrast .hero-sub { color: rgba(255,255,255,0.95); }
body.high-contrast .nav-link { color: #000; }
body.high-contrast .a11y-option-btn { border: 2px solid #999; }
body.high-contrast .a11y-option-btn[aria-pressed="true"] { border-color: #000; }

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════ */

/* ─ ≤1100px: Compact nav ─ */
@media (max-width: 1100px) {
  .header-phone span { display: none; }
  .header-phone { padding: 0.65em 0.9em; }
  .nav-link { padding: 0.5rem 0.6rem; font-size: 0.85rem; }
}

/* ─ ≤900px: Switch to mobile nav ─ */
@media (max-width: 900px) {
  .header-inner { justify-content: space-between; }
  .header-nav { display: none; }
  .hamburger-btn { display: flex; }
  .header-phone { display: none; }

  .hero-content { align-items: center; text-align: center; }
  .hero-title { max-width: none; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }

  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-visual { max-width: 480px; margin-inline: auto; }

  .steps-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .step-arrow {
    width: 24px;
    transform: rotate(90deg);
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: span 2; }
}

/* ─ ≤600px: Mobile ─ */
@media (max-width: 600px) {
  :root { --header-height: 64px; }

  .logo-svg { width: 150px; }

  .hero-badges {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .hero-badge-divider {
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    align-self: center;
  }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .trust-grid    { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .trust-pillar  { padding: 1.25rem 1rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-logo-svg { width: 160px; }

  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  .a11y-modal { max-width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .a11y-overlay { align-items: flex-end; padding: 0; }

  .cta-title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
}

/* ─ ≤420px: Extra small ─ */
@media (max-width: 420px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.75rem); }
  .btn-xl { font-size: 1rem; padding: 0.85em 1.5em; }
}

/* ── Print ── */
@media print {
  .site-header, .hero-wave, .a11y-overlay, .mobile-overlay { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  .section-brand, .section-cta { background: white !important; color: black !important; }
}
