/* =========================================================
   AutoMax Complete Auto Service
   Editorial / showroom layout (inspired by dark automotive
   landing templates): true-black, halftone texture, giant
   masthead, sharp zero-radius boxes, monospace labels.
   Brand: gold accent + maroon sub-bars on black.
   Type: Archivo (heavy display + body) / JetBrains Mono (labels)
   ========================================================= */

:root {
  --bg:      #070506;
  --bg-2:    #0c090b;
  --panel:   #110c0f;
  --panel-2: #171013;

  --gold:    #d8af5b;
  --gold-br: #ecc97e;
  --gold-dp: #a9802f;

  --maroon:  #5e1020;
  --maroon-br:#83182b;

  --text:    #f1ede6;
  --muted:   #a89d95;
  --muted-2: #8c827b; /* bumped from #6c635e for WCAG AA on small labels */

  --ok:      #5fb87a;
  --warn:    #d8884e;

  --line:      rgba(241,237,230,0.13);
  --line-soft: rgba(241,237,230,0.07);
  --line-gold: rgba(216,175,91,0.42);

  --d: "Archivo", system-ui, sans-serif;
  --m: "JetBrains Mono", ui-monospace, monospace;

  --wrap: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
/* <picture> is only a format/art-direction switch — make it layout-transparent so the
   inner <img> participates exactly as a direct child (all `… img` rules below still apply). */
picture { display: contents; }
/* `overflow-x: clip` (not hidden) locks horizontal pan WITHOUT making html/body a
   scroll container — that combo is what caused the left/right jostle on mobile Safari. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: clip; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--d);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -0.005em;
  overflow-x: clip;
  width: 100%;
  /* halftone dot texture */
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1.4px);
  background-size: 7px 7px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

h1,h2,h3,h4 { margin: 0; font-weight: 800; line-height: 0.96; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img, svg, iframe { display: block; max-width: 100%; }
em { font-style: normal; color: var(--gold-br); }

/* ---------- monospace tag ---------- */
.tag {
  font-family: var(--m); font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold);
  margin: 0 0 18px;
}
.tag-center { display: block; text-align: center; }
.tag-gold { color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--m); font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 15px 22px; border-radius: 0; cursor: pointer;
  border: 1px solid var(--line); background: transparent; color: var(--text);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .12s var(--ease);
}
.btn .arrow { font-style: normal; font-size: 1rem; transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }

.btn-line:hover { border-color: var(--gold); color: var(--gold-br); }

.btn-gold { background: var(--gold); border-color: var(--gold); color: #1a0d04; font-weight: 700; }
.btn-gold:hover { background: var(--gold-br); border-color: var(--gold-br); }

/* ---------- call / text CTAs: mechanical press + directional gold wipe ----------
   Feel layer: engineered, precise, nothing bouncy. The fill sweeps in from the
   left like a torqued bolt seating; the button depresses 1px on click. */
.call-fx { position: relative; overflow: hidden; isolation: isolate; }
.call-fx > span, .call-fx > .arrow { position: relative; z-index: 1; }
.call-fx::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left center;
  transition: transform .42s var(--ease);
}
.call-fx:hover::before, .call-fx:focus-visible::before { transform: scaleX(1); }
/* already-gold buttons sweep a brighter gold so the wipe still reads */
.call-fx.btn-gold::before, .mobile-call-quote.call-fx::before { background: var(--gold-br); }
/* transparent line buttons flip to dark text once the gold fill lands */
.call-fx.btn-line:hover, .call-fx.btn-line:focus-visible { color: #1a0d04; border-color: var(--gold); }
/* hero call buttons: let the wipe be the whole fill (drop the plain fade) */
.hero-cta.call-fx:hover { background: transparent; }

/* mechanical press */
.btn:active, .hero-cta:active, .mobile-call-btn:active { transform: translateY(1px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,5,6,0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 30px; height: 70px; }
.brand { display: flex; align-items: center; gap: 13px; margin-right: auto; }
.brand-mark { height: 44px; width: auto; display: block; flex: none; }
.brand-text { display: flex; align-items: baseline; gap: 12px; }
.brand-name { font-family: var(--d); font-weight: 900; font-size: 1.4rem; letter-spacing: 0.02em; }
.brand-sub { font-family: var(--m); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--muted); }
.nav { display: flex; gap: 30px; }
.nav a { font-family: var(--m); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--muted); transition: color .3s var(--ease); }
.nav a:hover { color: var(--gold); }
.header-call { padding: 11px 16px; }

/* ---------- hero ---------- */
.hero { position: relative; }
.hero-frame { position: relative; margin-top: 0; }
.hero-img {
  width: 100%; height: clamp(460px, 72vh, 820px); object-fit: cover;
  object-position: center 52%;
}
.hero-dot {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,5,6,0.82) 0%, rgba(7,5,6,0.34) 26%, transparent 46%, transparent 58%, rgba(7,5,6,0.72) 100%),
    linear-gradient(90deg, rgba(7,5,6,0.55), transparent 40%);
}

/* masthead overlaid on the photo's top (sky) band — intentional, not bleeding */
.hero-mast-wrap {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; z-index: 4; pointer-events: none;
  padding-top: clamp(16px, 3vw, 40px);
}
.mast {
  font-family: var(--d); font-weight: 900;
  font-size: clamp(3rem, 15vw, 14rem);
  line-height: 0.82; letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
  text-shadow: 0 2px 32px rgba(7,5,6,0.6), 0 1px 3px rgba(7,5,6,0.5);
  max-width: 100%; overflow: visible;
  -webkit-text-stroke: 0;
}

/* hero sharp boxes */
.hero-box {
  position: absolute; z-index: 4; background: rgba(7,5,6,0.86);
  border: 1px solid var(--line); backdrop-filter: blur(4px);
}
.hero-box-tl { left: 0; bottom: 0; padding: 26px 30px 28px; max-width: 460px; }
.hero-line { font-family: var(--d); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 0.98; text-transform: uppercase; margin: 0 0 18px; }
.hero-bar { display: inline-block; font-family: var(--m); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text); background: var(--maroon); padding: 7px 12px; }
.hero-box-tl .tag { margin-bottom: 14px; }

.hero-box-br {
  right: 0; bottom: 0; display: flex; align-items: stretch; gap: 0;
  font-family: var(--m); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--text);
}
.hero-cta {
  display: flex; align-items: center; gap: 14px; padding: 22px 26px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .12s var(--ease);
}
.hero-cta-sms { border-left: 1px solid var(--line); }
.hero-cta:hover { background: var(--gold); color: #1a0d04; }
.hero-cta .arrow { font-style: normal; font-size: 1.1rem; }

/* visually-hidden SEO/a11y subtitle inside the masthead h1 */
.mast-sub {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- block heads ---------- */
.block-head { padding: 92px 0 8px; text-align: center; }
.block-title { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; text-transform: uppercase; }
.services-logo { display: block; margin: 22px auto 0; width: clamp(150px, 18vw, 200px); height: auto; }

/* ---------- services rows ---------- */
.services { border-bottom: 1px solid var(--line-soft); }
.rows { margin-top: 40px; }
.row { border-top: 1px solid var(--line); }
.row:last-child { border-bottom: 1px solid var(--line); }
.row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 64px 32px; }
.row-rev .row-grid { direction: rtl; }
.row-rev .row-copy, .row-rev .row-media { direction: ltr; }

.row-title { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 900; text-transform: uppercase; margin: 14px 0 22px; }
.row-text { color: var(--muted); font-size: 1.06rem; max-width: 46ch; margin: 0 0 30px; }

.row-media { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); }
.row-media img { width: 100%; height: clamp(300px, 42vh, 460px); object-fit: cover; transition: transform 1.1s var(--ease); }
.row:hover .row-media img { transform: scale(1.04); }
.row-cap { position: absolute; left: 0; bottom: 0; font-family: var(--m); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text); background: rgba(7,5,6,0.85); border-top: 1px solid var(--line); border-right: 1px solid var(--line); padding: 8px 14px; }

/* ---------- price promise ---------- */
.promise { padding: 100px 0; border-bottom: 1px solid var(--line-soft); background:
  radial-gradient(900px 420px at 82% 0%, rgba(94,16,32,0.32), transparent 62%), var(--bg); }
.promise-title { font-size: clamp(2.6rem, 7vw, 5.6rem); font-weight: 900; text-transform: uppercase; margin-bottom: 26px; }
.promise-sub { color: var(--muted); font-size: 1.14rem; max-width: 58ch; margin: 0 0 48px; }

.steps { list-style: none; margin: 0 0 44px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.steps li { display: flex; gap: 18px; padding: 28px 26px; border-right: 1px solid var(--line); }
.steps li:last-child { border-right: 0; }
.step-n { font-family: var(--m); font-size: 0.82rem; color: var(--gold); padding-top: 4px; }
.steps b { font-family: var(--d); font-weight: 800; font-size: 1.15rem; text-transform: uppercase; letter-spacing: -0.01em; }
.steps p { color: var(--muted); margin: 6px 0 0; font-size: 0.96rem; }

/* ---------- stats band ---------- */
.stats { border-bottom: 1px solid var(--line-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 46px 24px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.stat:first-child { border-left: 0; }
.stat-n { font-family: var(--d); font-weight: 900; font-size: clamp(2.6rem, 5vw, 3.8rem); color: var(--gold); line-height: 0.9; }
.stat-l { font-family: var(--m); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); }

/* ---------- reviews (standalone proof band under the hero, scrollable carousel) ---------- */
.reviews-section { padding: 84px 0; border-bottom: 1px solid var(--line-soft); }
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 22px 32px; flex-wrap: wrap; margin-bottom: 28px; }
.reviews-head .tag { margin-bottom: 14px; }
.reviews-title { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 900; text-transform: uppercase; line-height: 0.98; }
.reviews-controls { display: flex; align-items: center; gap: 22px; }
/* Read-more CTA — the site's bordered gold-wipe button, fronted by the 5-star rating so it
   reads as "see the proof," not a plain link. Stars flip to dark when the gold fill lands. */
.reviews-cta { gap: 12px; white-space: nowrap; }
.reviews-cta-stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.82rem; transition: color .35s var(--ease); }
.reviews-cta:hover .reviews-cta-stars, .reviews-cta:focus-visible .reviews-cta-stars { color: #1a0d04; }
/* Auto-scrolling marquee of reviews (JS drives a continuous drift). Snap is off so the
   tween doesn't fight snap points; scrollbar hidden for a clean drift; grab cursor invites
   the drag-to-slide that pauses the loop. The edge fade signals "more to see" and softens
   the cut as cards drift in/out at the rail edges. */
.reviews-track {
  display: flex; gap: 20px; overflow-x: auto; overscroll-behavior-x: contain;
  /* generous top/bottom room so the focused (scaled-up) card isn't clipped by the rail box */
  padding: 24px 4px 38px; margin: 0 -4px; -webkit-overflow-scrolling: touch;
  cursor: grab; scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track.is-grabbing { cursor: grabbing; user-select: none; }
.reviews-track:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.review {
  flex: 0 0 clamp(270px, 80vw, 360px); margin: 0;
  padding: 30px 28px; background: var(--panel); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  /* transform is driven per-frame by the focal spotlight (JS), so it must NOT be transitioned
     here or each tiny step would smear over .4s. Only colour/shadow ease. */
  transform-origin: center center; will-change: transform;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.review:hover { border-color: var(--line-gold); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.85); }
.stars { color: var(--gold); letter-spacing: 0.14em; font-size: 0.95rem; margin-bottom: 16px; }
.review-q { font-size: 1.08rem; line-height: 1.5; margin: 0 0 24px; color: var(--text); }
.review footer { margin-top: auto; display: flex; flex-direction: column; gap: 3px; }
.review footer b { font-family: var(--d); font-weight: 700; }
.review footer span { font-family: var(--m); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); }

/* ---------- visit ---------- */
.visit { padding: 100px 0; border-bottom: 1px solid var(--line-soft); }

/* establishing signage band — full-bleed real-shop photo placed directly under the hero
   (brand-recognition moment). Bottom margin dropped; the reviews section's padding spaces it. */
.visit-sign { position: relative; margin: 0; overflow: hidden; border-bottom: 1px solid var(--line); }
/* The pylon sign (red-car logo + marquee) sits in the top third of the source; on the
   wide/short desktop crop a centered object-position clips the logo, so bias to the top.
   On mobile the container is tall enough that the whole sign shows regardless. */
.visit-sign img { width: 100%; height: clamp(240px, 38vh, 400px); object-fit: cover; object-position: center 14%; }
.visit-sign-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(0deg, rgba(7,5,6,0.92) 0%, rgba(7,5,6,0.55) 26%, transparent 58%),
    linear-gradient(90deg, rgba(7,5,6,0.66) 0%, rgba(7,5,6,0.12) 40%, transparent 64%);
}
.visit-sign-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 0 30px; }
.visit-sign-cap .tag { margin-bottom: 8px; }
.visit-sign-addr {
  margin: 0; font-family: var(--d); font-weight: 900; line-height: 0.96;
  font-size: clamp(1.4rem, 3.4vw, 2.4rem); text-transform: uppercase; letter-spacing: -0.02em;
}

.visit-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: stretch; }
.visit-title { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; text-transform: uppercase; margin-bottom: 36px; }
.visit-rows { margin: 0; }
.visit-rows > div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line-soft); }
.visit-rows > div:first-child { border-top: 0; }
.visit-rows dt { font-family: var(--m); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); padding-top: 4px; }
.visit-rows dd { margin: 0; font-size: 1.1rem; }
.visit-rows a { color: var(--gold); transition: color .25s var(--ease); }
.visit-rows a:hover { color: var(--gold-br); }
.visit-phone { font-family: var(--d); font-weight: 800; font-size: 1.5rem; }
.hrs { display: flex; justify-content: space-between; gap: 20px; max-width: 300px; padding: 2px 0; }
.hrs-off span { color: var(--muted-2); }
.visit-info .btn-gold { margin-top: 34px; }

.visit-map { border: 1px solid var(--line); overflow: hidden; min-height: 440px; }
.visit-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; filter: grayscale(0.5) invert(0.9) hue-rotate(180deg) contrast(0.9) brightness(0.9); }

/* ---------- footer ---------- */
.site-footer { padding-top: 80px; border-top: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.foot-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; padding-bottom: 56px; }
.foot-line { color: var(--muted); margin: 14px 0 26px; }
.foot-area { display: block; margin-top: 12px; font-family: var(--m); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.7; color: var(--muted-2); }
.foot-nav { display: flex; flex-wrap: wrap; gap: 14px 28px; align-content: start; justify-content: flex-end; }
.foot-nav a { font-family: var(--m); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); transition: color .3s; }
.foot-nav a:hover { color: var(--gold); }
.foot-logo { display: flex; justify-content: center; padding: 14px 0 44px; }
.foot-logo img { width: clamp(165px, 22vw, 215px); height: auto; display: block; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 0; border-top: 1px solid var(--line); font-family: var(--m); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); }
.foot-bottom a:hover { color: var(--gold); }

/* ---------- mobile call bar ---------- */
.mobile-call { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; display: none; align-items: center; justify-content: center; gap: 12px; padding: 15px; background: var(--gold); color: #1a0d04; font-family: var(--m); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; box-shadow: 0 12px 30px -8px rgba(0,0,0,0.7); }
.mobile-call .arrow { font-style: normal; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* On phones a sliding reveal "catches up" late on fast scroll — the block lurches
   up while it's already in view, which reads cheap. Drop the positional move there
   and fade only (faster, settles as solid — matches the engineered feel). */
@media (max-width: 720px) {
  .reveal { transform: none; transition: opacity .45s var(--ease); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .row:hover .row-media img { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .nav { display: none; }
  .row-grid { grid-template-columns: 1fr; gap: 30px; padding: 48px 32px; }
  .row-rev .row-grid { direction: ltr; }
  .row-media { order: -1; }
  .visit-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-nav { justify-content: flex-start; }
}
@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 76px; }
  .header-call span { display: none; }
  .brand-sub { display: none; }       /* keep the masthead lockup compact on phones */
  .brand-mark { height: 38px; }
  .mast { font-size: clamp(2.5rem, 14vw, 6rem); }
  .steps { grid-template-columns: 1fr; }
  .steps li { border-right: 0; border-bottom: 1px solid var(--line); }
  .steps li:last-child { border-bottom: 0; }
  /* Mobile: the cramped 2×2 forced the 5-star "value" to compete with the big
     numerals and overflow its cell. Switch to a single-column spec readout —
     value left, label right, hairline rules between — so nothing crams. */
  .stats-grid { grid-template-columns: 1fr; }
  .stat {
    flex-direction: row; align-items: center; justify-content: space-between;
    gap: 20px; padding: 20px 4px; border-left: 0; border-top: 1px solid var(--line);
  }
  .stat:first-child { border-top: 0; }
  .stat-n { font-size: clamp(1.7rem, 8.5vw, 2.4rem); line-height: 1; flex: none; }
  .stat-l { text-align: right; max-width: 13ch; }
  .hero-box-tl { position: static; max-width: none; border-left: 0; border-right: 0; backdrop-filter: none; background: var(--bg-2); padding: 20px 18px 22px; }
  /* Call/Text here duplicate the always-visible fixed bottom bar — drop on phones */
  .hero-box-br { display: none; }
  .hero-img { height: 50vh; }
  .mobile-call { display: flex; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Tighten desktop-scale spacing so the one-pager doesn't feel endless on phones */
  .promise, .visit, .faq { padding-top: 60px; padding-bottom: 60px; }
  .block-head { padding-top: 56px; }
  .services-logo { margin-top: 16px; }
  .reviews-section { padding: 52px 0; }
  .callback { margin-top: 44px; }
  .site-footer { padding-top: 56px; }

  /* Anchor the fixed call bar with a fade scrim so page content
     doesn't peek through the gap between the buttons. */
  .mobile-call::before {
    content: ""; position: absolute; inset: -36px -12px -12px; z-index: -1;
    pointer-events: none;
    background: linear-gradient(to top, var(--bg) 58%, rgba(7,5,6,0.85) 80%, transparent);
  }
}
@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .mobile-nav a { padding-left: 18px; padding-right: 18px; }
}

/* =========================================================
   Additions: focus states, mobile nav, open/closed badge,
   multi-action mobile bar
   ========================================================= */

/* ---------- #6 visible keyboard focus ---------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:focus-visible, .hero-cta:focus-visible, .nav a:focus-visible,
.mobile-call-btn:focus-visible, .hero-box-br:focus-within { outline-offset: 4px; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; }

/* ---------- #5 mobile nav ---------- */
.nav-toggle {
  display: none; width: 44px; height: 44px; margin-left: 4px; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: 1px solid var(--line); cursor: pointer;
}
.nav-toggle-bar { width: 18px; height: 2px; background: var(--text); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.mobile-nav a {
  padding: 15px 32px; font-family: var(--m); font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted); border-top: 1px solid var(--line-soft);
  transition: color .25s var(--ease);
}
.mobile-nav a:first-child { border-top: 0; }
.mobile-nav a:hover, .mobile-nav a:focus-visible { color: var(--gold); }
.mobile-nav-call { color: var(--gold) !important; font-weight: 700; }
body.nav-open .mobile-nav { display: flex; }

/* ---------- #2 open / closed badge ---------- */
.open-status {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 28px;
  padding: 8px 14px; border: 1px solid var(--line);
  font-family: var(--m); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text);
}
.open-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted-2); flex: none; }
.open-status.is-open { border-color: rgba(95,184,122,0.42); }
.open-status.is-open .open-dot { background: var(--ok); box-shadow: 0 0 0 0 rgba(95,184,122,0.6); animation: open-pulse 2.4s infinite; }
.open-status.is-closed { border-color: rgba(216,136,78,0.4); }
.open-status.is-closed .open-dot { background: var(--warn); }
@keyframes open-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(95,184,122,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(95,184,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(95,184,122,0); }
}

/* ---------- multi-action mobile bar ---------- */
.mobile-call { background: transparent; box-shadow: none; padding: 0; gap: 8px; }
.mobile-call-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 8px; background: var(--panel); border: 1px solid var(--line); color: var(--text);
  font-family: var(--m); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.7);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .12s var(--ease);
}
.mobile-call-btn .arrow { font-style: normal; }
.mobile-call-quote { flex: 1.4; background: var(--gold); color: #1a0d04; border-color: var(--gold); }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 560px) {
  .reviews-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .reviews-controls { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  .open-status.is-open .open-dot { animation: none; }
  .nav-toggle-bar { transition: none; }
  .call-fx::before { transition: none; }
  .btn, .hero-cta, .mobile-call-btn { transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease); }
}

/* =========================================================
   FAQ (native <details> accordions) + callback request
   ========================================================= */
.faq { padding: 100px 0; border-bottom: 1px solid var(--line-soft); }
.faq-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 56px; align-items: start; }
.faq-head { position: sticky; top: 94px; }
.faq-title { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 900; text-transform: uppercase; line-height: 0.96; margin-bottom: 22px; }
.faq-lead { color: var(--muted); font-size: 1.06rem; max-width: 40ch; margin: 0; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 24px 4px; cursor: pointer; list-style: none;
  font-family: var(--d); font-weight: 800; font-size: clamp(1.1rem, 2vw, 1.35rem);
  text-transform: uppercase; letter-spacing: -0.01em; color: var(--text);
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-br); }
.faq-ico { position: relative; flex: none; width: 16px; height: 16px; }
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 2px;
  background: var(--gold); transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-ico::after { transform: rotate(90deg); }
.faq-item[open] .faq-ico::after { transform: rotate(0); opacity: 0; }
.faq-a { padding: 0 4px 26px; max-width: 60ch; }
.faq-a p { margin: 0; color: var(--muted); font-size: 1.04rem; line-height: 1.6; }
.faq-a a { color: var(--gold); }
.faq-a a:hover { color: var(--gold-br); }

/* subtle open animation (reduced-motion safe via the global rule) */
.faq-item[open] .faq-a { animation: faq-in .35s var(--ease); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- callback request ---------- */
.callback {
  margin-top: 80px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0;
  border: 1px solid var(--line); background:
    radial-gradient(700px 320px at 100% 0%, rgba(94,16,32,0.28), transparent 60%), var(--panel);
}
.callback-copy { padding: 44px 42px; border-right: 1px solid var(--line); }
.callback-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; margin-bottom: 18px; }
.callback-sub { color: var(--muted); font-size: 1.06rem; margin: 0 0 22px; max-width: 42ch; }
.callback-or { font-family: var(--m); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); margin: 0; }
.callback-or a { color: var(--gold); }
.callback-or a:hover { color: var(--gold-br); }

.callback-form { position: relative; padding: 44px 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-content: start; }
/* Honeypot — hidden via clip, NOT left:-9999px (that off-canvas box caused a phantom
   9999px scroll region → horizontal jostle on mobile). Still focusable/fillable by bots. */
.cb-hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; opacity: 0; }
.cb-field { display: flex; flex-direction: column; gap: 8px; }
.cb-field-full { grid-column: 1 / -1; }
.cb-field label { font-family: var(--m); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); }
.cb-opt { color: var(--muted-2); }
.cb-field input, .cb-field textarea {
  font-family: var(--d); font-size: 1rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--line); border-radius: 0;
  padding: 13px 15px; width: 100%; transition: border-color .25s var(--ease);
}
.cb-field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.cb-field input::placeholder, .cb-field textarea::placeholder { color: var(--muted-2); }
.cb-field input:focus, .cb-field textarea:focus { border-color: var(--gold); }
.cb-field input:focus-visible, .cb-field textarea:focus-visible { outline: 1px solid var(--gold); outline-offset: 0; }
.cb-submit { grid-column: 1 / -1; justify-content: center; margin-top: 2px; }
.cb-status { grid-column: 1 / -1; margin: 0; font-family: var(--m); font-size: 0.78rem; letter-spacing: 0.04em; min-height: 1.2em; }
.cb-status.is-ok { color: var(--ok); }
.cb-status.is-err { color: var(--warn); }

@media (max-width: 1000px) {
  .faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .faq-head { position: static; }
  .callback { grid-template-columns: 1fr; }
  .callback-copy { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .callback-form { grid-template-columns: 1fr; padding: 30px 24px; }
  .callback-copy { padding: 32px 24px; }
}
