/* ============================================================
   All Model Repair — Glendale
   Industrial / premium dark theme
   ============================================================ */

:root {
  /* Brand accent (tweakable) — All Model Repair orange */
  --accent: #F2922E;
  --accent-hover: #FBA94B;
  --accent-ink: #1C1D20;
  --brand-charcoal: #27292A;

  /* Surfaces (dark default) */
  --bg: #0c0d10;
  --bg-2: #101216;
  --panel: #15181e;
  --panel-2: #1b1f27;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #f3f4f6;
  --text-soft: #c4c8d0;
  --muted: #888f9b;

  /* Type */
  --font-display: "Saira", "Barlow Condensed", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 6px;
}

/* Light mode override */
body.light {
  --bg: #f4f5f7;
  --bg-2: #ffffff;
  --panel: #ffffff;
  --panel-2: #f0f2f5;
  --border: rgba(15, 18, 24, 0.10);
  --border-strong: rgba(15, 18, 24, 0.18);
  --text: #14171c;
  --text-soft: #3c424c;
  --muted: #6b7280;
}

/* ============================================================
   Section "beats" — alternating white / dark / orange surfaces
   Each beat retunes the surface tokens for the components inside.
   ============================================================ */
.beat-white {
  --bg:#ffffff; --bg-2:#ffffff; --panel:#ffffff; --panel-2:#fafbfc;
  --border:rgba(16,18,22,.12); --border-strong:rgba(16,18,22,.20);
  --text:#14171c; --text-soft:#3c424c; --muted:#6b7280;
  background:var(--bg); color:var(--text);
}
/* white-on-white cards get soft elevation instead of grey fills */
.beat-white .svc, .beat-white .review, .beat-white .form-card,
.beat-white .detail-item, .beat-white .mock, .beat-white .media-frame,
.beat-white .map-frame {
  box-shadow: 0 1px 2px rgba(16,18,22,.05), 0 16px 34px -26px rgba(16,18,22,.45);
}
.beat-light {
  --bg:#eef0f3; --bg-2:#eef0f3; --panel:#ffffff; --panel-2:#f6f7f9;
  --border:rgba(16,18,22,.10); --border-strong:rgba(16,18,22,.18);
  --text:#14171c; --text-soft:#3c424c; --muted:#6b7280;
  background:var(--bg); color:var(--text);
}
.beat-dark {
  --bg:#0c0d10; --bg-2:#0c0d10; --panel:#15181e; --panel-2:#1b1f27;
  --border:rgba(255,255,255,.09); --border-strong:rgba(255,255,255,.16);
  --text:#f3f4f6; --text-soft:#c4c8d0; --muted:#888f9b;
  background:var(--bg); color:var(--text);
}
.beat-orange {
  --bg:#F2922E; --bg-2:#F2922E; --panel:rgba(255,255,255,.18); --panel-2:rgba(255,255,255,.28);
  --border:rgba(26,19,11,.20); --border-strong:rgba(26,19,11,.34);
  --text:#241a0e; --text-soft:#3a2c19; --muted:#6e5026;
  --accent:#1A130B; --accent-ink:#F2922E;
  background:var(--bg); color:var(--text);
}

/* ---- Beat entrance: color-pop stripe + content lift ---- */
.beat { position: relative; }
.beat::before {
  content:""; position:absolute; left:0; right:0; top:0; height:5px; z-index:3;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s cubic-bezier(.16,.84,.28,1);
}
.beat.lit::before { transform: scaleX(1); }
/* eyebrow / number pop in */
.beat .eyebrow, .beat .section-head .eyebrow {
  opacity: 0; transform: translateY(10px) scale(.96);
  transition: opacity .5s ease .08s, transform .5s ease .08s;
}
.beat.lit .eyebrow { opacity: 1; transform: none; }
/* accent icons & badges spring in when the beat lights */
@keyframes beatPop { 0%{transform:scale(.5);opacity:0;} 62%{transform:scale(1.14);} 100%{transform:scale(1);opacity:1;} }
.beat.lit .svc-icon, .beat.lit .feature-ico, .beat.lit .info-ico,
.beat.lit .di-ico, .beat.lit .promise-point .pp-ico, .beat.lit .stat .s-num {
  animation: beatPop .55s both;
}
.beat.lit .svc:nth-child(2) .svc-icon, .beat.lit .feature:nth-child(2) .feature-ico { animation-delay:.06s; }
.beat.lit .svc:nth-child(3) .svc-icon, .beat.lit .feature:nth-child(3) .feature-ico { animation-delay:.12s; }
.beat.lit .svc:nth-child(4) .svc-icon { animation-delay:.18s; }
.beat.lit .stat:nth-child(2) .s-num { animation-delay:.08s; }
.beat.lit .stat:nth-child(3) .s-num { animation-delay:.16s; }
.beat.lit .stat:nth-child(4) .s-num { animation-delay:.24s; }
@media (prefers-reduced-motion: reduce) {
  .beat::before { transition:none; transform:scaleX(1); }
  .beat .eyebrow { opacity:1; transform:none; transition:none; }
  .beat.lit .svc-icon, .beat.lit .feature-ico, .beat.lit .info-ico,
  .beat.lit .di-ico, .beat.lit .promise-point .pp-ico, .beat.lit .stat .s-num { animation:none; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.01em;
  margin: 0;
}
h1.display { font-size: clamp(40px, 6.6vw, 88px); }
h2.display { font-size: clamp(32px, 4.6vw, 56px); }
h3.display { font-size: clamp(22px, 2.6vw, 30px); }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--text-soft); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 17px;
  padding: var(--pad-y) 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--text); }
.btn-dark { background: rgba(0,0,0,.35); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-lg { --pad-y: 18px; font-size: 19px; padding-inline: 34px; }

/* ---------- Utility bar (persistent light) ---------- */
.topbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(16,18,22,.08);
  font-size: 14px;
  color: #6b7280;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  gap: 20px;
}
.topbar a { color: #3c424c; }
.topbar a:hover { color: var(--accent); }
.topbar .tb-left { display: flex; gap: 26px; align-items: center; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar .tb-item svg { width: 15px; height: 15px; color: var(--accent); }
.topbar .tb-right { display: flex; gap: 14px; align-items: center; }
.topbar .tb-right a { display: inline-flex; color: #3c424c; }
.topbar .tb-right svg { width: 16px; height: 16px; }
@media (max-width: 760px) { .topbar .tb-hide { display: none; } }

/* language switch */
.lang-switch { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; }
.lang-switch a { color: #9aa0ac; }
.lang-switch a:hover { color: var(--accent); }
.lang-switch a.is-active { color: #14171c; }
.lang-switch .lang-sep { color: rgba(16,18,22,.2); }

/* ---------- Nav (persistent light) ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16,18,22,.08);
}
.nav .brand-wm-name { color: #14171c; }
.nav .brand-wm-sub { color: #6b7280; }
.nav .nav-links a { color: #3c424c; }
.nav .nav-links a:hover { color: #14171c; }
.nav .btn-ghost { color: #14171c; border-color: rgba(16,18,22,.2); }
.nav .btn-ghost:hover { border-color: #14171c; }
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.footer .brand { margin-bottom: 18px; }
.brand-icon { height: 42px; width: auto; display: block; flex: none; }
.footer .brand-icon { height: 50px; }
.brand-wm { display: flex; flex-direction: column; line-height: 1; gap: 5px; }
.brand-wm-name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}
.brand-wm-sub {
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-soft);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ---------- Hero (white) ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-deco {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(48% 70% at 95% 6%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 62%);
}
.hero-inner { padding-block: clamp(48px, 8vh, 104px); position: relative; z-index: 1; }
.hero-split { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
@media (max-width: 900px) { .hero-split { grid-template-columns: 1fr; } .hero-visual { display: none; } }
.hero-content { max-width: 660px; }
.hero h1 { margin-top: 18px; color: #14171c; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { margin: 22px 0 0; max-width: 560px; color: #3c424c; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-glow { position: absolute; width: 96%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle,
    color-mix(in srgb, var(--accent) 24%, #fff) 0%,
    color-mix(in srgb, var(--accent) 12%, #fff) 52%,
    transparent 72%); }
.hero-visual img { position: relative; width: 100%; max-width: 500px; }

/* trust strip */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 44px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(16,18,22,.12);
  max-width: 640px;
}
.trust-item .t-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  color: #14171c;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-item .t-num .star { color: var(--accent); }
.trust-item .t-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  margin-top: 8px;
}

/* ---------- Section scaffolding ---------- */
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin: 18px 0 0; }
.alt { background: var(--bg-2); }

/* ---------- Services ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.svc::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform .25s ease;
}
.svc:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--panel-2); }
.svc:hover::before { transform: scaleY(1); }
.svc-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  margin-bottom: 22px;
}
.svc-icon svg { width: 27px; height: 27px; }
.svc h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.01em;
  margin: 0 0 8px;
}
.svc p { margin: 0; font-size: 16px; color: var(--muted); line-height: 1.55; }

/* ---------- Why / features split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.feature-list { display: grid; gap: 22px; margin-top: 34px; }
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.feature-ico {
  width: 46px; height: 46px; flex: none;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  color: var(--accent);
}
.feature-ico svg { width: 23px; height: 23px; }
.feature h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  margin: 2px 0 6px;
  letter-spacing: 0.01em;
}
.feature p { margin: 0; color: var(--muted); font-size: 16px; }

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
}
.media-frame image-slot { width: 100%; aspect-ratio: 4 / 5; }
.media-frame img.media-photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 22%; display: block; }
.media-badge .mb-num.mb-name { font-size: 30px; }
.media-badge {
  position: absolute;
  left: 22px; bottom: 22px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 16px 22px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
}
.media-badge .mb-num { font-size: 40px; font-weight: 700; display: block; }
.media-badge .mb-text { font-size: 13px; letter-spacing: 0.14em; margin-top: 8px; display: block; }

/* ---------- Stat band ---------- */
.statband .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: clamp(40px, 6vw, 64px);
}
@media (max-width: 720px) { .statband .wrap { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat .s-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 6vw, 60px); line-height: 1; }
.stat .s-label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px; margin-top: 10px; opacity: .92; }

/* ---------- Reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.stars { color: var(--accent); display: flex; gap: 3px; margin-bottom: 18px; }
.stars svg { width: 19px; height: 19px; }
.review blockquote {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-soft);
  flex: 1;
}
.review .r-by { display: flex; align-items: center; gap: 12px; }
.review .r-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--panel-2);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: var(--accent);
  border: 1px solid var(--border);
}
.review .r-name { font-weight: 600; font-size: 16px; }
.review .r-src { font-size: 13px; color: var(--muted); }

/* ---------- Contact / form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 15px;
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 14px; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 18px;
}
.form-success.show { display: block; }

.info-block { display: grid; gap: 22px; }
.info-row { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.info-ico {
  width: 46px; height: 46px; flex: none;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  display: grid; place-items: center;
}
.info-ico svg { width: 22px; height: 22px; }
.info-row h4 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 18px; margin: 4px 0 5px; letter-spacing: 0.04em;
}
.info-row p, .info-row a { margin: 0; color: var(--text-soft); font-size: 16px; }
.info-row a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 16px; margin-top: 4px; }
.hours-table td { padding: 7px 0; border-bottom: 1px solid var(--border); color: var(--text-soft); }
.hours-table td:last-child { text-align: right; color: var(--text); }
.hours-table tr.today td { color: var(--accent); font-weight: 600; }
.map-frame {
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 260px; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto 40px;
}
.faq-tab {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-soft);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 22px;
  cursor: pointer;
  transition: color .15s ease, background .2s ease, border-color .2s ease;
}
.faq-tab:hover { color: var(--text); border-color: var(--border-strong); }
.faq-tab.is-active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: 0.01em;
  color: var(--text);
}
.faq-q .pm { color: var(--accent); flex: none; transition: transform .25s ease; font-size: 26px; line-height: 1; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { margin: 0 0 24px; color: var(--muted); font-size: 17px; }

/* ---------- CTA band ---------- */
.ctaband { position: relative; isolation: isolate; overflow: hidden; }
.ctaband-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 120% at 82% 12%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(60% 100% at 8% 100%, rgba(0,0,0,.10), transparent 60%);
}
.ctaband .wrap { padding-block: clamp(56px, 8vw, 96px); text-align: center; }
.ctaband h2 { color: var(--text); }
.ctaband .lead { margin: 18px auto 32px; max-width: 560px; color: var(--text-soft); }
.ctaband-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-block: 56px 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer .brand { margin-bottom: 18px; }
.footer p { color: var(--muted); font-size: 15px; max-width: 320px; }
.footer h5 {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 15px; margin: 0 0 16px; color: var(--text-soft);
}
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 15px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 14px;
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .svc:hover { transform: none; }
}

/* ---------- Rating badge (Yelp) ---------- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 22px;
}
.rating-badge .rb-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--text);
}
.rating-badge .rb-mid { display: flex; flex-direction: column; gap: 4px; }
.rating-badge .rb-stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; line-height: 1; }
.rating-badge .rb-count { font-size: 14px; color: var(--muted); }
.rating-badge .rb-yelp {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  color: #d32323; padding-left: 16px; border-left: 1px solid var(--border);
}
.section-head.center .rating-badge { margin-top: 26px; }

/* ---------- Instagram bar ---------- */
.ig-band { background: var(--bg); border-top: 1px solid var(--border); }
.ig-bar-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 26px;
}
.ig-id { display: inline-flex; align-items: center; gap: 16px; }
.ig-glyph {
  width: 54px; height: 54px; flex: none;
  border-radius: 15px;
  display: grid; place-items: center;
  color: #fff;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.ig-glyph svg { width: 28px; height: 28px; }
.ig-id-text { display: flex; flex-direction: column; gap: 3px; }
.ig-handle-lg {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 28px); letter-spacing: 0.02em; color: var(--text); line-height: 1;
}
.ig-sub { font-size: 15px; color: var(--muted); }
.ig-follow svg { width: 18px; height: 18px; }

.ig-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(150px, 19vw, 210px);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.ig-strip::-webkit-scrollbar { height: 8px; }
.ig-strip::-webkit-scrollbar-track { background: var(--panel); border-radius: 999px; }
.ig-strip::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; }
.ig-strip::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.ig-tile {
  position: relative;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
}
.ig-tile image-slot { width: 100%; aspect-ratio: 1 / 1; display: block; }
.ig-tile-ov {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(214,36,159,.55), rgba(40,90,235,.55));
  color: #fff;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.ig-tile-ov svg { width: 34px; height: 34px; }
.ig-tile:hover .ig-tile-ov { opacity: 1; }

/* ---------- Towing partner callout ---------- */
.tow-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 22px;
}
@media (max-width: 680px) { .tow-callout { grid-template-columns: 1fr; text-align: center; } }
.tow-callout .tow-ico {
  width: 52px; height: 52px; flex: none;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent); display: grid; place-items: center;
}
@media (max-width: 680px) { .tow-callout .tow-ico { margin: 0 auto; } }
.tow-callout .tow-ico svg { width: 28px; height: 28px; }
.tow-callout h4 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 20px; margin: 0 0 4px; letter-spacing: 0.02em; color: var(--text);
}
.tow-callout p { margin: 0; color: var(--muted); font-size: 15px; }
.tow-callout .tow-name { color: var(--text-soft); font-weight: 600; }
@media (max-width: 680px) { .tow-callout .btn { justify-self: center; } }

/* ---------- Detailing section ---------- */
.detail-head .eyebrow { color: var(--accent); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: 6px;
}
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-showcase {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
}
.detail-showcase image-slot { width: 100%; aspect-ratio: 5 / 6; }
.detail-showcase .ds-tag {
  position: absolute; left: 20px; top: 20px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
}
.detail-list { display: grid; gap: 14px; }
.detail-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.detail-item:hover { border-color: var(--border-strong); transform: translateX(-4px); background: var(--panel-2); }
.detail-item .di-ico {
  width: 48px; height: 48px; flex: none;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  display: grid; place-items: center;
}
.detail-item .di-ico svg { width: 25px; height: 25px; }
.detail-item h4 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 20px; margin: 3px 0 5px; letter-spacing: 0.01em;
}
.detail-item p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }

/* ---------- Showcase / Our Work gallery ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 188px;
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 6px;
}
.shot {
  position: relative; margin: 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--panel);
  grid-column: span 1; grid-row: span 1;
  box-shadow: 0 1px 2px rgba(16,18,22,.05), 0 16px 34px -26px rgba(16,18,22,.45);
}
.shot image-slot { width: 100%; height: 100%; display: block; }
.shot-lg { grid-column: span 2; grid-row: span 2; }
.shot-wide { grid-column: span 2; }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  padding: 30px 16px 14px;
  background: linear-gradient(to top, rgba(8,9,12,.85), transparent);
  opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.shot:hover figcaption { opacity: 1; transform: none; }
.shot .sc-make { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; color: #fff; font-size: 17px; letter-spacing: .03em; }
.shot .sc-job { font-size: 13px; color: var(--accent); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; }
@media (max-width: 720px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 148px; }
  .shot-lg { grid-column: span 2; grid-row: span 2; }
  .shot-wide { grid-column: span 2; }
}
.showcase-cta { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 38px; }
.showcase-cta p { margin: 0; font-family: var(--font-display); text-transform: uppercase; font-size: clamp(18px,2vw,24px); letter-spacing: .02em; color: var(--text); }

/* ---------- Blog ---------- */
.blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.blog-head h2 { margin-top: 16px; }
.blog-head p { margin: 16px 0 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.post {
  display: flex; flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.post:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.post-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.post-media image-slot { width: 100%; height: 100%; display: block; }
.post-cat {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em;
  font-size: 11px; font-weight: 600;
  background: var(--accent); color: var(--accent-ink);
  padding: 6px 11px; border-radius: 999px;
}
.post-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--muted); }
.post h3 { font-family: var(--font-display); text-transform: none; font-weight: 700; font-size: 21px; line-height: 1.15; letter-spacing: .005em; margin: 10px 0 0; }
.post h3 a { color: var(--text); transition: color .15s ease; }
.post h3 a:hover { color: var(--accent); }
.post-body p { margin: 12px 0 18px; color: var(--muted); font-size: 15px; line-height: 1.55; flex: 1; }
.post-link { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: 13px; font-weight: 600; color: var(--accent); }

/* ---------- Blog page (blog.html) ---------- */
.blog-page-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px); }
.blog-page-head .eyebrow { justify-content: center; }
.blog-page-head h1 { margin-top: 16px; color: var(--text); }
.blog-page-head p { margin: 18px auto 0; color: var(--text-soft); }
.feature-post {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 52px); align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 860px) { .feature-post { grid-template-columns: 1fr; } }
.fp-media { position: relative; display: block; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 1px 2px rgba(16,18,22,.05), 0 22px 44px -28px rgba(16,18,22,.5); }
.fp-media image-slot { width: 100%; height: 100%; display: block; }
.fp-body h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.4vw, 42px); line-height: 1.08; margin: 12px 0 0; color: var(--text); }
.fp-body p { color: var(--text-soft); margin: 16px 0 24px; font-size: 17px; line-height: 1.6; }

/* ---------- Neighborhood promise band ---------- */
.promise {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid var(--border);
}
.promise-bg { position: absolute; inset: 0; z-index: -2; background: var(--bg-2); }
.promise-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 120% at 15% 20%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%),
    radial-gradient(60% 110% at 90% 90%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 60%);
}
.promise .wrap { padding-block: clamp(60px, 9vw, 110px); position: relative; }
.promise-inner { max-width: 880px; }
.promise .pq-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 12vw, 150px);
  line-height: 0.6;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.promise blockquote {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
  font-size: clamp(30px, 4.6vw, 58px);
  color: var(--text);
}
.promise blockquote .accent { color: var(--accent); }
.promise .pq-body { margin: 26px 0 0; max-width: 620px; color: var(--text-soft); font-size: clamp(17px, 1.4vw, 20px); }
.promise-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
@media (max-width: 760px) { .promise-points { grid-template-columns: 1fr; gap: 14px; } }
.promise-point {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: color-mix(in srgb, var(--panel) 70%, transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.promise-point .pp-ico {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center;
}
.promise-point .pp-ico svg { width: 21px; height: 21px; }
.promise-point .pp-text { font-family: var(--font-display); text-transform: uppercase; font-size: 17px; letter-spacing: 0.02em; line-height: 1.1; color: var(--text); }

