/* ==========================================================================
   Elite Autos Repair — Mobile Service Repair, Ajax ON
   Stylesheet: design tokens, layout, components
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand colours sampled from the Elite Autos Repair logo */
  --ink:        #0F1012;
  --steel:      #191B1E;
  --steel-2:    #26292E;
  --bay:        #F2F3F5;
  --card:       #FFFFFF;

  --red:        #D80000;   /* logo red — fills, buttons, rules */
  --red-lt:     #FF3B30;   /* red on dark backgrounds (contrast-safe) */
  --red-dk:     #A80000;   /* hover, and small red text on light */

  --text-dark:  #121316;
  --text-mute:  #5A6068;
  --text-light: #EBECEE;
  --text-dim:   #9A9FA6;

  --line-dark:  rgba(255, 255, 255, .12);
  --line-light: #DEE1E5;

  --ff-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --ff-body:    "IBM Plex Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --ff-mono:    "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --wrap: 1180px;
  --gut: 24px;
  --r-s: 6px;
  --r-m: 12px;
  --r-l: 20px;

  --shadow-s: 0 2px 8px rgba(14, 20, 27, .08);
  --shadow-m: 0 18px 44px -22px rgba(14, 20, 27, .45);
  --shadow-l: 0 40px 80px -40px rgba(0, 0, 0, .7);

  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bay);
  color: var(--text-dark);
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--ff-display); font-weight: 800; line-height: 1.02; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
h2 + p, h3 + p { margin-top: 16px; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure, blockquote, dl, dd { margin: 0; }
table { border-collapse: collapse; }

:focus-visible {
  outline: 3px solid var(--red-lt);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--red); color: var(--ink);
  padding: 12px 20px; font-weight: 700;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- 3. Layout primitives ---------- */
.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.sec { padding-block: clamp(60px, 8.5vw, 112px); position: relative; }
.sec--tight { padding-block: clamp(44px, 5.5vw, 68px); }
.sec--dark { background: var(--ink); color: var(--text-light); }
.sec--steel { background: var(--steel); color: var(--text-light); }
.sec--light { background: var(--bay); color: var(--text-dark); }
.sec--white { background: #fff; color: var(--text-dark); }

.sec--dark h2, .sec--steel h2, .sec--dark h3, .sec--steel h3 { color: #fff; }
.sec--dark p, .sec--steel p { color: var(--text-dim); }

/* signature motif: hazard chevrons lifted from the van livery */
.chev {
  height: 10px;
  background-image: repeating-linear-gradient(115deg,
    var(--red) 0 18px, transparent 18px 36px);
  background-color: var(--ink);
}

.eyebrow {
  font-family: var(--ff-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red-dk);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); flex: none; }
.sec--dark .eyebrow, .sec--steel .eyebrow { color: var(--red-lt); }

.h-xl { font-size: clamp(2.6rem, 6.6vw, 5rem); font-variation-settings: "wdth" 112; letter-spacing: -.025em; }
.h-l  { font-size: clamp(1.95rem, 4vw, 3rem);  font-variation-settings: "wdth" 108; }
.h-m  { font-size: clamp(1.35rem, 2vw, 1.6rem); font-variation-settings: "wdth" 104; }

.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.6; color: var(--text-mute); max-width: 60ch; }
.sec--dark .lede, .sec--steel .lede { color: var(--text-dim); }

.sec__head { max-width: 720px; margin-bottom: clamp(34px, 4.5vw, 56px); }
.sec__head--center { margin-inline: auto; text-align: center; }
.sec__head--center .eyebrow { justify-content: center; }
.sec__head--center .lede { margin-inline: auto; }
.sec__head .lede { margin-top: 18px; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  border: 2px solid transparent;
  border-radius: var(--r-s);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--red { background: var(--red); color: #fff; border-color: var(--red); }
.btn--red:hover { background: var(--red-dk); border-color: var(--red-dk); }
.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: var(--steel-2); border-color: var(--steel-2); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .3); }
.btn--ghost:hover { border-color: var(--red-lt); color: var(--red-lt); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--outline:hover { border-color: #fff; background: rgba(255, 255, 255, .12); }
.btn--wide { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ---------- 5. Header ---------- */
.topbar {
  background: var(--ink);
  color: var(--text-dim);
  font-family: var(--ff-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--line-dark);
}
.topbar__in { display: flex; justify-content: space-between; align-items: center; gap: 18px; min-height: 42px; }
.topbar a { color: var(--text-light); text-decoration: none; }
.topbar a:hover { color: var(--red-lt); }
.topbar__status { display: flex; align-items: center; gap: 9px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #35D07F; flex: none; box-shadow: 0 0 0 4px rgba(53, 208, 127, .18); }
.topbar__right { display: flex; gap: 22px; align-items: center; }
.topbar__hide { display: none; }
@media (min-width: 1080px) { .topbar__hide { display: inline; } }

.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(14, 20, 27, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.site-head__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 86px; }

.brand { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.brand__logo { height: 56px; width: auto; flex: none; }
.brand__tag {
  font-family: var(--ff-mono); font-size: .6rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-dim); line-height: 1.5;
  padding-left: 15px; border-left: 1px solid var(--line-dark);
}
.brand__tag b { display: block; color: #fff; font-weight: 600; }
@media (max-width: 1080px) { .brand__tag { display: none; } }
@media (max-width: 560px) { .brand__logo { height: 42px; } }

.foot__brand .brand__logo { height: 62px; }
.foot__brand .brand__tag { display: none; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__list { display: flex; gap: 28px; }
.nav__list a {
  font-size: .95rem; font-weight: 500; color: var(--text-light); text-decoration: none;
  padding-block: 6px; position: relative;
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease);
}
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.nav__list a[aria-current="page"] { color: #fff; }

.burger {
  display: none; width: 46px; height: 42px; border: 1px solid var(--line-dark);
  border-radius: var(--r-s); background: transparent; padding: 0;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 20px; height: 2px; background: #fff; transition: transform .22s var(--ease), opacity .22s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; padding-block: clamp(48px, 6vw, 82px) clamp(60px, 7vw, 96px); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(760px 420px at 78% 18%, rgba(216, 0, 0, .20), transparent 68%);
  pointer-events: none;
}
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); gap: clamp(32px, 4vw, 64px); align-items: center; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--red-lt); }
.hero__lede { color: #BCCAD7; font-size: clamp(1.05rem, 1.45vw, 1.2rem); max-width: 52ch; }

.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.hero__proof li { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: #C7D3DE; }
.hero__proof svg { width: 17px; height: 17px; color: var(--red-lt); flex: none; }

.hero__art { position: relative; }
.hero__art img { width: 100%; }

/* ---------- 7. Signature: the dispatch ticket ---------- */
.ticket {
  background: #fff;
  color: var(--text-dark);
  border-radius: var(--r-m);
  box-shadow: var(--shadow-l);
  overflow: hidden;
  border-top: 6px solid var(--red);
}
.ticket__head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 14px;
  padding: 20px 24px 16px;
  border-bottom: 2px dashed #D6DEE6;
}
.ticket__title { font-family: var(--ff-display); font-weight: 800; font-size: 1.18rem; font-variation-settings: "wdth" 104; }
.ticket__meta { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); margin-top: 5px; }
.ticket__stamp {
  font-family: var(--ff-mono); font-size: .62rem; font-weight: 600; letter-spacing: .14em;
  border: 2px solid var(--red); color: var(--red);
  padding: 6px 9px; border-radius: 4px; text-align: center; line-height: 1.25; flex: none;
  transform: rotate(-3deg);
}
.ticket__body { padding: 20px 24px 24px; }
.ticket__note { font-family: var(--ff-mono); font-size: .72rem; color: var(--text-mute); margin-top: 14px; text-align: center; }

/* ---------- 8. Forms ---------- */
.field { margin-bottom: 14px; }
.field label {
  display: block; font-family: var(--ff-mono); font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid var(--line-light); border-radius: var(--r-s);
  background: #FBFCFD; color: var(--text-dark);
  font-family: var(--ff-body); font-size: 1rem;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); background: #fff; outline: none; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field--row .field { margin-bottom: 0; }
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: .82rem; color: var(--text-mute); margin-top: 12px; }
.form-alert { padding: 13px 16px; border-radius: var(--r-s); font-size: .92rem; margin-bottom: 16px; display: none; }
.form-alert--ok { background: #E7F7EE; color: #14663C; border: 1px solid #B7E3CB; }
.form-alert--ok .btn { display: inline-flex; width: auto; padding: 10px 18px; font-size: .92rem; }
.form-alert--bad { background: #FDECEA; color: #93251A; border: 1px solid #F3C3BD; }
.form-alert.is-on { display: block; }

/* dual submit: WhatsApp primary, email fallback */
.send-row { display: grid; gap: 10px; }
.send-row .btn { padding-block: 14px; }
.btn--outline-dk { background: transparent; color: var(--text-mute); border-color: var(--line-light); }
.btn--outline-dk:hover { border-color: var(--text-dark); color: var(--text-dark); }

/* floating WhatsApp button */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 65;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .55);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float svg { width: 31px; height: 31px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 36px -8px rgba(0, 0, 0, .6); }
@media (max-width: 860px) { .wa-float { display: none; } }

.topbar__wa { display: inline-flex; align-items: center; gap: 6px; }
.topbar__wa svg { width: 14px; height: 14px; }

/* ---------- 9. Coverage marquee ---------- */
.strip { background: var(--red); color: #fff; overflow: hidden; padding-block: 13px; }
.strip__track { display: flex; width: max-content; gap: 0; animation: slide 42s linear infinite; }
.strip__set { display: flex; align-items: center; gap: 0; }
.strip__set span {
  font-family: var(--ff-display); font-weight: 800; font-variation-settings: "wdth" 100;
  font-size: .96rem; letter-spacing: .02em; text-transform: uppercase; padding-inline: 20px;
  display: flex; align-items: center; gap: 20px; white-space: nowrap;
}
.strip__set span::after { content: ""; width: 6px; height: 6px; background: #fff; border-radius: 50%; opacity: .55; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 10. Service cards ---------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line-light); border-radius: var(--r-m);
  padding: 26px 24px 28px; position: relative; overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: #C9D4DE; }
.card:hover::after { transform: scaleX(1); }
.card__icon {
  width: 50px; height: 50px; border-radius: 10px; background: #FDECEC;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; color: var(--red-dk); }
.card h3 { font-size: 1.16rem; font-variation-settings: "wdth" 104; margin-bottom: 9px; }
.card p { font-size: .95rem; color: var(--text-mute); line-height: 1.6; }
.card--dark { background: var(--steel); border-color: var(--line-dark); }
.card--dark:hover { border-color: rgba(255, 255, 255, .24); }
.card--dark h3 { color: #fff; }
.card--dark p { color: var(--text-dim); }
.card--dark .card__icon { background: rgba(216, 0, 0, .18); }
.card--dark .card__icon svg { color: var(--red-lt); }

.card__tag {
  display: inline-block; margin-top: 14px; font-family: var(--ff-mono); font-size: .66rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute);
  background: #F0F3F6; border-radius: 3px; padding: 4px 8px;
}

/* ---------- 11. Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line-dark); }
.step { padding: 30px 26px 34px; border-right: 1px solid var(--line-dark); position: relative; }
.step:last-child { border-right: 0; }
.step__num {
  font-family: var(--ff-mono); font-size: .76rem; font-weight: 600; letter-spacing: .16em;
  color: var(--red-lt); margin-bottom: 16px; display: block;
}
.step h3 { font-size: 1.14rem; color: #fff; margin-bottom: 10px; font-variation-settings: "wdth" 104; }
.step p { font-size: .93rem; color: var(--text-dim); line-height: 1.6; }

/* ---------- 12. Comparison ---------- */
.compare { border: 1px solid var(--line-light); border-radius: var(--r-m); overflow: hidden; background: #fff; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 15px 20px; text-align: left; font-size: .95rem; border-bottom: 1px solid var(--line-light); vertical-align: top; }
.compare thead th {
  background: var(--ink); color: #fff; font-family: var(--ff-mono); font-weight: 600;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
}
.compare thead th:nth-child(2) { color: var(--red-lt); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody th { font-family: var(--ff-body); font-weight: 600; width: 30%; }
.compare td:nth-child(2) { background: #FCF6F6; font-weight: 500; }
.compare td:last-child { color: var(--text-mute); }

/* ---------- 13. Coverage block ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 4vw, 60px); align-items: center; }
.split--art-first .split__art { order: -1; }
.pill-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.pill-list li {
  font-family: var(--ff-mono); font-size: .76rem; letter-spacing: .06em;
  border: 1px solid var(--line-dark); border-radius: 100px; padding: 7px 14px; color: #C7D3DE;
}
.pill-list li[data-base] { background: var(--red); color: #fff; border-color: var(--red); font-weight: 600; }
.map-frame { border: 1px solid var(--line-dark); border-radius: var(--r-m); overflow: hidden; background: #151619; }

/* ---------- 13b. Photo grid ---------- */
.shots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.shot {
  margin: 0; border-radius: var(--r-m); overflow: hidden;
  background: var(--steel); border: 1px solid var(--line-dark);
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.shot:hover { border-color: rgba(255, 255, 255, .26); transform: translateY(-3px); }
.shot__frame { aspect-ratio: 4 / 5; overflow: hidden; background: #101215; }
.shot__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.shot:hover .shot__frame img { transform: scale(1.045); }
.shot figcaption { padding: 18px 20px 22px; font-size: .92rem; line-height: 1.55; color: var(--text-dim); }
.shot figcaption b {
  display: block; margin-bottom: 7px; color: #fff; font-weight: 700;
  font-family: var(--ff-display); font-size: 1.04rem; font-variation-settings: "wdth" 104;
}
.shot__frame--tall { aspect-ratio: 3 / 4; }

.photo-panel { border-radius: var(--r-m); overflow: hidden; border: 1px solid var(--line-light); background: #101215; }
.photo-panel img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-panel--dark { border-color: var(--line-dark); }
.photo-panel--wide { aspect-ratio: 16 / 10; }

@media (max-width: 860px) { .shots { grid-template-columns: 1fr; } }

/* ---------- 14. Quotes ---------- */
.quote { background: #fff; border: 1px solid var(--line-light); border-radius: var(--r-m); padding: 26px 24px; }
.quote__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.quote__stars svg { width: 16px; height: 16px; color: var(--red); }
.quote p { font-size: .98rem; line-height: 1.66; color: var(--text-dark); }
.quote footer { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-light); font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .06em; color: var(--text-mute); }
.quote footer b { color: var(--text-dark); font-weight: 600; display: block; letter-spacing: .02em; }

/* ---------- 15. FAQ ---------- */
.faq { max-width: 840px; margin-inline: auto; border-top: 1px solid var(--line-light); }
.faq details { border-bottom: 1px solid var(--line-light); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.08rem; font-variation-settings: "wdth" 102;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 13px; height: 13px;
  margin-top: -8px; border-right: 2.5px solid var(--red-dk); border-bottom: 2.5px solid var(--red-dk);
  transform: rotate(45deg); transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq .faq__a { padding: 0 40px 24px 0; color: var(--text-mute); font-size: .98rem; }

/* ---------- 16. CTA band ---------- */
.cta-band { background: var(--red); color: #fff; }
.cta-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.cta-band h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-variation-settings: "wdth" 108; max-width: 20ch; }
.cta-band p { color: rgba(255, 255, 255, .82); margin-top: 10px; font-size: 1rem; }
.cta-band .btn-row { margin-top: 0; }

/* ---------- 17. Contact blocks ---------- */
.info-list { display: grid; gap: 4px; }
.info-list li { display: flex; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line-dark); }
.info-list li:last-child { border-bottom: 0; }
.info-list svg { width: 21px; height: 21px; color: var(--red-lt); flex: none; margin-top: 3px; }
.info-list dt, .info-list .k {
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 3px;
}
.info-list .v { font-size: 1.03rem; color: #fff; font-weight: 500; }
.info-list a { text-decoration: none; }
.info-list a:hover { color: var(--red-lt); }

.hours { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours th, .hours td { padding: 11px 0; border-bottom: 1px solid var(--line-dark); font-size: .95rem; text-align: left; }
.hours th { font-weight: 500; color: #C7D3DE; }
.hours td { text-align: right; font-family: var(--ff-mono); font-size: .88rem; color: #fff; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours td[data-off] { color: var(--red-lt); }

.panel { background: var(--steel); border: 1px solid var(--line-dark); border-radius: var(--r-m); padding: clamp(24px, 3vw, 34px); }
.panel--light { background: #fff; border-color: var(--line-light); }

.map-embed { border: 0; width: 100%; height: 380px; display: block; filter: grayscale(.35) contrast(1.05); }

/* ---------- 18. Footer ---------- */
.site-foot { background: var(--ink); color: var(--text-dim); padding-block: clamp(48px, 6vw, 72px) 0; font-size: .93rem; }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.foot h4 {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: #fff; font-weight: 600; margin-bottom: 18px;
}
.foot ul li { margin-bottom: 10px; }
.foot a { text-decoration: none; color: var(--text-dim); }
.foot a:hover { color: var(--red-lt); }
.foot__brand p { font-size: .93rem; margin-top: 18px; max-width: 34ch; color: var(--text-dim); }
.foot__bar {
  margin-top: clamp(40px, 5vw, 58px); border-top: 1px solid var(--line-dark);
  padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .05em; color: #6E7F90;
}

/* ---------- 19. Mobile sticky call bar ---------- */
.callbar { display: none; }

/* ---------- 20. Page banner (inner pages) ---------- */
.banner { background: var(--ink); color: #fff; padding-block: clamp(52px, 6.5vw, 88px); position: relative; overflow: hidden; }
.banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(620px 340px at 88% 10%, rgba(216, 0, 0, .18), transparent 70%);
}
.banner .container { position: relative; }
.banner h1 { color: #fff; }
.banner .lede { color: #BCCAD7; margin-top: 20px; }
.crumbs { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #7E8FA0; margin-bottom: 20px; }
.crumbs a { text-decoration: none; color: var(--red-lt); }

/* ---------- 21. Misc ---------- */
.check-list li { display: flex; gap: 12px; padding: 9px 0; font-size: .98rem; }
.check-list svg { width: 20px; height: 20px; color: var(--red-dk); flex: none; margin-top: 3px; }
.sec--dark .check-list svg, .sec--steel .check-list svg { color: var(--red-lt); }
.sec--dark .check-list li, .sec--steel .check-list li { color: #C7D3DE; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--r-m); overflow: hidden; }
.stat { background: var(--ink); padding: 26px 22px; }
.stat b { display: block; font-family: var(--ff-display); font-weight: 800; font-variation-settings: "wdth" 112; font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--red-lt); line-height: 1; }
.stat span { display: block; margin-top: 10px; font-size: .87rem; color: var(--text-dim); }

.note-box {
  border-left: 4px solid var(--ink); background: #ECEEF1; border-radius: 0 var(--r-s) var(--r-s) 0;
  padding: 20px 24px; font-size: .96rem;
}
.note-box strong { display: block; font-family: var(--ff-display); font-size: 1.05rem; margin-bottom: 6px; }

/* Only hidden when JS is running — without it, everything stays visible. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- 22. Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 560px; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
  .foot__grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
  .nav.is-open {
    display: block; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--steel); border-bottom: 1px solid var(--line-dark);
    padding: 12px var(--gut) 26px; box-shadow: var(--shadow-l);
  }
  .nav.is-open .nav__list { flex-direction: column; gap: 0; }
  .nav.is-open .nav__list a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line-dark); font-size: 1.05rem; }
  .nav.is-open .nav__list a::after { display: none; }
  .nav.is-open .btn { margin-top: 18px; width: 100%; }
  .site-head__in { position: relative; }
  .topbar__hide { display: none !important; }

  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--art-first .split__art { order: 0; }
  .compare thead { display: none; }
  .compare tbody tr { display: block; border-bottom: 1px solid var(--line-light); padding: 6px 0; }
  .compare tbody tr:last-child { border-bottom: 0; }
  .compare tbody th, .compare tbody td { display: block; width: 100%; border-bottom: 0; padding: 6px 20px; }
  .compare tbody th { padding-top: 14px; font-size: 1rem; }
  .compare tbody td::before {
    content: attr(data-l); display: block; font-family: var(--ff-mono); font-size: .62rem;
    letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 3px;
  }
  .compare td:nth-child(2) { background: transparent; }
  .compare td:nth-child(2)::before { color: var(--red-dk); }
  .compare tbody td:last-child { padding-bottom: 14px; }

  body { padding-bottom: 68px; }
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: var(--line-dark); box-shadow: 0 -6px 26px rgba(0, 0, 0, .28);
  }
  .callbar a {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    padding: 18px 10px; text-decoration: none;
    font-family: var(--ff-display); font-weight: 700; font-size: .97rem;
  }
  .callbar svg { width: 18px; height: 18px; }
  .callbar__call { background: var(--red); color: #fff; }
  .callbar__wa { background: #25D366; color: #0B3D22; }
}

@media (max-width: 560px) {
  :root { --gut: 18px; }
  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .step:last-child { border-bottom: 0; }
  .foot__grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .topbar__in { justify-content: center; }
  .topbar__right { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-head, .topbar, .callbar, .strip, .cta-band { display: none; }
  body { background: #fff; color: #000; }
}

/* hero art bleeds slightly into the right gutter on wide screens */
@media (min-width: 1200px) {
  .hero__art { margin-right: calc(var(--gut) * -1.6); }
}
