:root {
  /* Palette sampled directly from the client's Google Business Profile logo:
     navy ink #062E49 on cream #F7EEDB. Brass is the one added accent — cream
     cannot carry a call-to-action on its own. */
  --navy: #0A314F;
  --navy-deep: #062033;
  --navy-mid: #12405F;
  --navy-soft: #1B5075;
  --cream: #F7EEDB;
  --cream-page: #FBF6EA;
  --cream-deep: #F1E4C8;
  --card: #FFFDF6;
  --brass: #C98A2B;
  --brass-bright: #E3A94A;
  --brass-pale: #F4DDAE;
  --ink: #13293D;
  --muted: #5A6B7B;
  --line: rgba(10, 49, 79, .16);
  --line-soft: rgba(10, 49, 79, .09);
  --line-dark: rgba(247, 238, 219, .18);
  --shadow: 0 22px 60px rgba(6, 32, 51, .16);
  --shadow-dark: 0 24px 70px rgba(6, 32, 51, .42);
  --radius: 12px;
  --bg-drift: 0px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream-page); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, a, span, strong, article, section, div { min-width: 0; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { font-family: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif; font-weight: 900; letter-spacing: -.02em; }
.inline-link { color: var(--navy); font-weight: 800; text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 3px; }

/* ---------------- header ---------------- */
.site-header { position: sticky; top: 0; z-index: 50; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px clamp(16px, 4vw, 56px); background: rgba(6, 32, 51, .96); border-bottom: 1px solid rgba(227, 169, 74, .3); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { width: 52px; height: auto; flex: 0 0 auto; }
.brand-text { display: grid; gap: 0; line-height: 1.05; color: var(--cream); }
.brand-text strong { font-size: 1.32rem; letter-spacing: .04em; color: var(--cream); font-weight: 900; }
.brand-text > span { color: var(--brass-bright); font-size: .6rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; margin-top: 3px; }
.brand-text small { color: rgba(247, 238, 219, .55); font-size: .53rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; gap: 24px; color: rgba(247, 238, 219, .84); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.nav-links a:hover { color: var(--brass-bright); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.phone-link { color: var(--cream); font-weight: 900; white-space: nowrap; }
.phone-link:hover { color: var(--brass-bright); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(247, 238, 219, .28); border-radius: 12px; background: transparent; position: relative; }
.menu-toggle span, .menu-toggle:before, .menu-toggle:after { content: ""; position: absolute; left: 12px; right: 12px; height: 2px; border-radius: 999px; background: var(--cream); }
.menu-toggle span { top: 22px; }
.menu-toggle:before { top: 15px; }
.menu-toggle:after { top: 29px; }
.mobile-menu { display: none; }

/* ---------------- buttons ----------------
   .primary  brass fill, navy ink  — safe on light AND dark
   .light    cream fill, navy ink  — dark backgrounds only
   .ghost    cream outline         — dark backgrounds only
   .ink      navy fill, cream ink  — light backgrounds only              */
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 12px; padding: 0 22px; font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .035em; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; text-align: center; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(6, 32, 51, .26); }
.btn.primary { background: linear-gradient(180deg, var(--brass-bright), var(--brass)); color: #2B1B02; box-shadow: 0 6px 18px rgba(201, 138, 43, .3); }
.btn.light { background: var(--cream); color: var(--navy-deep); border-color: var(--cream); }
.btn.ghost { color: var(--cream); border-color: rgba(247, 238, 219, .55); background: transparent; }
.btn.ghost:hover { background: rgba(247, 238, 219, .1); }
.btn.ink { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn.ink:hover { background: var(--navy-mid); }
.btn.small { min-height: 42px; padding: 0 18px; }

/* ---------------- hero ---------------- */
.hero { position: relative; isolation: isolate; min-height: calc(100svh - 78px); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); align-items: center; gap: clamp(30px, 5vw, 70px); padding: clamp(42px, 7vw, 92px) clamp(16px, 5vw, 76px); background: radial-gradient(circle at 84% 6%, rgba(227, 169, 74, .2), transparent 44%), radial-gradient(circle at 8% 96%, rgba(27, 80, 117, .5), transparent 46%), linear-gradient(155deg, var(--navy-deep), #072940 58%, #0B3856); color: var(--cream); overflow: hidden; }
.hero > *:not(.road-motion) { position: relative; z-index: 1; }
.road-motion { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.glow { position: absolute; top: -20%; right: -8%; width: 58vw; max-width: 620px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(227, 169, 74, .3), rgba(201, 138, 43, .12) 46%, transparent 68%); transform: translate3d(0, var(--bg-drift), 0); transition: transform .2s ease-out; }
.lane { position: absolute; left: -10%; right: -10%; height: 3px; background: repeating-linear-gradient(90deg, rgba(247, 238, 219, .34) 0 46px, transparent 46px 104px); animation: laneRun 2.6s linear infinite; }
.lane-1 { bottom: 16%; transform: rotate(-1.4deg); opacity: .5; }
.lane-2 { bottom: 8%; transform: rotate(-.7deg); opacity: .28; animation-duration: 3.7s; }
@keyframes laneRun { to { background-position-x: -104px; } }
.lights { position: absolute; inset: 0; }
.lights i { position: absolute; top: var(--y); right: -30px; width: var(--s); height: var(--s); border-radius: 50%; background: radial-gradient(circle at 36% 32%, #fff, rgba(227, 169, 74, .9) 44%, transparent 76%); box-shadow: 0 0 10px rgba(227, 169, 74, .7); animation: streak var(--t) linear infinite; animation-delay: var(--d); }
@keyframes streak {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: .85; }
  88% { opacity: .5; }
  100% { transform: translateX(-114vw); opacity: 0; }
}
.hero h1, .subhero h1, .detail-hero h1, .contact-hero h1 { margin: 0; font-size: clamp(2.6rem, 5.8vw, 5rem); line-height: 1.03; max-width: 16ch; text-wrap: balance; color: var(--cream); }
.hero p, .subhero p, .detail-hero p, .contact-hero p { color: rgba(247, 238, 219, .82); font-size: clamp(1.05rem, 2vw, 1.26rem); max-width: 660px; }
.eyebrow { display: inline-flex; margin-bottom: 16px; color: var(--brass); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; }
.hero .eyebrow, .dark .eyebrow, .cta-band .eyebrow, .subhero .eyebrow, .detail-hero .eyebrow, .contact-hero .eyebrow, .guarantee-band .eyebrow { color: var(--brass-bright); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 34px; max-width: 740px; }
.trust-row span { display: grid; align-content: center; gap: 2px; min-height: 78px; padding: 14px 16px; border: 1px solid rgba(247, 238, 219, .2); border-radius: var(--radius); background: rgba(247, 238, 219, .07); color: rgba(247, 238, 219, .78); font-size: .88rem; font-weight: 700; }
.trust-row span strong { color: var(--cream); font-size: 1.02rem; font-weight: 900; }
/* Bottom padding reserves room for the absolutely-positioned .hero-badge so it
   never covers the "MOBILE AUTO REPAIRS" arc at the base of the logo crest. */
.hero-visual { position: relative; min-height: 500px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-dark); background: radial-gradient(circle at 50% 34%, rgba(27, 80, 117, .8), rgba(6, 32, 51, .9)); border: 1px solid rgba(227, 169, 74, .3); display: flex; align-items: center; justify-content: center; padding: 34px 30px 178px; }
.hero-crest { width: min(72%, 272px); height: auto; animation: crestIn 1s cubic-bezier(.2, .9, .3, 1.15) both; }
@keyframes crestIn { from { transform: scale(.86) translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
.hero-badge { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2; padding: 18px 20px; border-radius: var(--radius); background: rgba(251, 246, 234, .97); color: var(--ink); backdrop-filter: blur(14px); box-shadow: 0 14px 40px rgba(6, 32, 51, .38); }
.hero-badge strong { display: block; font-family: "Segoe UI", system-ui, sans-serif; font-weight: 900; font-size: clamp(1.14rem, 2.2vw, 1.48rem); line-height: 1.14; color: var(--navy-deep); }
.hero-badge span { display: block; color: var(--muted); margin-top: 8px; font-size: .93rem; }

/* ---------------- ribbon & pills ---------------- */
.service-ribbon { display: flex; flex-wrap: wrap; gap: 10px; padding: 18px clamp(16px, 5vw, 76px); background: var(--navy); border-bottom: 1px solid var(--line-dark); }
.service-ribbon span { display: inline-flex; padding: 10px 16px; border: 1px solid rgba(247, 238, 219, .2); border-radius: 999px; background: rgba(247, 238, 219, .06); color: rgba(247, 238, 219, .9); font-weight: 800; font-size: .92rem; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: inline-flex; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); color: var(--navy); font-weight: 800; font-size: .95rem; transition: border-color .16s ease, color .16s ease, transform .16s ease; }
.pill:hover { border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }

/* ---------------- sections ---------------- */
.section { padding: clamp(64px, 9vw, 112px) clamp(16px, 5vw, 76px); }
.section.soft { background: var(--cream-deep); }
.section.dark { background: linear-gradient(150deg, var(--navy-deep), var(--navy) 70%); color: var(--cream); }
.section-head { max-width: 900px; margin-bottom: 34px; }
.section h2 { margin: 0 0 14px; font-size: clamp(2rem, 4.2vw, 3.5rem); line-height: 1.06; text-wrap: balance; color: var(--navy-deep); }
.dark h2, .introband h2, .cta-band h2, .guarantee-band h2 { color: var(--cream); }
.section-head p, .two-col p, .service-card p, .process-grid p, .faq-list p, .stacked-list p, .value-card p, .review-card p { color: var(--muted); font-size: 1.02rem; }
.dark p, .dark .stacked-list p, .dark .section-head p { color: rgba(247, 238, 219, .8); }
.split, .two-col { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(28px, 6vw, 70px); align-items: center; }
.stacked-list { display: grid; gap: 12px; }
.stacked-list article { border: 1px solid rgba(247, 238, 219, .18); border-radius: var(--radius); background: rgba(247, 238, 219, .06); padding: 22px; }
.stacked-list strong { font-size: 1.18rem; font-weight: 900; color: var(--cream); }
.stacked-list p { margin: 8px 0 0; }

/* ---------------- intro band (light) ---------------- */
.introband { display: grid; grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr); gap: clamp(28px, 6vw, 64px); align-items: center; background: linear-gradient(135deg, var(--cream), var(--cream-deep)); }
.introband h2 { color: var(--navy-deep); }
.introband p { color: #4A5A6A; }
.introband .eyebrow { color: var(--brass); }
.introband-tally { display: inline-flex; align-items: center; gap: 16px; margin: 26px 0 6px; flex-wrap: wrap; }
.tally-a { color: var(--muted); font-size: clamp(1.02rem, 2.1vw, 1.3rem); font-weight: 800; }
.tally-arrow { color: var(--brass); font-size: 1.6rem; font-weight: 900; }
.tally-b { color: var(--navy-deep); font-size: clamp(1.28rem, 2.7vw, 1.85rem); font-weight: 900; }
.introband-panel { border: 1px solid var(--line); border-radius: 16px; background: var(--card); padding: clamp(22px, 3vw, 30px); box-shadow: var(--shadow); }
.introband-panel-head { display: block; color: var(--brass); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; margin-bottom: 16px; }
.introband-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.introband-list li { position: relative; padding: 13px 12px 13px 42px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--cream-page); color: var(--navy-deep); font-weight: 700; font-size: .93rem; }
.introband-list li:before { content: ""; position: absolute; left: 14px; top: 50%; width: 15px; height: 9px; margin-top: -6px; border-left: 3px solid var(--brass); border-bottom: 3px solid var(--brass); transform: rotate(-45deg); }

/* ---------------- cards ---------------- */
.card-grid { display: grid; gap: 16px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { display: flex; flex-direction: column; padding: 26px 24px 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brass); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(140deg, var(--brass-pale), #FCF1DA); color: var(--navy); margin-bottom: 18px; }
.svc-icon { width: 30px; height: 30px; }
.service-eyebrow { color: var(--brass); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.service-card h3 { margin: 8px 0 0; font-size: clamp(1.22rem, 2vw, 1.45rem); line-height: 1.15; color: var(--navy-deep); }
.service-card p { margin: 10px 0 16px; flex: 1; }
.service-more { color: var(--navy); font-weight: 900; font-size: .92rem; }
.service-card:hover .service-more { color: var(--brass); }

/* ---------------- reviews ---------------- */
.reviews-band { background: var(--cream-deep); }
.review-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.review-card { display: flex; flex-direction: column; padding: 24px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); box-shadow: 0 10px 30px rgba(6, 32, 51, .07); }
.review-card .stars { color: var(--brass-bright); font-size: 1.05rem; letter-spacing: .12em; margin-bottom: 12px; }
.review-card p { flex: 1; margin: 0 0 16px; color: var(--ink); font-size: 1rem; line-height: 1.6; }
.review-card footer { display: grid; gap: 2px; border-top: 1px solid var(--line-soft); padding-top: 12px; }
.review-card footer strong { color: var(--navy-deep); font-weight: 900; font-size: .98rem; }
.review-card footer span { color: var(--muted); font-size: .82rem; font-weight: 700; }
.reviews-band .hero-actions { margin-top: 30px; }

/* ---------------- mission / guarantee / cta ---------------- */
.mission-band { background: linear-gradient(135deg, var(--brass), var(--brass-bright)); color: #2B1B02; text-align: center; }
.mission-inner { max-width: 960px; margin: 0 auto; }
.mission-band .eyebrow { color: #2B1B02; }
.mission-quote { font-family: "Segoe UI", system-ui, sans-serif; font-weight: 900; font-size: clamp(1.45rem, 3.4vw, 2.4rem); line-height: 1.3; color: #2B1B02; margin: 6px 0 0; text-wrap: balance; letter-spacing: -.01em; }
.guarantee-band { background: linear-gradient(135deg, var(--navy-deep), var(--navy) 58%, #16496B); color: var(--cream); }
.guarantee-inner { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(20px, 4vw, 44px); align-items: center; max-width: 1000px; margin: 0 auto; }
.guarantee-icon { display: inline-flex; align-items: center; justify-content: center; width: clamp(84px, 12vw, 128px); height: clamp(84px, 12vw, 128px); border-radius: 26px; background: rgba(227, 169, 74, .16); border: 1px solid rgba(227, 169, 74, .45); color: var(--brass-bright); flex: 0 0 auto; }
.gshield { width: 56%; height: 56%; }
.guarantee-band p { color: rgba(247, 238, 219, .82); max-width: 640px; }
.value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.value-card { padding: 24px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); }
.value-card h3 { margin: 0 0 10px; font-size: 1.18rem; color: var(--navy-deep); line-height: 1.16; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.process-grid article { padding: 24px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); }
.process-grid span { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(140deg, var(--brass-bright), var(--brass)); color: #2B1B02; font-weight: 900; }
.process-grid h3 { margin: 16px 0 8px; font-size: 1.2rem; color: var(--navy-deep); }
.faq-list { display: grid; gap: 10px; max-width: 980px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); padding: 18px 20px; }
.faq-list summary { cursor: pointer; font-size: 1.05rem; font-weight: 900; color: var(--navy-deep); }
.faq-list p { margin: 12px 0 0; }
.cta-band { margin: 0 clamp(16px, 5vw, 76px) clamp(64px, 9vw, 96px); padding: clamp(28px, 5vw, 56px); border-radius: 20px; background: linear-gradient(135deg, var(--navy-deep), var(--navy) 62%, #16496B); color: var(--cream); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; }
.cta-band p { color: rgba(247, 238, 219, .88); max-width: 720px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* ---------------- sub-page heroes ---------------- */
.subhero { padding: clamp(78px, 11vw, 140px) clamp(16px, 5vw, 76px) 56px; background: radial-gradient(circle at 86% 2%, rgba(227, 169, 74, .18), transparent 46%), linear-gradient(152deg, var(--navy-deep), #072940 62%, #0B3856); color: var(--cream); }
.subhero h1 { max-width: 20ch; }
.detail-hero, .contact-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr); gap: clamp(28px, 5vw, 62px); align-items: center; padding: clamp(70px, 10vw, 124px) clamp(16px, 5vw, 76px); background: radial-gradient(circle at 88% 6%, rgba(227, 169, 74, .18), transparent 44%), linear-gradient(152deg, var(--navy-deep), #072940 62%, #0B3856); color: var(--cream); }
.detail-hero h1, .contact-hero h1 { max-width: 16ch; }
.detail-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; min-height: 300px; border-radius: 20px; background: radial-gradient(circle at 50% 38%, rgba(27, 80, 117, .75), rgba(6, 32, 51, .92)); border: 1px solid rgba(227, 169, 74, .32); box-shadow: var(--shadow-dark); padding: 40px; }
.detail-icon { width: 96px; height: 96px; color: var(--brass-bright); }
.detail-visual > span { color: var(--cream); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; text-align: center; }
.check-list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 0; margin: 0; }
.check-list.wide { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 940px; }
.check-list li { position: relative; padding: 15px 15px 15px 46px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); color: var(--ink); font-weight: 700; }
.check-list li:before { content: ""; position: absolute; left: 16px; top: 50%; width: 14px; height: 9px; margin-top: -6px; border-left: 3px solid var(--brass); border-bottom: 3px solid var(--brass); transform: rotate(-45deg); }

/* ---------------- county accordion (service areas) ---------------- */
.county-list { display: grid; gap: 12px; }
.county-group { border: 1px solid var(--line); border-radius: 16px; background: var(--card); overflow: hidden; }
.county-group > summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-weight: 900; color: var(--navy-deep); }
.county-group > summary::-webkit-details-marker { display: none; }
.county-group > summary:hover { background: var(--cream); }
.county-name { font-size: clamp(1.08rem, 2vw, 1.32rem); }
.county-count { flex: 0 0 auto; padding: 5px 12px; border-radius: 999px; background: var(--brass-pale); color: #6A4408; font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.county-group[open] > summary { border-bottom: 1px solid var(--line-soft); background: var(--cream); }
.county-group > .pill-grid { padding: 20px 22px 24px; }

/* ---------------- contact ---------------- */
.estimate-card { padding: clamp(22px, 4vw, 36px); background: var(--card); color: var(--ink); border-radius: 20px; box-shadow: var(--shadow-dark); border: 1px solid var(--line); }
/* Explicit colours here — the surrounding .contact-hero is dark, and inheriting
   its cream text would make this card's copy invisible on the light panel. */
.estimate-card h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); color: var(--navy-deep); margin: 0 0 12px; }
.estimate-card p { color: var(--muted); }
.contact-lead { color: var(--muted); margin: 0 0 22px; font-size: 1rem; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-list li { display: grid; gap: 3px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-list span:first-child { color: var(--brass); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.contact-list a, .contact-list li > span:last-child { font-size: 1.06rem; font-weight: 800; color: var(--ink); }
.contact-list a:hover { color: var(--brass); }
.form-placeholder { border: 2px dashed rgba(201, 138, 43, .6); border-radius: var(--radius); background: linear-gradient(180deg, var(--cream), var(--card)); padding: clamp(24px, 4vw, 38px); text-align: center; margin: 0 0 24px; }
.form-placeholder-tag { display: inline-flex; margin-bottom: 14px; padding: 6px 12px; border-radius: 999px; background: var(--navy-deep); color: var(--brass-pale); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.form-placeholder-title { margin: 0 0 6px; font-size: 1.16rem; font-weight: 900; color: var(--navy-deep); }
.form-placeholder-note { margin: 0 0 20px; color: var(--muted); font-size: .96rem; }
.form-placeholder-actions { display: grid; gap: 10px; }

/* ---------------- about art ---------------- */
.about-art { border-radius: 20px; overflow: hidden; background: radial-gradient(circle at 50% 40%, var(--navy-soft), var(--navy-deep)); border: 1px solid rgba(227, 169, 74, .3); padding: clamp(28px, 5vw, 56px); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; }
.about-art img { width: min(80%, 320px); height: auto; }

/* ---------------- footer ---------------- */
.footer { display: flex; justify-content: space-between; gap: 30px; padding: 52px clamp(16px, 5vw, 76px); background: var(--navy-deep); color: var(--cream); }
.footer .brand { width: fit-content; }
.footer p { color: rgba(247, 238, 219, .64); max-width: 500px; margin-top: 16px; }
.footer .footer-note { color: rgba(227, 169, 74, .84); font-weight: 800; font-size: .9rem; margin-top: 12px; }
.footer-grid { display: grid; grid-template-columns: repeat(2, max-content); gap: 10px 24px; color: rgba(247, 238, 219, .82); }
.footer-grid a:hover { color: var(--brass-bright); }
.mobile-sticky { display: none; opacity: 0; transform: translateY(18px); pointer-events: none; }

/* Reveal defaults to visible so the page never depends on JS to show content. */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
html.js .reveal.in { opacity: 1; transform: none; }

.sms-consent { margin-top: 18px; max-width: 640px; font-size: .82rem; line-height: 1.55; color: rgba(247, 238, 219, .7); }
.sms-consent a { color: var(--brass-bright); text-decoration: underline; }
.legal-section { max-width: 880px; }
.legal-prose { color: var(--ink); }
.legal-prose .updated { color: var(--muted); font-size: .95rem; margin: 0 0 28px; }
.legal-prose h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); line-height: 1.18; margin: 36px 0 12px; color: var(--navy-deep); }
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose p, .legal-prose li { color: var(--ink); font-size: 1.01rem; line-height: 1.72; }
.legal-prose ul { padding-left: 22px; margin: 0 0 14px; display: grid; gap: 6px; }
.legal-prose a { color: var(--navy); text-decoration: underline; }
.legal-prose strong { font-weight: 800; }

@media (max-width: 1160px) {
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1040px) {
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; inset: 80px 16px auto; z-index: 49; display: grid; gap: 6px; padding: 10px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none; transition: .18s ease; }
  body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .mobile-menu a { padding: 14px; border-radius: var(--radius); color: var(--navy-deep); font-weight: 900; }
  .hero, .detail-hero, .contact-hero, .split, .two-col, .cta-band, .introband { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  /* Single-column hero: drop the badge into normal flow under the crest so it
     can never overlap the logo, whatever the badge copy wraps to. */
  .hero-visual { min-height: 0; padding: 30px; flex-direction: column; gap: 20px; }
  .hero-crest { width: min(58%, 240px); }
  .hero-badge { position: static; left: auto; right: auto; bottom: auto; width: 100%; }
  .card-grid.three, .process-grid, .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-actions { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .site-header { min-height: 68px; padding: 10px 12px; }
  .brand { gap: 9px; }
  .brand-mark { width: 42px; }
  .brand-text strong { font-size: 1.08rem; }
  .brand-text > span { font-size: .52rem; letter-spacing: .13em; }
  .brand-text small { display: none; }
  .hero { padding: 36px 12px 48px; gap: 24px; }
  .hero h1, .subhero h1, .detail-hero h1, .contact-hero h1 { font-size: clamp(2.2rem, 8.6vw, 3.1rem); max-width: 16ch; }
  .hero p, .subhero p, .detail-hero p, .contact-hero p { font-size: 1rem; line-height: 1.56; }
  .hero-actions, .cta-actions, .reviews-band .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .trust-row, .card-grid.three, .process-grid, .value-grid, .check-list, .check-list.wide, .introband-list, .review-grid { grid-template-columns: 1fr; }
  .trust-row span { min-height: 66px; }
  .section, .subhero, .detail-hero, .contact-hero { padding-left: 12px; padding-right: 12px; }
  .section h2 { font-size: clamp(1.85rem, 7.6vw, 2.5rem); }
  .hero-visual { padding: 22px; }
  .hero-crest { width: min(64%, 210px); }
  .detail-visual { min-height: 240px; padding: 30px; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .cta-band { margin-left: 12px; margin-right: 12px; margin-bottom: 78px; }
  .county-group > summary { padding: 16px; }
  .county-group > .pill-grid { padding: 16px; }
  .footer { display: grid; padding-bottom: 92px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-sticky { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; display: flex; box-shadow: var(--shadow); transition: opacity .22s ease, transform .22s ease; }
  body.show-mobile-sticky .mobile-sticky { opacity: 1; transform: translateY(0); pointer-events: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .lights, .lane { display: none; }
  .hero-crest { transform: none; opacity: 1; }
  html.js .reveal { opacity: 1; transform: none; }
}