/* ─── Design tokens ─────────────────────────────────────────────────────── */
:root {
  --ink:        #0d1117;
  --ink-80:     rgba(13,17,23,.8);
  --muted:      #5a6474;
  --muted-2:    #8693a5;
  --line:       #e2e8f0;
  --line-2:     #f0f4f8;
  --paper:      #ffffff;
  --soft:       #f6f8fb;
  --navy:       #0f1f3d;
  --navy-light: #162848;
  --blue:       #1a6ff4;
  --blue-dark:  #1458cb;
  --red:        #d42b34;
  --red-dark:   #b0202a;
  --gold:       #f5b731;
  --gold-dark:  #d4940a;
  --green:      #0f9466;

  --shadow-sm:  0 1px 3px rgba(13,17,23,.07), 0 1px 2px rgba(13,17,23,.05);
  --shadow-md:  0 4px 14px rgba(13,17,23,.10), 0 2px 6px rgba(13,17,23,.06);
  --shadow-lg:  0 16px 48px rgba(13,17,23,.14), 0 4px 16px rgba(13,17,23,.07);
  --shadow-xl:  0 30px 80px rgba(13,17,23,.18);

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  22px;

  --transition: 0.18s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* ─── Layout wrappers ───────────────────────────────────────────────────── */
.top-strip-inner,
.nav,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* ─── Top strip ─────────────────────────────────────────────────────────── */
.top-strip {
  background: var(--navy);
  color: rgba(255,255,255,.88);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.top-strip-inner {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip a { color: var(--gold); font-weight: 700; }
.top-strip a:hover { color: white; }

/* ─── Header / Nav ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--red) 0%, #8b0e14 100%);
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(212,43,52,.35);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--soft);
}

.nav-links a[aria-current="page"] {
  color: var(--blue);
  background: #eef4ff;
  font-weight: 700;
}

/* Mobile hamburger (hidden by default) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  color: white;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 3px 10px rgba(212,43,52,.28);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 5px 18px rgba(212,43,52,.38);
}

.btn-secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.btn-dark {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--navy-light);
  box-shadow: 0 4px 14px rgba(15,31,61,.3);
}

.btn-gold {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 3px 10px rgba(245,183,49,.3);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-lg {
  min-height: 52px;
  padding: 0 28px;
  font-size: 1rem;
  border-radius: 11px;
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1493238792000-8113da705763?auto=format&fit=crop&w=1900&q=80");
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,16,26,.94) 0%, rgba(10,16,26,.72) 45%, rgba(10,16,26,.22) 100%),
    linear-gradient(to top, rgba(10,16,26,.6) 0%, transparent 50%);
}

.hero .section-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 52px;
  max-width: 1180px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: -0.02em; }

h1 {
  max-width: 880px;
  margin-top: 16px;
  font-size: clamp(2.6rem, 5.5vw, 5.6rem);
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { color: var(--muted); line-height: 1.7; margin: 0.75em 0 0; }

.hero p {
  max-width: 580px;
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

/* ─── Quick search ──────────────────────────────────────────────────────── */
.quick-search {
  margin-top: 40px;
  padding: 22px 22px 18px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.quick-search-label {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-search form,
.filter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 10px;
  align-items: end;
}

/* ─── Form elements ─────────────────────────────────────────────────────── */
label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
}

input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: white;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,244,.12);
}

textarea { min-height: 120px; resize: vertical; }

/* ─── Trust / stats bar ─────────────────────────────────────────────────── */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--line);
}

.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  flex: 1;
  min-width: 160px;
}

.trust-stat + .trust-stat {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eef4ff;
  color: var(--blue);
  flex-shrink: 0;
}

.trust-icon svg { width: 22px; height: 22px; }

.trust-stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
  font-family: 'DM Serif Display', Georgia, serif;
}

.trust-stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}

/* ─── Section scaffold ──────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-soft { background: var(--soft); }
.section-navy { background: var(--navy); color: white; }
.section-navy p { color: rgba(255,255,255,.72); }
.section-navy h2 { color: white; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  color: var(--red);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-kicker::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* ─── Features / tiles ──────────────────────────────────────────────────── */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.tile {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  margin-bottom: 18px;
}

.tile-icon svg { width: 26px; height: 26px; }

.tile-icon-blue  { background: #eef4ff; color: var(--blue); }
.tile-icon-red   { background: #fdf0f0; color: var(--red); }
.tile-icon-green { background: #e8f7f2; color: var(--green); }

.tile h3 { margin-bottom: 8px; }
.tile p  { margin-top: 0; font-size: 0.94rem; }

/* ─── Vehicle cards ─────────────────────────────────────────────────────── */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.vehicle-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.vehicle-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.vehicle-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #dfe5ec;
  transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-card img,
.vehicle-card:hover img { transform: scale(1.04); }

.vehicle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  background: var(--gold);
  color: var(--ink);
  letter-spacing: 0.04em;
}

.vehicle-body { padding: 20px; }

.price {
  color: var(--red);
  font-weight: 900;
  font-size: 1.5rem;
  letter---spacing: -0.02em;
  line-height: 1;
  font-family: 'DM Serif Display', Georgia, serif;
}

.vehicle-body h3 {
  margin: 8px 0 4px;
  font-size: 1.05rem;
}

.vehicle-body h3 a:hover { color: var(--blue); }

.vehicle-body > p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--muted);
  background: var(--soft);
  font-weight: 600;
  font-size: 0.8rem;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

/* ─── Testimonials ──────────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--gold);
}

.stars svg { width: 18px; height: 18px; fill: currentColor; }

.testimonial-text {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0 0 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* ─── CTA / Banner ──────────────────────────────────────────────────────── */
.banner {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 50%, rgba(212,43,52,.25) 0%, transparent 70%);
}

.banner .section-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 60px 0;
}

.banner h2 { color: white; }
.banner p { color: rgba(255,255,255,.78); max-width: 500px; }

/* ─── Page title bar ────────────────────────────────────────────────────── */
.page-title {
  padding: 56px 0 36px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-title h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
.page-title p { max-width: 680px; }

/* ─── Inventory filters ─────────────────────────────────────────────────── */
.filters {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.inventory-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.result-count {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

/* ─── Detail page ───────────────────────────────────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 0.8fr;
  gap: 28px;
  align-items: start;
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.gallery img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity var(--transition);
}

.gallery img:hover { opacity: .88; }

/* ─── Panel / sidebar ───────────────────────────────────────────────────── */
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.panel-sticky { position: sticky; top: 92px; }

.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.spec-table div {
  padding: 12px 14px;
  background: var(--soft);
  border-radius: var(--radius-sm);
}

.spec-table dt {
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-table dd {
  margin: 4px 0 0;
  font-weight: 800;
  font-size: 0.94rem;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.spec-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--muted);
  background: white;
  font-weight: 600;
  font-size: 0.84rem;
}

/* ─── Split layout ──────────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ─── Lead form ─────────────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid .full { grid-column: 1 / -1; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.notice {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}

.notice[data-show="true"] { display: block; }
.notice-success { color: #07452f; background: #e7f7ef; border: 1px solid #b9e6cf; }
.notice[data-show="true"] { color: #07452f; background: #e7f7ef; border: 1px solid #b9e6cf; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: #080e1a;
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}

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

.site-footer h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
}

.site-footer p, .site-footer a { color: rgba(255,255,255,.65); font-size: 0.9rem; }
.site-footer a:hover { color: white; }
.site-footer .brand { margin-bottom: 14px; }
.site-footer .brand-mark { background: linear-gradient(140deg, var(--red), #8b0e14); }
.site-footer .brand span:last-child { color: white; }

.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,.65); }
.footer-links a:hover { color: white; }

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 0.88rem;
}

.hours-list li strong { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ─── Mobile sticky CTA ─────────────────────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: white;
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(13,17,23,.12);
}

/* ─── Empty state ───────────────────────────────────────────────────────── */
.empty-state {
  grid-column: 1 / -1;
  padding: 48px 36px;
  text-align: center;
  background: var(--soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

.empty-state h3 { color: var(--ink); margin-bottom: 8px; }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .top-strip-inner { flex-direction: column; align-items: flex-start; padding: 10px 0; gap: 6px; }

  .nav { padding: 12px 0; min-height: 60px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 8px 16px 16px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }

  .nav-links.open { display: flex; }
  .nav-links a { min-height: 48px; padding: 0 14px; }
  .nav-hamburger { display: flex; }

  .site-header { position: relative; }

  .quick-search form, .filter-grid,
  .split, .detail-grid, .footer-grid { grid-template-columns: 1fr; }

  .tile-grid, .inventory-grid, .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-stat + .trust-stat { border-left: none; border-top: 1px solid var(--line); }

  .hero { min-height: 60vh; }
  .hero .section-inner { padding: 60px 0 40px; }

  .banner .section-inner { flex-direction: column; align-items: flex-start; }

  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }

  .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .top-strip-inner, .nav, .section-inner {
    width: min(100% - 24px, 1180px);
  }

  .tile-grid, .inventory-grid, .testimonial-grid,
  .form-grid, .spec-table, .gallery {
    grid-template-columns: 1fr;
  }

  .section { padding: 56px 0; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

  .trust-bar-inner { flex-direction: column; }
  .trust-stat + .trust-stat { border-left: none; border-top: 1px solid var(--line); }
  .trust-stat { padding: 16px 0; }

  .quick-search form { grid-template-columns: 1fr; }
  .filter-grid { grid-template-columns: 1fr; }
}
