
/* ── ApplianceRank global styles ─────────────────────────────────────────── */
/* Arizona Cardinals palette: cardinal red #97233F, black, gold #FFB612 */
:root {
  --navy: #1d1d1f;
  --navy-dark: #151517;
  --navy-deep: #0c0c0e;
  --teal: #97233f;
  --teal-light: #e57e96;
  --teal-dim: #7a1c33;
  --orange: #ffb612;
  --orange-dark: #a87b06;
  --orange-hover: #e0a00c;
  --gold: #ffb612;
  --paper: #faf8f8;
  --ink: #1c1c1e;
  --ink-soft: #565056;
  --line: #e6dde0;
  --line-dark: rgba(255,255,255,0.10);
  --on-dark: #f0ecee;
  --on-dark-dim: #b5aab0;
  --display: 'Bebas Neue', Impact, sans-serif;
  --body: 'Nunito', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--paper); line-height: 1.6; }
a { color: var(--teal-dim); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
h1, h2, h3 { line-height: 1.15; }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-deep);
  transition: box-shadow 0.2s;
}
.site-nav.is-scrolled { box-shadow: 0 6px 24px rgba(7, 18, 32, 0.45); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none !important; }
.brand-mark {
  font-family: var(--display); font-size: 26px; color: #fff;
  background: linear-gradient(135deg, var(--teal), #5c1526);
  border-radius: 8px; width: 44px; height: 44px;
  display: grid; place-items: center; letter-spacing: 1px;
}
.brand-text {
  font-family: var(--display); font-size: 15px; letter-spacing: 1.5px;
  color: #fff; line-height: 1.1;
}
.brand-text em { font-family: var(--mono); font-style: normal; font-size: 9px; letter-spacing: 1.5px; color: var(--teal-light); }
.nav-links { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav-links > a { color: var(--on-dark); font-weight: 700; font-size: 15px; }
.nav-links > a:hover { color: var(--teal-light); text-decoration: none; }
.nav-cta-claim { color: var(--teal-light) !important; }
.nav-cta {
  background: var(--orange); color: #141414 !important; font-weight: 800;
  padding: 10px 18px; border-radius: 8px; font-size: 15px; white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-hover); text-decoration: none; }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none; border: 0; color: var(--on-dark); font-family: var(--body);
  font-weight: 700; font-size: 15px; cursor: pointer; padding: 8px 0;
}
.nav-dropdown-trigger:hover { color: var(--teal-light); }
.caret { font-size: 11px; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -12px; min-width: 270px;
  background: #fff; border-radius: 10px; padding: 10px;
  box-shadow: 0 18px 50px rgba(7, 18, 32, 0.28);
  display: none; flex-direction: column; gap: 2px;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.cat-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 7px; color: var(--ink); font-weight: 700; font-size: 14px;
}
.cat-link:hover { background: #f8eef1; color: var(--teal-dim); text-decoration: none; }
.cat-icon { width: 22px; text-align: center; }

.mobile-menu-toggle { display: none; }
.mobile-menu { display: none; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-toggle {
    display: block; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .mobile-menu-bars span {
    display: block; width: 24px; height: 3px; background: #fff; border-radius: 2px; margin: 5px 0;
  }
  .mobile-menu {
    display: block; position: fixed; inset: 0; z-index: 200;
    background: var(--navy-deep); overflow-y: auto;
    opacity: 0; transform: translateY(-8px); transition: opacity 0.25s, transform 0.25s;
  }
  .mobile-menu.is-open { opacity: 1; transform: none; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px; border-bottom: 1px solid var(--line-dark);
  }
  .mobile-menu-title { font-family: var(--display); font-size: 22px; letter-spacing: 2px; color: #fff; }
  .mobile-menu-close { background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; line-height: 1; }
  .mobile-menu-nav { padding: 14px 24px 40px; display: flex; flex-direction: column; }
  .mobile-menu-link {
    color: var(--on-dark); font-weight: 800; font-size: 17px; padding: 13px 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .mobile-menu-cta { color: var(--teal-light); }
  .mobile-menu-phone { color: var(--orange); }
  .mobile-menu-section-title {
    font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--on-dark-dim);
    margin: 22px 0 8px; text-transform: uppercase;
  }
  .mobile-menu-cats { display: flex; flex-direction: column; }
  .mobile-cat-link { color: var(--on-dark); font-weight: 700; font-size: 15px; padding: 10px 0; display: flex; gap: 10px; }
  body.menu-open { overflow: hidden; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(151, 35, 63, 0.45), transparent 60%),
    radial-gradient(800px 420px at -10% 110%, rgba(255, 182, 18, 0.12), transparent 55%),
    linear-gradient(160deg, var(--navy-dark), var(--navy-deep));
  color: var(--on-dark);
  padding: 96px 24px 72px;
}
.hero-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: 4px; color: var(--teal-light);
  margin-bottom: 18px;
}
.hero-title { font-family: var(--display); font-size: clamp(44px, 7vw, 76px); letter-spacing: 1px; color: #fff; }
.hero-accent { color: var(--teal-light); }
.hero-sub { max-width: 640px; margin: 20px auto 30px; font-size: 17px; color: var(--on-dark-dim); }
.hero-search {
  display: flex; max-width: 560px; margin: 0 auto 26px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 18px 46px rgba(7, 18, 32, 0.5);
}
.hero-search input {
  flex: 1; border: 0; padding: 17px 20px; font-family: var(--body); font-size: 16px; outline: none;
}
.hero-search button {
  border: 0; background: var(--orange); color: #141414; font-family: var(--body);
  font-weight: 800; font-size: 15px; padding: 0 26px; cursor: pointer; white-space: nowrap;
}
.hero-search button:hover { background: var(--orange-hover); }
.hero-map-link { margin: -12px 0 22px; font-size: 14px; }
.hero-map-link a { color: var(--teal-light); font-weight: 700; }
.hero-stats { display: flex; justify-content: center; gap: 46px; margin-top: 14px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--display); font-size: 34px; color: var(--teal-light); }
.hero-stats span { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--on-dark-dim); text-transform: uppercase; }
.hero-grain {
  position: absolute; inset: 0; opacity: 0.35; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ── Sections ────────────────────────────────────────────────────────────── */
.section { max-width: 1200px; margin: 0 auto; padding: 64px 24px; }
.section-head { margin-bottom: 34px; max-width: 720px; }
.section-eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 3px; color: var(--teal-dim);
  margin-bottom: 10px; font-weight: 700;
}
.section-head h2 { font-family: var(--display); font-size: clamp(30px, 4vw, 44px); letter-spacing: 0.5px; }
.section-head p { color: var(--ink-soft); margin-top: 10px; }
.section-dark {
  max-width: none; background: linear-gradient(165deg, var(--navy-dark), var(--navy-deep));
  color: var(--on-dark);
}
.section-dark > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-dark { padding: 64px 24px; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: var(--on-dark-dim); }
.section-dark .section-eyebrow { color: var(--teal-light); }
.section-flagship {
  border-top: 3px solid var(--gold);
  background: linear-gradient(180deg, #fdf8ec, var(--paper) 65%);
  max-width: none; padding: 64px 24px;
}
.section-flagship > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-flagship .section-head { margin-bottom: 34px; }
.section-cta { padding-top: 0; }

/* ── Category grid ───────────────────────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 26px 20px; text-align: center; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.cat-card:hover {
  transform: translateY(-3px); box-shadow: 0 14px 34px rgba(14, 34, 51, 0.12);
  border-color: var(--teal); text-decoration: none;
}
.cat-card-icon { font-size: 40px; margin-bottom: 10px; }
.cat-card-icon img { width: 44px; height: 44px; }
.cat-card-label { font-weight: 800; color: var(--ink); font-size: 16px; }
.cat-card-count { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); margin-top: 4px; }

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.co-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  display: flex; flex-direction: column; gap: 8px; position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}
.co-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(14, 34, 51, 0.10); }
.co-card-flagship {
  border: 2px solid var(--gold);
  background: linear-gradient(160deg, #fffdf5, #fff);
  box-shadow: 0 10px 30px rgba(240, 180, 41, 0.18);
}
.section-dark .co-card { border-color: transparent; }
.badge {
  display: inline-block; font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.2px; padding: 4px 9px; border-radius: 5px; margin-right: 6px; margin-bottom: 2px;
  text-transform: uppercase;
}
.badge-official { background: var(--gold); color: #4a3305; }
.badge-verified { background: #f6e0e7; color: var(--teal-dim); }
.badge-emergency { background: #fff3d1; color: #8a6203; }
.badge-type { background: #eef2f6; color: var(--ink-soft); }
.type-icon { vertical-align: -3px; }
.card-name { font-size: 19px; margin-top: 4px; }
.card-name a { color: var(--ink); font-weight: 800; }
.card-name a:hover { color: var(--teal-dim); }
.card-type { font-size: 13px; color: var(--ink-soft); }
.card-rating { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.stars { color: var(--gold); letter-spacing: 1px; font-size: 15px; }
.star-empty, .star-half { color: #d6dde4; }
.review-count { color: var(--ink-soft); font-size: 13px; }
.card-location { font-size: 14px; color: var(--ink-soft); }
.card-actions { display: flex; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.card-phone { font-weight: 800; color: var(--ink); font-size: 14px; }
.card-view { font-weight: 700; font-size: 14px; }
.card-claim {
  margin-top: 8px; font-size: 12.5px; color: var(--ink-soft); border-top: 1px dashed var(--line);
  padding-top: 10px;
}
.card-claim:hover { color: var(--teal-dim); }

/* ── City chips / cards ──────────────────────────────────────────────────── */
.city-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.city-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; font-weight: 700; font-size: 14px; color: var(--ink);
}
.city-chip:hover { border-color: var(--teal); color: var(--teal-dim); text-decoration: none; }
.city-count {
  font-family: var(--mono); font-size: 11.5px; background: #eef2f6; border-radius: 999px;
  padding: 2px 8px; color: var(--ink-soft);
}
.section-dark .city-chip { background: rgba(255,255,255,0.06); border-color: var(--line-dark); color: var(--on-dark); }
.city-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.city-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.city-card:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(14,34,51,0.10); text-decoration: none; }
.city-card-name { font-weight: 800; font-size: 17px; color: var(--ink); }
.city-card-count { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); margin-top: 3px; }
.city-card-fx { font-family: var(--mono); font-size: 11px; color: #a07908; margin-top: 6px; }

/* ── CTA bands ───────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(120deg, var(--teal-dim), var(--navy));
  color: var(--on-dark); padding: 56px 24px;
}
.cta-inner {
  max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 40px;
  justify-content: space-between; flex-wrap: wrap;
}
.cta-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 3px; color: var(--teal-light); margin-bottom: 8px; }
.cta-content h2 { font-family: var(--display); font-size: clamp(28px, 4vw, 40px); color: #fff; }
.cta-content p { max-width: 560px; color: var(--on-dark-dim); margin-top: 8px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--orange); color: #141414 !important; font-weight: 800;
  padding: 13px 26px; border-radius: 9px; font-size: 15px; border: 0; cursor: pointer;
  font-family: var(--body);
}
.btn-primary:hover { background: var(--orange-hover); text-decoration: none; }
.btn-secondary {
  display: inline-block; background: transparent; color: inherit !important; font-weight: 800;
  padding: 12px 24px; border-radius: 9px; font-size: 15px; border: 2px solid currentColor;
}
.btn-secondary:hover { text-decoration: none; opacity: 0.85; }
.btn-large { padding: 16px 34px; font-size: 17px; }

/* ── Page header + breadcrumb ────────────────────────────────────────────── */
.page-header {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy-deep));
  color: var(--on-dark); padding: 56px 24px;
}
.page-header > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.page-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 3px; color: var(--teal-light); margin-bottom: 10px; }
.page-header h1 { font-family: var(--display); font-size: clamp(34px, 5vw, 56px); color: #fff; letter-spacing: 0.5px; }
.page-header p { color: var(--on-dark-dim); margin-top: 10px; max-width: 760px; }
.breadcrumb {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px; font-size: 13px; color: var(--ink-soft);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.page-header + * .breadcrumb { padding-top: 0; }
.breadcrumb span { color: #9fb0bf; }

/* ── City category quick links ───────────────────────────────────────────── */
.city-cats { max-width: 1200px; margin: 0 auto; padding: 22px 24px 0; }
.city-cats-label { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; color: var(--ink-soft); margin-bottom: 10px; text-transform: uppercase; }
.city-cats-list { display: flex; flex-wrap: wrap; gap: 10px; }
.city-cat-link {
  display: inline-flex; align-items: center; gap: 8px; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px;
  font-weight: 700; font-size: 13.5px; color: var(--ink);
}
.city-cat-link:hover { border-color: var(--teal); color: var(--teal-dim); text-decoration: none; }
.city-cat-count { font-family: var(--mono); font-size: 11px; background: #eef2f6; border-radius: 999px; padding: 1px 7px; color: var(--ink-soft); }

/* ── Profile ─────────────────────────────────────────────────────────────── */
.profile { max-width: 1200px; margin: 0 auto; padding: 30px 24px 10px; }
.profile-header { display: flex; gap: 26px; align-items: flex-start; margin-bottom: 30px; flex-wrap: wrap; }
.profile-logo img { width: 110px; height: 110px; border-radius: 16px; }
.profile-badge {
  display: inline-block; font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; padding: 6px 12px; border-radius: 6px; margin-bottom: 10px;
}
.profile-badge-official { background: var(--gold); color: #4a3305; }
.profile-badge-claimed { background: #f6e0e7; color: var(--teal-dim); }
.profile-header-text h1 { font-family: var(--display); font-size: clamp(30px, 4.5vw, 48px); letter-spacing: 0.5px; }
.profile-type-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 10px 0 4px; }
.profile-type-badge {
  display: inline-flex; align-items: center; gap: 7px; background: #eef2f6; color: var(--ink-soft);
  font-weight: 800; font-size: 13px; padding: 6px 13px; border-radius: 999px;
}
.profile-type-badge:hover { background: #f6e0e7; color: var(--teal-dim); text-decoration: none; }
.profile-emergency-badge {
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 1px;
  background: #fff3d1; color: #8a6203; padding: 5px 11px; border-radius: 999px;
}
.profile-type { color: var(--ink-soft); font-size: 14px; }
.profile-rating { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.rating-text { color: var(--ink-soft); font-size: 14px; }
.profile-flagship .profile-header { border-left: 4px solid var(--gold); padding-left: 22px; }
.profile-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 34px; align-items: start; }
@media (max-width: 800px) { .profile-grid { grid-template-columns: 1fr; } }
.profile-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.profile-detail { display: flex; gap: 14px; font-size: 15px; }
.detail-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; color: var(--ink-soft);
  text-transform: uppercase; min-width: 78px; padding-top: 3px;
}
.profile-hours h3 { font-family: var(--display); font-size: 22px; letter-spacing: 1px; margin-bottom: 8px; }
.profile-hours table { border-collapse: collapse; font-size: 14px; }
.profile-hours td { padding: 4px 18px 4px 0; color: var(--ink-soft); }
.profile-hours td:first-child { font-weight: 700; color: var(--ink); }
.profile-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.profile-actions .btn-secondary { color: var(--teal-dim) !important; }
.claim-cta, .flagship-cta {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px;
  margin-bottom: 18px;
}
.flagship-cta { border: 2px solid var(--gold); background: linear-gradient(160deg, #fffdf5, #fff); }
.flagship-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: #a07908; margin-bottom: 8px; }
.claim-cta h3, .flagship-cta h3 { font-family: var(--display); font-size: 24px; letter-spacing: 0.5px; margin-bottom: 8px; }
.claim-cta p, .flagship-cta p { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.profile-description {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 24px 28px; margin-bottom: 28px;
}
.profile-description h2 { font-family: var(--display); font-size: 26px; letter-spacing: 0.5px; margin-bottom: 8px; }
.profile-description p { color: var(--ink-soft); }
.profile-reviews .reviews-summary { display: flex; align-items: center; gap: 14px; }
.reviews-summary-text { color: var(--ink-soft); }

/* ── Filter bar (find page) ──────────────────────────────────────────────── */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.filter-input {
  flex: 2; min-width: 220px; border: 1px solid var(--line); border-radius: 9px;
  padding: 13px 16px; font-family: var(--body); font-size: 15px; outline: none;
}
.filter-input:focus { border-color: var(--teal); }
.filter-select {
  flex: 1; min-width: 180px; border: 1px solid var(--line); border-radius: 9px;
  padding: 13px 12px; font-family: var(--body); font-size: 14px; background: #fff; cursor: pointer;
}
.filter-clear {
  border: 1px solid var(--line); background: #fff; border-radius: 9px; padding: 13px 20px;
  font-family: var(--body); font-weight: 700; font-size: 14px; cursor: pointer; color: var(--ink-soft);
}
.filter-clear:hover { border-color: var(--teal); color: var(--teal-dim); }
.filter-meta { font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft); margin-bottom: 20px; }
.hub-more-note { margin-top: 22px; font-size: 14px; color: var(--on-dark-dim); }

/* ── Claim form ──────────────────────────────────────────────────────────── */
.claim-form { max-width: 720px; display: flex; flex-direction: column; gap: 18px; }
.claim-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: 14px; flex: 1; }
.claim-form input, .claim-form select, .claim-form textarea {
  border: 1px solid var(--line); border-radius: 9px; padding: 12px 14px;
  font-family: var(--body); font-size: 15px; outline: none;
}
.claim-form input:focus, .claim-form textarea:focus { border-color: var(--teal); }
.form-row { display: flex; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--ink-soft); }
.hidden-field { display: none; }

/* ── Legal ───────────────────────────────────────────────────────────────── */
.legal-content { max-width: 780px; }
.legal-content h2 { font-family: var(--display); font-size: 24px; letter-spacing: 0.5px; margin: 28px 0 8px; }
.legal-content p { color: var(--ink-soft); }

/* ── Repair guides ───────────────────────────────────────────────────────── */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.guide-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.guide-card:hover {
  transform: translateY(-2px); box-shadow: 0 12px 28px rgba(14, 34, 51, 0.12);
  border-color: var(--teal); text-decoration: none;
}
.guide-card-app {
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal-dim); font-weight: 700;
}
.guide-card-title { font-weight: 800; font-size: 16px; color: var(--ink); line-height: 1.3; }
.guide-card-cost { font-family: var(--mono); font-size: 13px; color: var(--orange-dark); font-weight: 700; }
.guide-card-cost span { color: var(--ink-soft); font-weight: 400; font-size: 11px; }
.guide-card-model .guide-card-cost { color: var(--ink-soft); font-weight: 400; font-size: 12px; }
.section-dark .guide-card { border-color: transparent; }
.home-guides-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.home-guides-models { color: var(--teal-dim) !important; }

.cost-summary {
  display: flex; align-items: stretch; gap: 34px; flex-wrap: wrap;
  background: linear-gradient(150deg, #fbf2f5, #fff); border: 2px solid var(--teal);
  border-radius: 16px; padding: 28px 32px;
}
.cost-summary-label { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-dim); margin-bottom: 6px; }
.cost-summary-figure { font-family: var(--display); font-size: clamp(40px, 6vw, 60px); color: var(--ink); letter-spacing: 1px; line-height: 1; }
.cost-summary-stats { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; margin-left: auto; }
.cost-summary-stats > div { display: flex; flex-direction: column; gap: 4px; }
.cost-summary-stats strong { font-size: 16px; }
.difficulty-easy { color: #15803d; }
.difficulty-moderate { color: #b45309; }
.difficulty-hard { color: #c2410c; }
.difficulty-pro { color: #b91c1c; }
.cost-note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; max-width: 720px; }
.section-dark .cost-note { color: var(--on-dark-dim); }

.cause-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.cause-card {
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: 12px;
  padding: 22px;
}
.cause-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.cause-card h3 { font-size: 16px; color: #fff; font-weight: 800; }
.cause-cost { font-family: var(--mono); font-size: 13px; color: var(--teal-light); font-weight: 700; white-space: nowrap; }
.cause-card p { font-size: 14px; color: var(--on-dark-dim); }
.cause-diy, .cause-pro { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; margin-top: 12px; font-weight: 700; }
.cause-diy { color: #6ee7b7; }
.cause-pro { color: var(--gold); }

.guide-prose { max-width: 760px; font-size: 16px; color: var(--ink-soft); }
.section-faq { padding-top: 0; }
.guide-faq-item {
  border: 1px solid var(--line); border-radius: 10px; padding: 0; margin-bottom: 10px;
  background: #fff; max-width: 800px;
}
.guide-faq-item summary {
  cursor: pointer; font-weight: 800; font-size: 15px; padding: 16px 20px; list-style-position: inside;
}
.guide-faq-item p { padding: 0 20px 16px 20px; color: var(--ink-soft); font-size: 14.5px; }

.table-wrap { overflow-x: auto; }
.guide-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; font-size: 14.5px; }
.guide-table th {
  text-align: left; font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--navy); color: var(--teal-light); padding: 12px 16px;
}
.guide-table td { padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-soft); }
.guide-table td strong { color: var(--ink); }
.guide-table tr:last-child td { border-bottom: 0; }
.cost-cell { font-family: var(--mono); font-weight: 700; color: var(--orange-dark) !important; white-space: nowrap; }

/* OEM part numbers on model guides */
.part-cell { white-space: nowrap; }
.part-no {
  display: inline-block; font-family: var(--mono); font-weight: 700; font-size: 13px;
  color: var(--teal); background: rgba(151,35,63,0.07); border: 1px solid rgba(151,35,63,0.22);
  border-radius: 5px; padding: 3px 8px; letter-spacing: 0.02em;
}
.part-sup { display: block; font-size: 11px; color: var(--ink-soft); margin-top: 4px; white-space: normal; }
.part-warn {
  display: block; font-size: 11px; color: var(--teal); margin-top: 5px; white-space: normal;
  max-width: 230px; font-weight: 600; line-height: 1.45;
}

/* ---- Sell or scrap CTA ---- */
.sell-band { background: var(--sand); border-top: 3px solid var(--orange); }
.sell-band.band-dark { background: var(--ink); border-top-color: var(--orange); }
.sell-band-inner {
  max-width: 1200px; margin: 0 auto; display: flex; gap: 32px; align-items: center;
  flex-wrap: wrap; justify-content: space-between;
}
.sell-band-text { flex: 1 1 460px; }
.sell-band-eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em; font-weight: 700;
  color: var(--teal); margin-bottom: 8px;
}
.band-dark .sell-band-eyebrow { color: var(--orange); }
.sell-band h2 { font-size: 26px; margin: 0 0 10px; line-height: 1.25; }
.band-dark h2 { color: var(--on-dark); }
.sell-band p { margin: 0; color: var(--ink-soft); max-width: 640px; line-height: 1.65; }
.band-dark p { color: var(--on-dark-dim); }
.sell-band-cta { flex: 0 0 auto; display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.sell-band-note { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); letter-spacing: .04em; }
.band-dark .sell-band-note { color: var(--on-dark-dim); }

.sell-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.sell-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 22px; background: #fff;
}
.sell-card-icon { font-size: 30px; margin-bottom: 10px; }
.sell-card h3 { margin: 0 0 8px; font-size: 18px; }
.sell-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.sell-take { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.sell-take h4 {
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--orange); margin: 0 0 12px;
}
.sell-take ul { margin: 0; padding-left: 18px; }
.sell-take li { color: var(--on-dark-dim); margin: 7px 0; line-height: 1.55; }

@media (max-width: 640px) {
  .sell-band-inner { flex-direction: column; align-items: flex-start; }
  .sell-band h2 { font-size: 22px; }
}

/* ---- Glossary ---- */
.gloss {
  color: inherit; text-decoration: none;
  border-bottom: 1px dashed var(--teal); cursor: help; position: relative;
}
.gloss:hover { color: var(--teal); border-bottom-style: solid; }
.gloss::after {
  content: attr(data-tip);
  position: absolute; left: 50%; bottom: calc(100% + 10px); transform: translateX(-50%);
  width: max-content; max-width: 290px; padding: 10px 13px;
  background: var(--ink); color: #fff; font-size: 13px; font-weight: 400;
  line-height: 1.5; border-radius: 8px; text-align: left; letter-spacing: 0;
  box-shadow: 0 8px 26px rgba(0,0,0,0.28);
  opacity: 0; visibility: hidden; transition: opacity .14s ease; z-index: 60; pointer-events: none;
}
.gloss::before {
  content: ''; position: absolute; left: 50%; bottom: calc(100% + 4px); transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: var(--ink);
  opacity: 0; visibility: hidden; transition: opacity .14s ease; z-index: 61; pointer-events: none;
}
.gloss:hover::after, .gloss:hover::before,
.gloss:focus::after, .gloss:focus::before { opacity: 1; visibility: visible; }
.section-dark .gloss { border-bottom-color: var(--teal-light); }
.section-dark .gloss:hover { color: var(--teal-light); }

.gloss-jumps { display: flex; flex-wrap: wrap; gap: 8px; }
.gloss-jump {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px; border-radius: 9px;
  background: var(--sand); border: 1px solid var(--line);
  font-family: var(--mono); font-weight: 700; color: var(--ink); text-decoration: none;
}
.gloss-jump:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.gloss-letter-block { padding-top: 26px; padding-bottom: 26px; }
.gloss-letter {
  font-family: var(--mono); font-size: 20px; color: var(--teal);
  border-bottom: 2px solid var(--line); padding-bottom: 8px; margin-bottom: 18px;
}
.gloss-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; }
.gloss-card {
  display: block; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; text-decoration: none; transition: border-color .15s, transform .15s;
}
.gloss-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.gloss-card-head { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; flex-wrap: wrap; }
.gloss-card-term { font-weight: 700; color: var(--ink); font-size: 16px; }
.gloss-tag {
  font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 7px; border-radius: 5px; font-weight: 700;
}
.gloss-tag-part { background: rgba(151,35,63,0.1); color: var(--teal); }
.gloss-tag-tool { background: rgba(255,182,18,0.18); color: #8a6200; }
.gloss-tag-concept { background: rgba(0,0,0,0.06); color: var(--ink-soft); }
.gloss-tag-measure { background: rgba(0,0,0,0.06); color: var(--ink-soft); }
.gloss-card-def { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.gloss-card-apps { margin-top: 9px; font-size: 15px; }
/* ---- Owner-supplied company photos ---- */
.co-photos-section { border-top: 1px solid var(--line); }
.co-photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.co-photo { margin: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.co-photo img { display: block; width: 100%; height: 260px; object-fit: cover; }
.co-photo figcaption {
  font-size: 13px; color: var(--ink-soft); padding: 10px 13px; line-height: 1.5;
  border-top: 1px solid var(--line);
}
.co-photo-note {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-soft); margin-top: 14px;
}

/* ---- Methodology ---- */
.method-list { max-width: 820px; padding-left: 20px; }
.method-list li { color: var(--on-dark-dim); margin: 12px 0; line-height: 1.65; }
.method-list strong { color: var(--on-dark); }
.guide-standards {
  display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center;
  font-size: 12.5px; color: var(--ink-soft); margin-top: 14px;
  padding-top: 12px; border-top: 1px solid var(--line);
}
.guide-standards a { color: var(--teal); font-weight: 600; }
.guide-standards .gs-sep { color: var(--line-dark); }

/* ---- Sources / citations ---- */
.sources-section { border-top: 1px solid var(--line); }
.sources-intro { font-size: 14px; color: var(--ink-soft); max-width: 760px; margin: 0 0 18px; }
.source-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; max-width: 860px; }
.source-item {
  border-left: 3px solid var(--teal); padding: 10px 0 10px 15px; background: var(--sand);
  border-radius: 0 8px 8px 0; padding-right: 14px;
}
.source-item a { font-weight: 700; color: var(--teal); text-decoration: none; }
.source-item a:hover { text-decoration: underline; }
.source-pub {
  display: block; font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: .07em; color: var(--ink-soft); margin-top: 3px;
}
.source-supports { display: block; font-size: 13.5px; color: var(--ink-soft); margin-top: 5px; line-height: 1.55; }
.source-note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }

.gloss-short {
  font-size: 19px; line-height: 1.6; color: var(--ink); font-weight: 500; max-width: 760px;
}
.gloss-long { font-size: 17px; }

@media (max-width: 640px) {
  /* Tooltips can overflow a phone screen — pin them to the viewport width. */
  .gloss::after { max-width: 76vw; }
}
.part-none { color: var(--ink-soft); }
.parts-note {
  margin-top: 18px; padding: 16px 18px; border-radius: 10px; max-width: 780px;
  background: var(--sand); border: 1px solid var(--line); border-left: 4px solid var(--orange);
  font-size: 13.5px; line-height: 1.65; color: var(--ink-soft);
}
.parts-note strong { color: var(--ink); }
.code-cell { font-family: var(--mono); font-weight: 700; color: var(--ink); white-space: nowrap; }
.guide-table-dark { background: rgba(255,255,255,0.04); }
.guide-table-dark td { color: var(--on-dark-dim); border-color: var(--line-dark); }
.guide-table-dark .code-cell { color: var(--teal-light); }
.models-brand-section { padding-top: 34px; padding-bottom: 20px; }

/* ── DIY guides ──────────────────────────────────────────────────────────── */
.guide-card-diy-meta { font-family: var(--body); font-size: 13px; }
.diy-facts {
  display: flex; gap: 34px; flex-wrap: wrap; align-items: flex-start;
  background: linear-gradient(150deg, #fbf2f5, #fff); border: 2px solid var(--teal);
  border-radius: 16px; padding: 22px 28px; margin-bottom: 20px;
}
.diy-facts > div { display: flex; flex-direction: column; gap: 4px; max-width: 420px; }
.diy-facts strong { font-size: 15px; }
.diy-safety {
  background: #fdf5ec; border: 1px solid #f0c896; border-left: 5px solid var(--orange);
  border-radius: 10px; padding: 16px 20px; margin-bottom: 20px; max-width: 860px;
}
.diy-safety-label { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; font-weight: 700; color: var(--orange-dark); margin-bottom: 6px; }
.diy-safety p { color: #7a4a12; font-size: 14.5px; }
.diy-supplies { display: flex; gap: 40px; flex-wrap: wrap; }
.diy-supplies-col h3 { font-family: var(--display); font-size: 20px; letter-spacing: 0.5px; margin-bottom: 6px; }
.diy-supplies-col ul { margin-left: 20px; color: var(--ink-soft); font-size: 14.5px; }
.diy-steps-section .section-head { margin-bottom: 20px; }
.diy-steps { list-style: none; max-width: 820px; }
.diy-step { padding: 20px 0; border-bottom: 1px solid var(--line-dark); }
.diy-step:last-child { border-bottom: 0; }
.diy-step h3 { color: #fff; font-size: 18px; display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.diy-step-num {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal); color: #fff; display: grid; place-items: center;
  font-family: var(--display); font-size: 17px;
}
.diy-step p { color: var(--on-dark-dim); font-size: 15px; }
.diy-step-pro {
  margin-top: 12px; background: rgba(240, 180, 41, 0.12); border: 1px solid rgba(240, 180, 41, 0.4);
  border-radius: 8px; padding: 12px 16px; font-size: 14px; color: #f5d489;
}
.diy-step-pro a { color: var(--teal-light); font-weight: 700; }
.pro-callout {
  background: linear-gradient(150deg, #fffdf5, #fff); border: 2px solid var(--gold);
  border-radius: 14px; padding: 24px 28px; max-width: 860px;
}
.pro-callout-label { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; font-weight: 700; color: #a07908; margin-bottom: 8px; }
.pro-callout p { color: var(--ink-soft); font-size: 15px; }
.pro-callout a { font-weight: 800; }
.diy-link-section { padding-top: 0; padding-bottom: 0; }
.diy-link-box {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: #fff; border: 2px dashed var(--teal); border-radius: 14px; padding: 20px 26px;
}
.diy-link-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; font-weight: 700; color: var(--teal-dim); margin-bottom: 4px; }
.diy-link-text { color: var(--ink-soft); font-size: 14.5px; }
.diy-link-text strong { color: var(--ink); }
/* ── Arizona map ─────────────────────────────────────────────────────────── */
.map-section { padding-top: 24px; }
.map-toolbar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.map-toolbar .filter-input { max-width: 420px; }
#az-map {
  width: 100%; height: 72vh; min-height: 460px; border-radius: 16px;
  border: 1px solid var(--line); box-shadow: 0 14px 36px rgba(28, 28, 30, 0.12);
  z-index: 1;
}
.mk-felix {
  width: 30px; height: 30px; display: grid; place-items: center;
  font-size: 24px; color: #ffb612; -webkit-text-stroke: 1.5px #7a5600;
  text-shadow: 0 0 6px rgba(255, 182, 18, 0.9), 0 2px 4px rgba(0,0,0,0.4);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.mk-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: #97233f; border: 2.5px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
.mk-felix-demo { color: #b8860b; font-size: 18px; margin: 0 4px 0 10px; }
.mk-dot-demo {
  display: inline-block; width: 11px; height: 11px; border-radius: 50%;
  background: #97233f; border: 2px solid #fff; box-shadow: 0 0 2px rgba(0,0,0,0.5);
  margin: 0 4px 0 10px; vertical-align: -1px;
}
.map-legend-item { white-space: nowrap; }
.map-pop { font-family: var(--body); font-size: 13.5px; line-height: 1.5; min-width: 180px; }
.map-pop-name { font-weight: 800; font-size: 15px; color: var(--teal-dim); display: block; margin-bottom: 2px; }
.map-pop-felix { font-family: var(--mono); font-size: 10px; letter-spacing: 1px; background: #ffb612; color: #4a3305; display: inline-block; padding: 2px 7px; border-radius: 4px; font-weight: 700; margin: 2px 0; }
.map-pop-stars { color: #b8860b; font-size: 12.5px; }
.map-pop-city { color: var(--ink-soft); margin-bottom: 4px; }

/* ── City facts (census & climate) module ────────────────────────────────── */
.city-facts-section { padding-top: 28px; padding-bottom: 8px; }
.city-facts {
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--teal);
  border-radius: 14px; padding: 24px 28px;
}
.city-facts-head {
  font-family: var(--mono); font-size: 12px; letter-spacing: 2px; font-weight: 700;
  color: var(--teal-dim); margin-bottom: 16px;
}
.city-facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px 24px; }
.city-facts-grid > div { display: flex; flex-direction: column; gap: 3px; }
.city-facts-grid strong { font-family: var(--display); font-size: 24px; color: var(--ink); letter-spacing: 0.5px; }
.city-facts-grid em { font-style: normal; font-family: var(--mono); font-size: 10px; color: #a89aa0; }
.city-facts-note { margin-top: 16px; font-size: 14px; color: var(--ink-soft); max-width: 860px; }

/* ── Lifetime repair cost widget ─────────────────────────────────────────── */
.lifetime-section { padding-top: 28px; padding-bottom: 20px; }
.lifetime-row { display: flex; gap: 24px; align-items: stretch; flex-wrap: wrap; }
.lifetime-widget {
  flex: 1; min-width: 300px;
  background: linear-gradient(150deg, #1d1d1f, #0c0c0e); color: var(--on-dark);
  border: 1px solid #97233f; border-radius: 16px; padding: 24px 28px;
}
.lifetime-head {
  font-family: var(--mono); font-size: 12px; letter-spacing: 2px; font-weight: 700;
  color: var(--gold); margin-bottom: 16px;
}
.lifetime-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px 24px; }
.lifetime-grid > div { display: flex; flex-direction: column; gap: 4px; }
.lifetime-grid strong { font-family: var(--display); font-size: 26px; color: #fff; letter-spacing: 0.5px; }
.lifetime-note { margin-top: 14px; font-size: 13.5px; color: var(--teal-light); }
.lifetime-link { margin-top: 12px; font-size: 13.5px; }
.lifetime-link a { color: var(--gold); font-weight: 700; }
.model-illustration-box {
  flex: 0 0 220px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px; gap: 8px;
}
.model-illustration { width: 170px; height: auto; }
.model-photo { width: 184px; border-radius: 10px; object-fit: contain; }
.model-illustration-caption { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: var(--ink-soft); text-transform: uppercase; text-align: center; }
.lifetime-stages { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.lifetime-stage {
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: 12px;
  padding: 22px;
}
.lifetime-stage-years { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.lifetime-stage h3 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.lifetime-stage p { font-size: 14px; color: var(--on-dark-dim); }
.lifetime-stage-spend { margin-top: 12px; font-size: 13px; color: var(--teal-light); }
.lifetime-stage-spend strong { color: #fff; }
@media (max-width: 640px) { .model-illustration-box { flex: 1 1 100%; } }

.diy-video-section { padding-top: 0; }
.video-wrap {
  position: relative; width: 100%; max-width: 860px; aspect-ratio: 16 / 9;
  border-radius: 14px; overflow: hidden; background: #000;
  box-shadow: 0 14px 36px rgba(28, 28, 30, 0.18);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy-deep); color: var(--on-dark-dim); margin-top: 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 56px 24px 36px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 34px;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-brand { font-family: var(--display); font-size: 24px; letter-spacing: 2px; color: #fff; margin-bottom: 10px; }
.footer-col p { font-size: 14px; }
.footer-col h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 12px;
}
.footer-col a { display: block; color: var(--on-dark-dim); font-size: 14px; padding: 4px 0; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-hq { margin-top: 12px; font-size: 13px; line-height: 1.6; }
.footer-hq a { display: inline; color: var(--on-dark); }
.footer-legal-line { margin-top: 12px; }
.footer-legal-line a { display: inline; color: var(--on-dark); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px 34px;
  border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; font-size: 13px;
}
.footer-bottom a { color: var(--on-dark); }
.footer-meta { font-family: var(--mono); font-size: 12px; }

@media (max-width: 640px) {
  .hero { padding: 64px 20px 52px; }
  .hero-stats { gap: 28px; }
  .section { padding: 48px 20px; }
  .hero-search { flex-direction: column; border-radius: 12px; }
  .hero-search button { padding: 15px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
