/* ============================================================
   DP RENEWED FINISH LLC — STYLES
   Palette: black / dark charcoal, royal-electric blue,
   white, subtle silver.
   ============================================================ */

:root {
  --bg: #0a0b0d;             /* near-black page background */
  --bg-alt: #101216;         /* dark charcoal alternate sections */
  --surface: #15181d;        /* card background */
  --surface-2: #1b1f26;      /* raised card / inputs */
  --border: #262b33;
  --border-light: #343b45;

  --blue: #1e6cff;           /* royal / electric blue accent */
  --blue-bright: #4d8dff;
  --blue-glow: rgba(30, 108, 255, 0.35);

  --text: #f4f6f8;           /* white text */
  --text-muted: #9aa3ad;     /* silver/gray */
  --silver: #c8ccd2;

  /* Fonts matched to the printed brochure:
     Oswald    — bold condensed automotive headings
     Comfortaa — rounded body text (the brochure's body/blue-subhead font) */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Comfortaa", "Segoe UI", system-ui, sans-serif;

  --radius: 12px;
  --container: 1160px;
  --header-h: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-bright); text-decoration: none; }
a:hover { color: var(--text); }

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.12;
  font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 7.5vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4.6vw, 2.8rem); }
h3 { font-size: 1.3rem; letter-spacing: 0.04em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.muted { color: var(--text-muted); }
.accent { color: var(--blue-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.98rem;
  padding: 0.85em 2em;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #1450c8 100%);
  color: #fff;
  box-shadow: 0 4px 22px var(--blue-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--blue-glow);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}
.btn-outline:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  transform: translateY(-2px);
}

.btn-lg { font-size: 1.15rem; padding: 0.95em 2.2em; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 11, 13, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 11, 13, 0.92);
  border-bottom-color: var(--border);
}

.nav-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo { height: 44px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav a {
  color: var(--silver);
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: #fff; }
.site-nav .nav-cta {
  color: #fff;
  font-size: 0.95rem;
  padding: 0.55em 1.3em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s 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 PHOTO: save the vehicle photo as images/hero.jpg and it is
   picked up automatically (see the <img class="hero-photo"> in
   index.html). The overlays below keep the text readable on top. */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #07080b 0%, #0a0e16 55%, #070a10 100%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* brochure-style blue smoke + vignette (also darkens the photo for contrast) */
.hero-smoke {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 30%, rgba(30, 108, 255, 0.20), transparent 62%),
    radial-gradient(ellipse 60% 45% at 15% 65%, rgba(20, 80, 200, 0.16), transparent 60%),
    radial-gradient(ellipse 90% 60% at 50% 105%, rgba(30, 108, 255, 0.22), transparent 65%),
    linear-gradient(180deg, rgba(7, 8, 11, 0.88) 0%, rgba(7, 8, 11, 0.55) 42%, rgba(7, 9, 14, 0.92) 100%);
}

.hero-glow {
  position: absolute;
  bottom: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 950px;
  height: 440px;
  background: radial-gradient(ellipse at center, rgba(30, 108, 255, 0.26), transparent 65%);
  filter: blur(34px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-eyebrow {
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.hero h1 { text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6); }
.hero h1 .accent {
  color: var(--blue-bright);
  text-shadow: 0 0 45px var(--blue-glow);
}

.hero-sub {
  margin-top: 22px;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--silver);
  max-width: 620px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* the service strip from the business card */
.hero-strip {
  margin-top: 34px;
  color: var(--silver);
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
}

.hero-contact {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.hero-contact a { font-weight: 700; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
/* rounded blue sub-heading, matching the brochure's blue accent lines */
.section-eyebrow {
  color: var(--blue-bright);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
  margin-bottom: 10px;
}

/* brochure-style angled speed bars beside section titles */
.section-head h2::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 0.52em;
  margin-left: 16px;
  background:
    linear-gradient(90deg,
      var(--blue) 0 8px,        transparent 8px 16px,
      rgba(30,108,255,0.6) 16px 24px, transparent 24px 32px,
      rgba(30,108,255,0.3) 32px 40px, transparent 40px);
  transform: skewX(-28deg);
}

.section-sub {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.service-card {
  padding: 34px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 141, 255, 0.45);
  box-shadow: 0 10px 40px rgba(30, 108, 255, 0.12);
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--blue-bright);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.98rem; }

/* ---------- Vehicle toggle ---------- */
.vehicle-toggle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.vehicle-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.vehicle-btn:hover { color: var(--text); }
.vehicle-btn.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 16px var(--blue-glow);
}

/* ---------- Packages ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 141, 255, 0.45);
}

.package-card.featured {
  background: linear-gradient(180deg, rgba(30, 108, 255, 0.14) 0%, var(--surface) 45%);
  border-color: rgba(77, 141, 255, 0.55);
  box-shadow: 0 0 45px rgba(30, 108, 255, 0.14);
}
.package-card.featured:hover {
  box-shadow: 0 0 60px rgba(30, 108, 255, 0.22);
}

.package-label {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--blue) 0%, #1450c8 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  padding: 5px 16px;
  border-radius: 999px;
  box-shadow: 0 3px 14px var(--blue-glow);
}

/* thin divider under the package name + blue description, as printed
   in the brochure */
.package-name {
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}
.package-desc { color: var(--blue-bright); font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }

.package-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.7rem;
  line-height: 1;
  margin-bottom: 4px;
}
.package-price .currency { font-size: 1.6rem; vertical-align: 14px; margin-right: 2px; color: var(--silver); }
.package-vehicle {
  color: var(--blue-bright);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 22px;
}

.package-includes-note {
  color: var(--silver);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.package-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.package-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--silver);
  font-size: 0.94rem;
}
.package-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--blue-bright);
  border-bottom: 2px solid var(--blue-bright);
  transform: rotate(-45deg);
}

.packages-disclaimer {
  margin-top: 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Trim / before-after ---------- */
.trim-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trim-copy p { color: var(--text-muted); margin: 18px 0; }
.trim-copy h2 { margin-top: 6px; }

.check-list {
  list-style: none;
  margin: 8px 0 30px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--silver);
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 9px;
  border-left: 2.5px solid var(--blue-bright);
  border-bottom: 2.5px solid var(--blue-bright);
  transform: rotate(-45deg);
}

.ba-wrap { width: 100%; }

.ba-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  aspect-ratio: 4 / 3;
  user-select: none;
  touch-action: pan-y;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* the before layer is full-size and revealed with clip-path,
   so both photos always stay perfectly aligned while dragging */
.ba-before-clip {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: transparent;
}
.ba-handle-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}
.ba-handle-grip {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.5), 0 0 20px var(--blue-glow);
}

.ba-tag {
  position: absolute;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: 6px;
  background: rgba(10, 11, 13, 0.75);
  backdrop-filter: blur(4px);
}
.ba-tag-before { left: 14px; color: var(--silver); }
.ba-tag-after { right: 14px; color: var(--blue-bright); }

.ba-hint {
  margin-top: 12px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  padding: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 141, 255, 0.5);
  box-shadow: 0 12px 40px rgba(30, 108, 255, 0.12);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-cat {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(10, 11, 13, 0.8);
  backdrop-filter: blur(4px);
  color: var(--silver);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 6, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
}
.lightbox[hidden] { display: none; }
.lightbox figure {
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
}
.lightbox figcaption {
  margin-top: 14px;
  color: var(--silver);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: var(--silver);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover { color: #fff; transform: scale(1.1); }

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 32px;
}

.why-item { border-top: 1px solid var(--border); padding-top: 22px; }
.why-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue-bright);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.why-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why-item p { color: var(--text-muted); font-size: 0.96rem; }

/* ---------- About ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy h2 { margin: 6px 0 10px; }
.about-copy p { color: var(--text-muted); margin: 16px 0; }
.about-copy .about-mission { color: var(--silver); }
.about-copy .btn { margin-top: 12px; }

.about-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}
.about-panel-name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
.about-panel-tag {
  color: var(--blue-bright);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  margin: 6px 0 22px;
}
.about-panel ul { list-style: none; }
.about-panel li { margin-bottom: 10px; }
.about-panel a { font-weight: 600; }

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.quote-form { padding: 38px 32px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--silver);
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--silver) 50%), linear-gradient(135deg, var(--silver) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(30, 108, 255, 0.2);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #5b636d; }

.form-status { margin-top: 14px; font-size: 0.95rem; min-height: 1.4em; }
.form-status.ok { color: #59d68f; }
.form-status.err { color: #ff7b7b; }

.contact-aside { display: flex; flex-direction: column; gap: 26px; }
.contact-block h3 { font-size: 1.05rem; color: var(--blue-bright); margin-bottom: 8px; letter-spacing: 0.12em; }
.contact-big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--text);
  letter-spacing: 0.03em;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  word-break: break-word;
}
.contact-big:hover { color: var(--blue-bright); text-shadow: 0 0 24px var(--blue-glow); }
.contact-email { font-size: 1.35rem; text-transform: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: #07080a;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-tagline {
  color: var(--blue-bright);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  margin-top: 14px;
}

.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.footer-social a:hover {
  color: var(--blue-bright);
  border-color: var(--blue-bright);
  box-shadow: 0 0 16px var(--blue-glow);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-social-note { color: #565e68; font-size: 0.85rem; margin-top: 16px; }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a { color: var(--text-muted); font-size: 0.95rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--blue-bright); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }

.footer-bottom {
  border-top: 1px solid #14171c;
  padding: 22px 20px;
  text-align: center;
  color: #565e68;
  font-size: 0.85rem;
}

/* ---------- Scroll reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .section { padding: 72px 0; }

  .trim-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 11, 13, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }
  .site-nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 13px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid #171b21;
  }
  .site-nav .nav-cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
  }

  .form-row, .form-row-3 { grid-template-columns: 1fr; gap: 0; }

  .vehicle-btn { font-size: 0.9rem; padding: 9px 16px; }
}
