/* ==========================================================================
   Miguel's Mobile Auto Repair
   Palette pulled from the shop logo: navy, orange, gold, cream.
   Single stylesheet, no framework, easy to hand-edit later.
   ========================================================================== */

:root {
  --navy:        #16233f;
  --navy-800:    #1e3358;
  --navy-700:    #26406b;
  --orange:      #e35d18;
  --orange-600:  #c74e11;
  --gold:        #f2a51e;
  --gold-soft:   #ffd27a;
  --cream:       #0b1220;   /* dark page base, smoky navy-black like the eagle bg */
  --cream-200:   #101a2c;   /* alternate dark section */
  --paper:       #16233b;   /* elevated card / panel surface */
  --ink:         #e9edf4;   /* light body text */
  --ink-soft:    #a9b3c4;   /* muted light text */
  --muted:       #7c8798;
  --line:        rgba(255,255,255,0.10);
  --line-dark:   rgba(255,255,255,0.12);
  --heading:     #f3f6fb;   /* light headings (was navy on light theme) */
  --good:        #35b06a;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.35);
  --shadow-md: 0 12px 30px rgba(0,0,0,.45);
  --shadow-lg: 0 24px 55px rgba(0,0,0,.55);

  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1180px;
  --gutter:    clamp(18px, 4vw, 40px);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 76px;
}

/* ------- reset ------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: .3px;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
p  { color: var(--ink-soft); }

/* ------- animated page background ------- */
.page-bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; background: var(--cream) url("../media/bg-eagle-poster.jpg") center/cover no-repeat; }
.page-bg video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; opacity: 0; transition: opacity .7s ease; pointer-events: none; }
.page-bg video.is-playing { opacity: 1; }
.page-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,14,24,.62) 0%, rgba(9,14,24,.72) 50%, rgba(9,14,24,.8) 100%);
}
@media (prefers-reduced-motion: reduce) { .page-bg video { display: none; } }

/* ------- layout helpers ------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.center { text-align: center; }
.grid { display: grid; gap: clamp(18px, 3vw, 30px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--gold); border-radius: 3px; }
.center .eyebrow::before { display: none; }
.section-head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 52px); }
.section-head p { margin-top: 14px; font-size: 1.08rem; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ------- buttons ------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .6px; font-weight: 600;
  font-size: 1.08rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  will-change: transform;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(227,93,24,.32); }
.btn--primary:hover { background: var(--orange-600); box-shadow: 0 12px 26px rgba(227,93,24,.4); }
.btn--gold { background: var(--gold); color: #16233f; box-shadow: 0 8px 20px rgba(242,165,30,.32); }
.btn--gold:hover { background: #ffb733; }
.btn--ghost { background: transparent; color: var(--heading); border-color: rgba(255,255,255,.24); }
.btn--ghost:hover { border-color: var(--gold); background: rgba(255,255,255,.06); }
.btn--on-dark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--on-dark:hover { background: rgba(255,255,255,.16); }
.btn--lg { padding: 18px 34px; font-size: 1.2rem; }
.btn--block { width: 100%; }

/* ------- header ------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(8,13,22,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(8,13,22,.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-text { font-family: var(--font-display); text-transform: uppercase; line-height: 1; }
.brand-text b { display: block; font-size: 1.15rem; color: var(--heading); letter-spacing: .4px; }
.brand-text span { font-size: .72rem; letter-spacing: 2px; color: var(--orange); font-weight: 600; }
@media (max-width: 480px) { .brand-text { display: none; } }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .5px;
  font-weight: 600; font-size: 1.05rem; color: var(--heading);
  padding: 9px 14px; border-radius: 10px; transition: background .15s, color .15s;
}
.nav a:hover, .nav a.active { background: rgba(255,255,255,.08); color: var(--orange); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--heading);
  letter-spacing: .5px;
}
.header-phone svg { width: 20px; height: 20px; color: var(--orange); }
.header-phone span { display: block; }
.header-phone small { display: block; font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }

.nav-toggle { display: none; background: var(--navy); color: #fff; border: 0; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 1024px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 80;
  background: var(--navy);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 24px var(--gutter);
  visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-nav-top .brand-text b { color: #fff; }
.mobile-nav-close { background: rgba(255,255,255,.12); color: #fff; border: 0; width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.mobile-nav-close svg { width: 26px; height: 26px; }
.mobile-nav a.m-link {
  font-family: var(--font-display); text-transform: uppercase; font-size: 1.9rem; font-weight: 600;
  color: #fff; padding: 14px 0; border-bottom: 1px solid var(--line-dark); letter-spacing: 1px;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a.m-link:hover { color: var(--gold); }
.mobile-nav .m-actions { margin-top: auto; display: grid; gap: 12px; padding-top: 24px; }

/* ------- hero ------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(242,165,30,.16), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(227,93,24,.14), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, #101b33 55%, #0d1730 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 39.5H40M39.5 0V40' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 104px); }
@media (max-width: 940px) { .hero-inner { grid-template-columns: 1fr; gap: 30px; } }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold); display: block; }
.hero .lead { color: rgba(255,255,255,.82); max-width: 560px; margin-top: 18px; font-size: 1.2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 15px; border-radius: 999px; font-size: .92rem; font-weight: 500;
}
.pill svg { width: 17px; height: 17px; color: var(--gold); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: rgba(255,255,255,.75); font-size: .95rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }

.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero-visual .logo-glow { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(242,165,30,.35), transparent 62%); filter: blur(20px); }
.hero-visual img { position: relative; width: min(460px, 90%); filter: drop-shadow(0 30px 50px rgba(0,0,0,.5)); }
@media (max-width: 940px) { .hero-visual { order: -1; } .hero-visual img { width: min(320px, 70%); } }

/* floating quote card on hero */
.hero-card {
  position: relative; z-index: 3; margin: 6px auto 0;
  background: var(--paper); color: var(--ink); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
  max-width: 320px; border: 1px solid var(--line);
}
.hero-card .ico { width: 44px; height: 44px; flex: none; border-radius: 12px; background: rgba(47,158,95,.12); color: var(--good); display: grid; place-items: center; }
.hero-card .ico svg { width: 24px; height: 24px; }
.hero-card b { font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; color: var(--heading); }
.hero-card small { color: var(--muted); font-size: .82rem; }
@media (max-width: 940px) { .hero-card { display: none; } }

/* ------- trust strip ------- */
.trust-strip { background: var(--navy-800); color: #fff; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 30px; padding-block: 22px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 28px; height: 28px; color: var(--gold); flex: none; }
.trust-item b { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; display: block; line-height: 1; }
.trust-item small { color: rgba(255,255,255,.7); font-size: .82rem; }

/* ------- cards ------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d9d3c5; }
.card .card-ico {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(140deg, var(--navy), var(--navy-700)); color: var(--gold);
}
.card .card-ico svg { width: 30px; height: 30px; }
.card h3 { color: var(--heading); margin-bottom: 8px; }
.card p { font-size: .98rem; }
.card .card-link { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 600; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .5px; }
.card .card-link svg { width: 16px; height: 16px; transition: transform .15s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* service card list variant */
.svc-list { display: grid; gap: 10px; margin-top: 16px; }
.svc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .97rem; color: var(--ink-soft); }
.svc-list li svg { width: 20px; height: 20px; color: var(--good); flex: none; margin-top: 2px; }

/* ------- how it works ------- */
.steps { counter-reset: step; }
.step { position: relative; text-align: center; padding: 30px 22px; }
.step .num {
  width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.9rem; font-weight: 700;
  color: #fff; background: var(--orange); box-shadow: 0 10px 22px rgba(227,93,24,.3);
}
.step h3 { color: var(--heading); margin-bottom: 8px; }
.steps.grid { position: relative; }

/* ------- split feature ------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split.reverse .split-media { order: 0; } }
.feature-list { display: grid; gap: 18px; margin-top: 24px; }
.feature-list li { display: flex; gap: 14px; }
.feature-list .fi {
  width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: rgba(242,165,30,.14); color: var(--orange);
}
.feature-list .fi svg { width: 24px; height: 24px; }
.feature-list b { font-family: var(--font-display); text-transform: uppercase; color: var(--heading); font-size: 1.15rem; display: block; }
.feature-list p { font-size: .95rem; margin-top: 2px; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--navy); aspect-ratio: 4/3; position: relative; }
.media-frame.on-navy { display: grid; place-items: center; padding: 30px; }
.media-frame.on-navy img { width: 78%; filter: drop-shadow(0 18px 30px rgba(0,0,0,.4)); }

/* framed photo (e.g. the family photo on About) */
.about-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: var(--paper); max-width: 460px; }
.about-photo img { width: 100%; height: auto; display: block; }
.about-photo figcaption { padding: 13px 16px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .6px; font-size: .92rem; color: var(--ink-soft); text-align: center; }
@media (max-width: 860px) { .about-photo { max-width: 100%; margin-inline: auto; } }

/* ------- stats band ------- */
.stats { background: linear-gradient(160deg, var(--navy) 0%, #101b33 100%); color: #fff; text-align: center; }
.stat b { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4rem); color: var(--gold); display: block; line-height: 1; }
.stat span { text-transform: uppercase; letter-spacing: 1.5px; font-size: .88rem; color: rgba(255,255,255,.75); font-weight: 600; }

/* ------- reviews ------- */
.review-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.review-card .stars { margin-bottom: 12px; }
.review-card p { color: var(--ink); font-size: 1.02rem; }
.review-card .who { margin-top: auto; padding-top: 18px; display: flex; align-items: center; gap: 12px; }
.review-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.review-card .who b { color: var(--heading); font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; }
.review-card .who small { color: var(--muted); display: block; }

/* ------- FAQ accordion ------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-display); text-transform: uppercase; font-size: 1.2rem; font-weight: 600; color: var(--heading); }
.faq-q .chev { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--cream-200); display: grid; place-items: center; transition: transform .25s, background .25s; }
.faq-q .chev svg { width: 16px; height: 16px; color: var(--orange); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--orange); }
.faq-item.open .faq-q .chev svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; font-size: 1rem; }

/* ------- CTA band ------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 90% 20%, rgba(242,165,30,.22), transparent 60%),
    linear-gradient(140deg, var(--orange) 0%, #c74e11 100%);
  color: #fff; text-align: center; border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 68px) var(--gutter); box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 14px auto 26px; font-size: 1.12rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ------- forms ------- */
.form-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .5px; font-size: .95rem; font-weight: 600; color: var(--heading); margin-bottom: 7px; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: rgba(255,255,255,.04); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(227,93,24,.14); }
.field select option { background-color: #16233b; color: #e9edf4; }
.field select option:checked { background-color: var(--orange); color: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }

/* ------- contact info blocks ------- */
.info-card { display: flex; gap: 16px; padding: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.info-card .ci { width: 50px; height: 50px; flex: none; border-radius: 12px; background: linear-gradient(140deg, var(--navy), var(--navy-700)); color: var(--gold); display: grid; place-items: center; }
.info-card .ci svg { width: 26px; height: 26px; }
.info-card b { font-family: var(--font-display); text-transform: uppercase; color: var(--heading); display: block; font-size: 1.1rem; }
.info-card a, .info-card p { color: var(--ink-soft); font-size: 1rem; }
.info-card a:hover { color: var(--orange); }

/* ------- page hero (inner pages) ------- */
.page-hero { background: linear-gradient(160deg, var(--navy) 0%, #101b33 100%); color: #fff; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 39.5H40M39.5 0V40' stroke='%23ffffff' stroke-opacity='0.04'/%3E%3C/svg%3E"); }
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(48px, 7vw, 80px); text-align: center; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 640px; margin: 16px auto 0; font-size: 1.15rem; }
.breadcrumbs { display: flex; gap: 8px; justify-content: center; margin-bottom: 18px; font-size: .9rem; color: rgba(255,255,255,.6); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gold); }

/* ------- areas list ------- */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 720px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
.area-chip { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; font-weight: 600; color: var(--heading); box-shadow: var(--shadow-sm); }
.area-chip svg { width: 20px; height: 20px; color: var(--orange); flex: none; }
.area-chip.county { background: var(--navy); color: #fff; border-color: var(--heading); }
.area-chip.county svg { color: var(--gold); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ------- footer ------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding-top: clamp(48px, 6vw, 72px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 84px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1.25rem; margin-bottom: 16px; letter-spacing: .8px; }
.footer ul li { margin-bottom: 10px; }
.footer a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: 3px; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .15s, transform .15s; }
.social a:hover { background: var(--orange); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 22px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .88rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ------- mobile sticky call bar ------- */
.call-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); box-shadow: 0 -6px 20px rgba(0,0,0,.18); }
.call-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 15px; font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 1.1rem; color: #fff; }
.call-bar a svg { width: 20px; height: 20px; }
.call-bar .cb-call { background: var(--orange); }
.call-bar .cb-quote { background: var(--navy-700); }
@media (max-width: 1024px) { .call-bar { display: grid; } body { padding-bottom: 60px; } }

/* ------- back to top ------- */
.to-top { position: fixed; right: 20px; bottom: 78px; z-index: 65; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; border: 0; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s; box-shadow: var(--shadow-md); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; }
@media (max-width: 1024px) { .to-top { bottom: 86px; } }

/* ------- scroll reveal ------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ------- misc ------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.mini-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--cream-200); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: .88rem; font-weight: 600; color: var(--heading); }
.mini-badge svg { width: 16px; height: 16px; color: var(--good); }
.text-block > * + * { margin-top: 16px; }
.text-block h2 { color: var(--heading); margin-top: 8px; }
.text-block h3 { color: var(--heading); }
.tag { display: inline-block; background: rgba(227,93,24,.16); color: #ff8b4d; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; font-size: .8rem; font-weight: 600; padding: 5px 12px; border-radius: 8px; }
.divider { height: 1px; background: var(--line); margin: 8px 0; }
.alert { background: rgba(53,176,106,.12); border: 1px solid rgba(53,176,106,.35); color: #86e0ab; border-radius: 12px; padding: 16px 18px; display: flex; gap: 12px; align-items: flex-start; }
.alert svg { width: 22px; height: 22px; flex: none; color: var(--good); }
