/* ============================================================
   BayLux Auto Service — style.css (Dark / Red edition)
   Palette: black & charcoal · automotive red accent · white / light-gray text
   Red is reserved for CTAs, icons, links, highlights, underlines & active states.
   Type: Archivo (display) · Fraunces (serif accent) · Inter (body)
   ============================================================ */

:root {
  /* backgrounds */
  --bg:         #0E0E0E;   /* main background */
  --bg-alt:     #141518;   /* alternate sections */
  --bg-deep:    #0A0A0A;   /* header/footer deepest */
  --surface:    #1B1D21;   /* cards */
  --surface-2:  #232629;   /* raised / hover */

  /* borders */
  --line:       #34373D;   /* medium charcoal border */
  --line-soft:  #26282D;   /* subtle divider */

  /* text */
  --text:       #F5F5F5;   /* primary white */
  --muted:      #B8BCC2;   /* secondary light gray */
  --muted-2:    #8A9099;   /* tertiary / placeholder */

  /* automotive red (accent) */
  --red:        #C61F2B;
  --red-2:      #E23744;   /* hover / brighter */
  --red-bright: #E2545C;   /* small text / links on dark (legible) */
  --red-deep:   #A2161F;
  --red-soft:   rgba(198,31,43,.16);
  --red-line:   rgba(198,31,43,.45);

  --radius:     18px;
  --radius-sm:  12px;
  --shadow-sm:  0 1px 2px rgba(0,0,0,.45), 0 8px 24px rgba(0,0,0,.30);
  --shadow-md:  0 20px 52px rgba(0,0,0,.55);
  --shadow-red: 0 12px 28px rgba(198,31,43,.28);

  --maxw: 1160px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* -------- reset / base -------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: "Archivo", system-ui, sans-serif; line-height: 1.1; margin: 0; letter-spacing: -.015em; color: var(--text); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg, iframe { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; color: var(--text); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--red); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

/* -------- buttons (RED = primary CTA) -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .005em;
  padding: 14px 24px; border-radius: 13px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), background .2s, box-shadow .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .ic { width: 18px; height: 18px; }
.btn-sm { padding: 10px 17px; font-size: 14px; }
.btn-lg { padding: 17px 26px; font-size: 16px; }
.btn-block { width: 100%; }

/* primary red CTA (class name kept as btn-gold for markup compatibility) */
.btn-gold { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-gold:hover { background: var(--red-2); color: #fff; transform: translateY(-2px); }

/* secondary (raised dark) */
.btn-dark { background: var(--surface-2); color: #fff; border-color: var(--line); }
.btn-dark:hover { background: #2c3036; border-color: var(--red); transform: translateY(-2px); }

/* outline on dark */
.btn-outline { background: transparent; color: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: var(--red); color: var(--red-bright); transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn-outline-light:hover { border-color: var(--red); color: var(--red-bright); background: rgba(255,255,255,.04); transform: translateY(-2px); }

.btn-ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.14); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: var(--red); transform: translateY(-2px); }

/* -------- eyebrow / labels -------- */
.eyebrow { display: inline-flex; align-items: center; gap: 11px; font-family: "Archivo", sans-serif; font-weight: 600; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; }
.eb-rule { width: 26px; height: 2px; background: currentColor; border-radius: 2px; display: inline-block; opacity: .9; }
.eyebrow-dark, .eyebrow-gold, .eyebrow-light { color: var(--red-bright); }

.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(198,31,43,.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(198,31,43,.55); } 70% { box-shadow: 0 0 0 8px rgba(198,31,43,0); } 100% { box-shadow: 0 0 0 0 rgba(198,31,43,0); } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,.82); backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s; }
.header-accent { height: 3px; background: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-deep)); }
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line-soft); }
.header-inner { display: flex; align-items: center; gap: 22px; min-height: 72px; padding: 10px 0; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.brand-logo-svg { height: 48px; width: auto; display: block; }
.brand-logo-footer { height: 44px; }
.brand-logo-img { width: 240px; max-width: 62vw; height: auto; display: block; }
.brand-logo-img-footer { width: 220px; }

.nav { display: flex; gap: 24px; margin-left: auto; }
.nav a { font-weight: 500; font-size: 15px; color: var(--text); position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--red); transition: width .22s var(--ease); }
.nav a:hover::after, .nav a:focus-visible::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 15px; }
.phone-link { display: inline-flex; align-items: center; gap: 7px; font-family: "Archivo", sans-serif; font-weight: 700; font-size: 15px; color: var(--text); }
.phone-link .ic { width: 17px; height: 17px; color: var(--red-bright); }
.phone-link:hover { color: var(--red-bright); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 42px; border: 1px solid var(--line); background: var(--surface); border-radius: 11px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 19px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(1000px 560px at 80% -12%, rgba(198,31,43,.18), transparent 60%),
    radial-gradient(720px 520px at 4% 115%, rgba(198,31,43,.08), transparent 60%),
    linear-gradient(160deg, #161616 0%, #0A0A0A 60%, #0E0E0E 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(720px 420px at 72% 18%, #000, transparent 76%); }
.hero-grid { display: grid; grid-template-columns: 1.16fr .84fr; gap: 54px; align-items: center; padding: 84px 24px; position: relative; z-index: 1; }
.hero-serif { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 500; font-size: clamp(1.05rem, 2.1vw, 1.35rem); color: var(--red-bright); margin-top: 16px; }
.hero-title { font-size: clamp(2.4rem, 5.1vw, 3.75rem); font-weight: 800; margin-top: 8px; color: #fff; }
.hero-dash { color: var(--red-bright); font-weight: 500; }
.hero-title-accent { color: var(--red-bright); display: inline-block; }
.hero-tagline { font-family: "Archivo", sans-serif; font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.32rem); color: #f0f0f0; margin-top: 16px; letter-spacing: .01em; }
.hero-sub { color: var(--muted); font-size: 1.06rem; max-width: 32em; margin-top: 18px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px 26px; margin-top: 32px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; color: #e9eaec; font-weight: 500; }
.ic-check { width: 19px; height: 19px; color: var(--red-bright); flex: none; }

.hero-card { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid var(--line); border-radius: 22px; padding: 28px; backdrop-filter: blur(8px); box-shadow: var(--shadow-md); }
.hero-card-top { display: flex; align-items: center; justify-content: space-between; }
.card-label { font-family: "Archivo", sans-serif; font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.status-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: #b8e6c4; background: rgba(52,168,83,.14); border: 1px solid rgba(52,168,83,.34); padding: 5px 11px; border-radius: 999px; }
.status-chip .pulse-dot { background: #46c767; box-shadow: 0 0 0 0 rgba(70,199,103,.6); }
.hero-card-phone { display: block; font-family: "Archivo", sans-serif; font-weight: 800; font-size: 2.05rem; letter-spacing: -.025em; margin-top: 14px; color: #fff; }
.hero-card-phone:hover { color: var(--red-bright); }
.diag-line { width: 100%; height: 46px; color: var(--red-bright); margin: 8px 0 18px; opacity: .95; }
.hero-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-card-hours { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 16px; display: grid; gap: 9px; }
.hero-card-hours > div { display: flex; justify-content: space-between; font-size: 14px; }
.hero-card-hours dt { color: var(--muted); margin: 0; }
.hero-card-hours dd { color: #f0f0f0; margin: 0; font-weight: 500; }

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust-band { background: var(--bg-alt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 30px 24px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); padding-left: 20px; }
.trust-ic { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--red-soft); color: var(--red-bright); flex: none; }
.trust-ic svg { width: 24px; height: 24px; }
.trust-item h3 { font-family: "Archivo", sans-serif; font-size: .98rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.trust-item p { font-size: .82rem; color: var(--muted); margin-top: 3px; }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: 92px 0; border-top: 1px solid var(--line-soft); background: var(--bg); }
.section-tint { background: var(--bg-alt); }
.section-navy { background: radial-gradient(760px 420px at 88% 0%, rgba(198,31,43,.12), transparent 60%), var(--bg-alt); color: #fff; }
.section-head { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.section-head-left { text-align: left; margin-inline: 0; }
.section-title { font-size: clamp(1.8rem, 3.6vw, 2.55rem); font-weight: 800; margin-top: 16px; color: var(--text); }
.section-title-light { color: #fff; }
.section-lead { color: var(--muted); font-size: 1.07rem; margin-top: 16px; }
.section-lead-light { color: var(--muted); }

/* ============================================================
   SERVICES
   ============================================================ */
.makes-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin: -24px 0 40px; }
.makes-label { font-family: "Archivo", sans-serif; font-weight: 600; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.makes-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.makes-chips li { font-family: "Archivo", sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .02em; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: transform .22s var(--ease), box-shadow .22s, border-color .22s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--red); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: var(--red-soft); color: var(--red-bright); margin-bottom: 17px; }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.13rem; font-weight: 700; color: var(--text); }
.service-card p { color: var(--muted); font-size: .95rem; margin-top: 9px; }
.service-card-cta { background: linear-gradient(158deg, var(--surface-2), var(--surface)); color: #fff; border-color: var(--red-line); display: flex; flex-direction: column; justify-content: center; }
.service-card-cta h3 { color: #fff; }
.service-card-cta p { color: var(--muted); margin-bottom: 18px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; transition: transform .22s var(--ease), background .22s, border-color .22s; }
.why-card:hover { transform: translateY(-5px); background: var(--surface-2); border-color: var(--red); }
.why-icon { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 14px; background: var(--red-soft); color: var(--red-bright); margin-bottom: 17px; }
.why-icon svg { width: 27px; height: 27px; }
.why-card h3 { font-size: 1.13rem; font-weight: 700; color: #fff; }
.why-card p { color: var(--muted); font-size: .95rem; margin-top: 9px; }

/* ============================================================
   WHAT CUSTOMERS CAN EXPECT
   ============================================================ */
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.expect-item { display: flex; gap: 15px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform .22s var(--ease), background .22s, border-color .22s; }
.expect-item:hover { transform: translateY(-4px); background: var(--surface-2); border-color: var(--red); }
.expect-ic { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--red-soft); color: var(--red-bright); flex: none; }
.expect-ic svg { width: 24px; height: 24px; }
.expect-item h3 { font-family: "Archivo", sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.2; }
.expect-item p { color: var(--muted); font-size: .92rem; margin-top: 6px; }

/* ============================================================
   WARRANTY
   ============================================================ */
.warranty-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: center; }
.warranty-copy .section-head { text-align: left; margin: 0; }
.warranty-points { display: grid; gap: 16px; margin-top: 26px; }
.warranty-points li { display: flex; gap: 13px; align-items: flex-start; color: var(--muted); }
.warranty-points li .ic-check { color: var(--red-bright); margin-top: 3px; }
.warranty-points strong { color: var(--text); }
.warranty-copy .appt-direct { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.warranty-seal-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.warranty-seal { width: 100%; max-width: 270px; filter: drop-shadow(0 18px 36px rgba(0,0,0,.5)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.seal-ring-outer { fill: #16181C; stroke: var(--red); stroke-width: 2.5; }
.seal-ring-inner { fill: none; stroke: var(--red-bright); stroke-width: 1; stroke-dasharray: 2 4; }
.seal-text { fill: var(--red-bright); font-family: "Archivo", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .18em; }
.seal-big { fill: #fff; font-family: "Archivo", sans-serif; font-weight: 800; font-size: 38px; letter-spacing: -.02em; }
.seal-sub { fill: var(--red-bright); font-family: "Archivo", sans-serif; font-weight: 600; font-size: 11px; letter-spacing: .12em; }
.seal-note { color: var(--muted); font-size: 12.5px; font-style: italic; text-align: center; max-width: 24em; }

/* ============================================================
   APPOINTMENT
   ============================================================ */
.appt-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.appt-intro .section-head { text-align: left; margin: 0; }
.appt-points { margin-top: 24px; display: grid; gap: 12px; }
.appt-points li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--text); }
.appt-points .ic-check { color: var(--red-bright); }
.appt-direct { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.appt-form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 32px; box-shadow: var(--shadow-md); }
.appt-form { display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-sm { max-width: 150px; }
.field label { font-family: "Archivo", sans-serif; font-weight: 600; font-size: 13.5px; color: var(--text); }
.field .opt { color: var(--muted); font-weight: 500; font-family: "Inter", sans-serif; font-size: 12.5px; }
.field input, .field select, .field textarea { font-family: "Inter", sans-serif; font-size: 15px; color: var(--text); padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg); transition: border-color .18s, box-shadow .18s; width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field select { color: var(--text); }
.field select option { background: var(--surface); color: var(--text); }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(198,31,43,.22); }
.field input.invalid, .field select.invalid { border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255,107,107,.18); }
.form-error { color: #ff8085; font-size: 14px; font-weight: 500; margin-top: -2px; }
.form-note { color: var(--muted); font-size: 13px; text-align: center; }

.appt-success { text-align: center; padding: 14px 6px; }
.success-mark { width: 64px; height: 64px; color: #46c767; margin: 0 auto 14px; }
.appt-success h3 { font-size: 1.45rem; color: var(--text); }
.appt-success p { color: var(--muted); margin-top: 8px; max-width: 32em; margin-inline: auto; }
.appt-success .appt-direct { justify-content: center; }

/* ============================================================
   AREAS WE SERVE
   ============================================================ */
.area-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 820px; margin: 0 auto; }
.area-chips li { font-family: "Archivo", sans-serif; font-weight: 600; font-size: 14.5px; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; box-shadow: var(--shadow-sm); transition: transform .18s var(--ease), border-color .18s, color .18s; }
.area-chips li:hover { transform: translateY(-2px); border-color: var(--red); color: var(--red-bright); }

/* ============================================================
   CONTACT / MAP
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 26px; align-items: stretch; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: grid; gap: 26px; box-shadow: var(--shadow-sm); align-content: start; }
.contact-label { font-family: "Archivo", sans-serif; font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--red-bright); }
.contact-big { display: block; font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.75rem; color: var(--text); margin-top: 8px; letter-spacing: -.025em; }
.contact-big:hover { color: var(--red-bright); }
.contact-email { display: inline-block; margin-top: 6px; font-weight: 600; color: var(--text); }
.contact-email:hover { color: var(--red-bright); }
.contact-directions { display: inline-block; margin-top: 8px; font-family: "Archivo", sans-serif; font-weight: 600; font-size: 13.5px; color: var(--red-bright); }
.contact-directions:hover { color: var(--text); }
.contact-actions { display: flex; gap: 10px; margin-top: 14px; }
.contact-text { color: var(--text); margin-top: 8px; font-weight: 500; }
.contact-hint { color: var(--muted); font-size: 12.5px; margin-top: 4px; font-style: italic; }
.hours-list { display: grid; gap: 8px; margin-top: 8px; }
.hours-list > div { display: flex; justify-content: space-between; font-size: 14.5px; }
.hours-list dt { color: var(--muted); margin: 0; }
.hours-list dd { color: var(--text); margin: 0; font-weight: 600; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 52px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s, background .2s; }
.faq-item.open { border-color: var(--red); background: var(--surface-2); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: "Archivo", sans-serif; font-weight: 600; font-size: 1.02rem; color: #fff; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item.open .faq-q { color: var(--red-bright); }
.faq-chev { width: 22px; height: 22px; color: var(--red-bright); flex: none; transition: transform .25s var(--ease); }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { color: var(--muted); padding: 0 22px 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-deep); color: var(--muted); padding-top: 60px; border-top: 3px solid transparent; border-image: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-deep)) 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 38px; padding-bottom: 44px; }
.brand-footer { color: #fff; }
.footer-tag { color: var(--muted); margin-top: 15px; max-width: 30em; font-size: .95rem; }
.footer-call { display: flex; gap: 10px; margin-top: 20px; }
.footer-col h4 { font-family: "Archivo", sans-serif; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 15px; }
.footer-list { display: grid; gap: 9px; font-size: 14.5px; }
.footer-list li { display: flex; gap: 10px; }
.footer-list li span { color: var(--muted-2); min-width: 40px; }
.footer-list a:hover { color: var(--red-bright); }
.footer-list-plain li { display: block; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 10px 18px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted-2); }
.footer-license { font-family: "Archivo", sans-serif; font-weight: 600; letter-spacing: .08em; color: var(--muted); }
.footer-mini a { color: #fff; font-weight: 600; }
.footer-mini a:hover { color: var(--red-bright); }

/* ============================================================
   STICKY MOBILE BAR  (black, red highlight, white text)
   ============================================================ */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; display: none; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--line); box-shadow: 0 -6px 20px rgba(0,0,0,.55); padding-bottom: env(safe-area-inset-bottom); border-top: 1px solid var(--line); }
.mobile-bar-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-family: "Archivo", sans-serif; font-weight: 700; font-size: 12.5px; padding: 11px 4px 10px; background: var(--bg-deep); color: #fff; }
.mobile-bar-btn svg { width: 21px; height: 21px; color: var(--red-bright); }
.mb-call { background: var(--red); color: #fff; }
.mb-call svg { color: #fff; }
.mobile-bar-btn:active { filter: brightness(1.1); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; padding-top: 60px; padding-bottom: 60px; }
  .hero-card { max-width: 470px; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 22px; }
  .trust-item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .trust-item:nth-child(even) { border-left: 1px solid var(--line); padding-left: 22px; }
  .service-grid, .why-grid, .expect-grid { grid-template-columns: repeat(2, 1fr); }
  .warranty-grid { grid-template-columns: 1fr; gap: 40px; }
  .warranty-seal-wrap { order: -1; }
  .warranty-seal { max-width: 220px; }
  .appt-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 780px) {
  .nav, .header-actions .phone-link, .header-actions .btn { display: none; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--surface); border: 1px solid var(--line); border-top: 0; box-shadow: var(--shadow-md); padding: 8px 24px 16px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
  .nav.open { display: flex; transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-actions { margin-left: auto; }
  .section { padding: 64px 0; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 64px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .makes-row { margin-top: -8px; }
  .header-inner { min-height: 60px; padding: 10px 0; }
  .brand-logo-img { width: 175px; }
}
@media (max-width: 500px) {
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(even) { border-left: 0; padding-left: 0; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); padding-top: 20px; }
  .service-grid, .why-grid, .expect-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .field-sm { max-width: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card-actions { grid-template-columns: 1fr 1fr; }
  .appt-form-wrap { padding: 24px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible { outline: 3px solid var(--red-bright); outline-offset: 2px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .warranty-seal { animation: none; }
}
