@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --brand:       #3A3B3B;
  --brand-mid:   #555657;
  --white:       #ffffff;
  --bg:          #FFFFFF;
  --bg-2:        #FAFBFD;
  --line:        #F0F0F2;
  --muted:       #ABABAB;
  --text:        #1C1C1C;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  100px;

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.05);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.07);
  --shadow-lg:   0 14px 44px rgba(0,0,0,0.10);
  --t:           0.18s ease;
}

html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }


/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border: 1px solid transparent;
  padding: 0 40px;
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border-radius: 0;
  transition: background 0.55s cubic-bezier(0.4,0,0.2,1),
              border-color 0.55s cubic-bezier(0.4,0,0.2,1),
              left 0.55s cubic-bezier(0.4,0,0.2,1),
              right 0.55s cubic-bezier(0.4,0,0.2,1),
              top 0.55s cubic-bezier(0.4,0,0.2,1),
              border-radius 0.55s cubic-bezier(0.4,0,0.2,1),
              height 0.55s cubic-bezier(0.4,0,0.2,1),
              padding 0.55s cubic-bezier(0.4,0,0.2,1);
}
.site-header.scrolled {
  background: #3A3B3B;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.09);
  left: clamp(40px, 14vw, 220px);
  right: clamp(40px, 14vw, 220px);
  top: 12px;
  height: 64px;
  border-radius: 100px;
  padding: 0 8px 0 24px;
}

.header-logo { display: flex; align-items: center; justify-self: start; }
.header-logo img { height: 48px; width: auto; }
.header-logo-fallback {
  font-size: 15px; font-weight: 800; color: white;
  letter-spacing: 3px; text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 2px; justify-self: center; }
.site-nav a {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 7px 15px;
  border-radius: var(--r-xl);
  transition: color var(--t);
  letter-spacing: 0.01em;
}
.site-nav a:hover { color: white; }
.site-nav a.active { color: white; }

.header-right { display: flex; align-items: center; gap: 10px; justify-self: end; flex-shrink: 0; }

.btn-contact {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.92); color: #141414;
  border-radius: var(--r-xl);
  padding: 9px 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--t);
  white-space: nowrap;
}
.btn-contact:hover { background: white; }

.header-wa {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  transition: background var(--t), border-color var(--t);
}
.header-wa:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }
.header-wa svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.65); }
.header-wa:hover svg { fill: white; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.7); }


/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 620px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-brand {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; align-items: center;
  padding-top: 108px;
  pointer-events: none;
}
.hero-brand img { height: 56px; width: auto; opacity: 0.90; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/taller/P1070320.webp');
  background-size: cover; background-position: center 55%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,10,10,0.72) 0%,
    rgba(10,10,10,0.28) 45%,
    rgba(10,10,10,0.04) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 48px 88px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: rgba(255,255,255,0.35);
}
.hero-title {
  font-size: clamp(44px, 7.5vw, 92px);
  font-weight: 800; color: var(--white);
  line-height: 1.0; letter-spacing: -0.03em;
  margin-bottom: 40px; max-width: 800px;
}
.hero-title em { font-style: normal; font-weight: 300; display: block; }
.hero-desc { display: none; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero-link-btn {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color var(--t);
  letter-spacing: 0.01em;
  padding: 12px 0;
}
.hero-link-btn::after {
  content: '→';
  font-size: 15px;
  transition: transform var(--t);
}
.hero-link-btn:hover { color: white; }
.hero-link-btn:hover::after { transform: translateX(4px); }


/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  font-family: 'Barlow', sans-serif; font-size: 12.5px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--r-xl); border: 1.5px solid transparent;
  transition: all var(--t); white-space: nowrap; cursor: pointer;
}
.btn svg { flex-shrink: 0; }

.btn-white {
  background: var(--white); color: var(--brand); border-color: var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }

.btn-white-outline {
  background: transparent; color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.4);
}
.btn-white-outline:hover { background: var(--white); color: var(--brand); border-color: var(--white); }

.btn-dark {
  background: var(--brand); color: var(--white); border-color: var(--brand);
}
.btn-dark:hover { background: transparent; color: var(--brand); }

.btn-dark-outline {
  background: transparent; color: var(--brand); border-color: var(--brand);
}
.btn-dark-outline:hover { background: var(--brand); color: var(--white); }

.btn-ghost {
  background: transparent; color: var(--brand); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brand); }

.btn-sm { padding: 9px 18px; font-size: 11.5px; }


/* ── LAYOUT ──────────────────────────────────────────────────── */
.section { padding: 96px 48px; }
.section-sm { padding: 64px 48px; }
.container { max-width: 1200px; margin: 0 auto; }

.label-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.label-tag::before { content: ''; width: 20px; height: 1px; background: var(--muted); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--brand);
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 14px;
}
.section-title em { font-style: normal; font-weight: 300; }
.section-sub {
  font-size: 15.5px; color: var(--muted); max-width: 520px;
  line-height: 1.7; font-weight: 400;
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 52px; flex-wrap: wrap;
}


/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar { background: var(--brand); padding: 28px 48px; }
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center;
}
.stat-num {
  font-size: clamp(22px,3vw,34px); font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 5px;
}
.stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}


/* ── VEHICLES ────────────────────────────────────────────────── */
.vehicles-section { background: var(--bg); }
.vehicles-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 16px;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: box-shadow var(--t), transform var(--t);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.vehicle-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.vehicle-card.sold { opacity: 0.5; pointer-events: none; }

.vehicle-img {
  position: relative; aspect-ratio: 3/2; overflow: hidden; background: #1c1c1c;
  display: flex; align-items: center; justify-content: center;
}
.vehicle-img-blur-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(12px) brightness(0.55);
  transform: scale(1.15); opacity: 0.65; z-index: 1;
}
.vehicle-img img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
  transition: transform 0.5s ease; position: relative; z-index: 2;
}
.vehicle-card:hover .vehicle-img img { transform: scale(1.04); }

.v-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 11px; border-radius: var(--r-xl);
  font-size: 10px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase;
}
.v-badge-on  { background: var(--brand); color: var(--white); }
.v-badge-off { background: rgba(0,0,0,0.45); color: rgba(255,255,255,0.8); }

.vehicle-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.v-brand { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.v-model { font-size: 17px; font-weight: 700; color: var(--brand); line-height: 1.2; }
.v-meta  { font-size: 12px; color: var(--muted); font-weight: 400; margin-top: 2px; }

.v-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--line); margin-top: auto;
}
.v-price { font-size: 20px; font-weight: 800; color: var(--brand); line-height: 1; }
.v-price-note { font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.v-link { font-size: 12px; font-weight: 600; color: var(--muted); white-space: nowrap; display: inline-block; transition: color var(--t), transform 0.25s ease; }
.vehicle-card:hover .v-link { color: var(--brand); transform: translateX(6px); }


/* ── VEHICLE CARD PHOTO CAROUSEL ────────────────────────────── */
.vc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 30px; height: 30px;
  background: rgba(255,255,255,0.92); border: none; border-radius: 50%;
  font-size: 20px; line-height: 1; color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: opacity var(--t), background var(--t);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.vehicle-card:hover .vc-arrow { opacity: 1; }
.vc-arrow:hover { background: white; }
.vc-prev { left: 10px; }
.vc-next { right: 10px; }

.vc-dots {
  position: absolute; bottom: 9px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 5; pointer-events: none;
}
.vc-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.4); transition: background var(--t);
}
.vc-dot-on { background: white; }

/* ── VEHICLE PAGE ────────────────────────────────────────────── */
.vp-hero { position: relative; background: var(--brand); }
.vp-img {
  position: relative; width: 100%; height: 62vh; min-height: 400px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: #141414;
}
.vp-img-blur-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(20px) brightness(0.4);
  transform: scale(1.1); opacity: 0.65; z-index: 1;
}
.vp-img img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
  opacity: 0.95; position: relative; z-index: 2;
}
.vp-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bg-2); }

.vp-hero-bar {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 80px 48px 24px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
  z-index: 10;
}
.vp-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85);
  transition: color var(--t);
}
.vp-back:hover { color: white; }
.vp-back svg { width: 16px; height: 16px; }

.vp-content { max-width: 1200px; margin: 0 auto; padding: 56px 48px 96px; }
.vp-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }

.vp-brand { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.vp-model { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--brand); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 10px; }
.vp-meta  { font-size: 15px; color: var(--muted); margin-bottom: 28px; }

.vp-guarantee {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 8px 16px;
  font-size: 11.5px; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 32px;
}
.vp-guarantee svg { width: 14px; height: 14px; flex-shrink: 0; }

.vp-specs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border-radius: var(--r-md); overflow: hidden;
}
.vp-spec { background: var(--bg); padding: 16px; }
.vp-spec-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.vp-spec-val   { font-size: 14px; font-weight: 600; color: var(--brand); }

.vp-sidebar { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 16px; }

.vp-price-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.vp-price-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.vp-price { font-size: 36px; font-weight: 800; color: var(--brand); line-height: 1; }
.vp-price-note { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.vp-cta { width: 100%; justify-content: center; }
.vp-sold-notice {
  background: var(--bg); border-radius: var(--r-md); padding: 12px 16px;
  font-size: 13px; font-weight: 600; color: var(--muted); text-align: center;
}

.vp-dealer-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px 24px;
}
.vp-dealer-title { font-size: 13px; font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.vp-dealer-info  { font-size: 12px; color: var(--muted); line-height: 1.6; }


/* ── WHY US ──────────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 3px;
}
.why-item {
  padding: 36px 28px; background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  transition: background var(--t), border-color var(--t);
}
.why-item:first-child { border-radius: var(--r-md) 0 0 var(--r-md); }
.why-item:last-child  { border-radius: 0 var(--r-md) var(--r-md) 0; }
.why-item:hover { background: var(--brand); border-color: var(--brand); }
.why-item:hover .why-icon svg { stroke: white; }
.why-item:hover .why-item-title,
.why-item:hover .why-item-text { color: white; }

.why-icon { margin-bottom: 18px; }
.why-icon svg { width: 26px; height: 26px; stroke: var(--brand); fill: none; stroke-width: 1.6; transition: stroke var(--t); }
.why-item-title {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--brand); margin-bottom: 6px; transition: color var(--t);
}
.why-item-text { font-size: 12.5px; color: var(--muted); line-height: 1.55; transition: color var(--t); }


/* ── WORKSHOP ────────────────────────────────────────────────── */
.workshop-section { background: var(--brand); }
.workshop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.ws-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.ws-title { font-size: clamp(28px,4vw,44px); font-weight: 800; color: var(--white); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 18px; }
.ws-title em { font-style: normal; font-weight: 300; }
.ws-text { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 30px; }
.ws-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.ws-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: rgba(255,255,255,0.75); font-weight: 500;
}
.ws-feature svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.35); flex-shrink: 0; fill: none; stroke-width: 2; }

.workshop-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; }
.workshop-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.78); }


/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 18px; }
.review-card {
  background: var(--white); padding: 28px; border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.review-stars { color: #C8A84B; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-size: 14.5px; color: var(--muted); line-height: 1.75;
  font-style: italic; margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.review-name { font-size: 13.5px; font-weight: 700; color: var(--brand); }
.review-date { font-size: 11.5px; color: var(--muted); }


/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  background: var(--white); padding: 120px 48px 72px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::after {
  content: attr(data-text);
  position: absolute; right: -10px; bottom: -50px;
  font-size: 180px; font-weight: 800; color: rgba(0,0,0,0.04);
  letter-spacing: -6px; line-height: 1; pointer-events: none; white-space: nowrap;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--line); }
.page-hero-title {
  font-size: clamp(34px,5.5vw,58px); font-weight: 800; color: var(--brand);
  line-height: 1.05; letter-spacing: -0.02em;
}
.page-hero-title em { font-style: normal; font-weight: 300; display: block; }


/* ── CATALOG SIDEBAR LAYOUT ──────────────────────────────────── */
.catalog-section { padding: 52px 48px 96px; }
.catalog-layout {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: start;
}
.catalog-sidebar { position: sticky; top: 84px; }
.catalog-content { min-width: 0; }

.sidebar-filters {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px; display: flex; flex-direction: column; gap: 20px;
}

.sf-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.sf-title { font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 0.1em; }
.sf-reset {
  font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 600;
  color: var(--muted); background: none; border: none; cursor: pointer;
  letter-spacing: 0.06em; text-transform: uppercase; transition: color var(--t);
}
.sf-reset:hover { color: var(--brand); }

/* Search */
.sf-search-wrap {
  display: flex; align-items: center; gap: 9px;
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--r-xl); padding: 0 14px; height: 40px;
  transition: border-color var(--t);
}
.sf-search-wrap:focus-within { border-color: var(--brand); }
.sf-search-wrap svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--muted); }
.sf-search {
  flex: 1; border: none; background: none; outline: none;
  font-family: 'Barlow', sans-serif; font-size: 13px; color: var(--brand);
}
.sf-search::placeholder { color: var(--muted); }

/* Filter group */
.sf-group { display: flex; flex-direction: column; gap: 9px; }
.sf-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}

/* Chips */
.sf-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.sf-chip {
  font-family: 'Barlow', sans-serif; font-size: 12.5px; font-weight: 500;
  padding: 5px 13px; border-radius: var(--r-xl);
  border: 1.5px solid var(--line); background: var(--white); color: var(--muted);
  cursor: pointer; transition: all var(--t); white-space: nowrap;
}
.sf-chip:hover { border-color: var(--brand); color: var(--brand); }
.sf-chip-active {
  background: var(--brand); border-color: var(--brand);
  color: var(--white) !important;
}

/* Price slider */
.sf-price-header { display: flex; align-items: center; justify-content: space-between; }
.sf-price-val { font-size: 12.5px; font-weight: 600; color: var(--brand); }

.sf-range-wrap { position: relative; height: 20px; display: flex; align-items: center; }
.sf-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 3px; border-radius: 99px;
  background: var(--line); outline: none; position: relative; z-index: 1; cursor: pointer;
}
.sf-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand); border: 3px solid white;
  box-shadow: 0 1px 6px rgba(0,0,0,0.18); cursor: pointer;
  transition: transform var(--t);
}
.sf-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.sf-range::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand); border: 3px solid white;
  box-shadow: 0 1px 6px rgba(0,0,0,0.18); cursor: pointer;
}
.sf-range-track {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 3px; border-radius: 99px; background: var(--brand);
  pointer-events: none; z-index: 0; transition: width 0.05s;
}
.sf-range-labels { display: flex; justify-content: space-between; font-size: 10px; color: var(--muted); margin-top: 2px; }

/* Count */
.sf-count-wrap { padding-top: 16px; border-top: 1px solid var(--line); }
.sf-count { font-size: 12px; font-weight: 600; color: var(--muted); }


/* ── SERVICES ────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 16px; }
.service-card {
  padding: 30px 24px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-md);
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--brand); transform: translateY(-2px); }
.service-icon { width: 40px; height: 40px; background: var(--bg); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon svg { width: 20px; height: 20px; stroke: var(--brand); fill: none; stroke-width: 1.6; }
.service-name { font-size: 13px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 7px; }
.service-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }


/* ── INFO CARDS ──────────────────────────────────────────────── */
.info-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.info-card { padding: 36px 30px; border: 1px solid var(--line); border-radius: var(--r-lg); }
.info-card-icon { width: 44px; height: 44px; background: var(--bg); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.info-card-icon svg { width: 22px; height: 22px; stroke: var(--brand); fill: none; stroke-width: 1.6; }
.info-card-title { font-size: 13.5px; font-weight: 700; color: var(--brand); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.info-card-text { font-size: 14px; color: var(--muted); line-height: 1.7; }


/* ── INSURERS ────────────────────────────────────────────────── */
.insurers-wrap {
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: center; justify-content: flex-start;
}
.insurer-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  height: 72px; min-width: 130px;
  transition: box-shadow var(--t), border-color var(--t);
}
.insurer-logo img {
  max-height: 38px; max-width: 150px;
  width: auto; height: auto;
  transition: filter var(--t), opacity var(--t);
}
.insurer-logo:hover { box-shadow: var(--shadow-md); border-color: transparent; }


/* ── ABOUT ───────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text > * + * { margin-top: 16px; }
.about-img-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.about-img-mosaic img { width: 100%; height: 210px; object-fit: cover; border-radius: var(--r-md); }
.about-img-mosaic img:first-child { grid-column: 1 / -1; height: 270px; }


/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; align-items: start; }

.contact-wa {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px; border-radius: var(--r-lg);
  border: 1.5px solid var(--line);
  margin-bottom: 32px;
  transition: border-color var(--t), box-shadow var(--t);
}
.contact-wa:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.contact-wa-icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--brand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-wa-icon svg { width: 22px; height: 22px; fill: white; }
.contact-wa-title { font-size: 15px; font-weight: 700; color: var(--brand); margin-bottom: 3px; }
.contact-wa-sub { font-size: 12.5px; color: var(--muted); }
.contact-wa-arrow { margin-left: auto; color: var(--muted); }
.contact-wa-arrow svg { width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 2; }

.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon { width: 40px; height: 40px; background: var(--bg); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--brand); fill: none; stroke-width: 1.6; }
.contact-item-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-item-value { font-size: 14px; font-weight: 500; color: var(--brand); line-height: 1.5; }
.contact-item-value a { transition: color var(--t); }
.contact-item-value a:hover { color: var(--brand-mid); }

.contact-form { background: var(--bg); border-radius: var(--r-lg); padding: 40px; }
.contact-form-title { font-size: 18px; font-weight: 700; color: var(--brand); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); margin-bottom: 6px; }
.form-input, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--text); background: var(--white);
  transition: border-color var(--t);
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--brand); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-action-btn {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px; border-radius: var(--r-lg);
  border: 1.5px solid var(--line); margin-bottom: 14px;
  text-decoration: none; color: inherit;
  transition: border-color var(--t), box-shadow var(--t);
}
.contact-action-btn:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.contact-action-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--brand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-action-label { font-size: 13px; font-weight: 700; color: var(--brand); margin-bottom: 3px; }
.contact-action-value { font-size: 18px; font-weight: 800; color: var(--brand); line-height: 1.2; }
.contact-action-arrow { width: 18px; height: 18px; margin-left: auto; color: var(--muted); flex-shrink: 0; }

.map-wrap { margin-top: 56px; border-radius: var(--r-lg); overflow: hidden; height: 400px; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }


/* ── SERVICES PHOTO GALLERY ──────────────────────────────────── */
.srv-gallery-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  line-height: 0;
}
.srv-gallery {
  display: flex;
  gap: 3px;
  width: max-content;
  cursor: grab;
  will-change: transform;
}
.srv-gallery img {
  height: 240px;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

/* ── SERVICES CONTACT CTA ────────────────────────────────────── */
.srv-contact-cta {
  padding: 72px 48px;
  background: var(--white);
}
.srv-cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.srv-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

@media (max-width: 768px) {
  .srv-cta-inner { flex-direction: column; }
  .srv-cta-actions { width: 100%; }
  .srv-cta-actions .btn { flex: 1; justify-content: center; }
}

/* ── PAGE CONTACT CTA ────────────────────────────────────────── */
.page-contact-cta {
  background: var(--white);
  padding: 0 48px 48px;
}
.page-cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: flex-start;
  gap: 28px; flex-wrap: wrap;
}
.page-cta-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px;
}
.page-cta-title {
  font-size: clamp(22px, 3vw, 32px); font-weight: 800;
  color: var(--brand); line-height: 1.1; letter-spacing: -0.02em;
}
.page-cta-title em { font-style: normal; font-weight: 300; }
.page-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 768px) {
  .page-contact-cta { padding: 0 20px 44px; }
  .page-cta-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .page-cta-title { font-size: clamp(20px, 5.5vw, 28px); }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--brand); color: var(--white); padding: 72px 48px 32px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; margin-bottom: 56px;
}
.footer-logo { margin-bottom: 18px; }
.footer-logo img { height: 42px; opacity: 0.85; }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 24px; max-width: 260px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.footer-social a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.footer-social svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.8; }
.footer-social a:hover svg { stroke: white; }

.footer-col-title { font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color var(--t); }
.footer-links a:hover { color: white; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact-row svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.35); fill: none; stroke-width: 1.8; margin-top: 3px; flex-shrink: 0; }
.footer-contact-row a, .footer-contact-row p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; transition: color var(--t); }
.footer-contact-row a:hover { color: white; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }


/* ── FLOATING WA ─────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 52px; height: 52px;
  background: var(--brand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transition: transform var(--t), opacity var(--t);
}
.wa-float:hover { transform: scale(1.08); opacity: 0.88; }
.wa-float svg { width: 22px; height: 22px; fill: white; }


/* ── VEHICLE MODAL ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--r-lg);
  max-width: 860px; width: 100%; max-height: 90vh; overflow-y: auto;
  transform: translateY(16px); transition: transform 0.2s;
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--white); z-index: 1;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.modal-title { font-size: 19px; font-weight: 700; color: var(--brand); }
.modal-close {
  width: 34px; height: 34px; background: var(--bg); border: none;
  border-radius: 50%; font-size: 16px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.modal-close:hover { background: var(--line); }
.modal-body { padding: 28px; }
.modal-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; }
.modal-img {
  position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3; background: #1c1c1c;
  display: flex; align-items: center; justify-content: center;
}
.modal-img-blur-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(15px) brightness(0.5);
  transform: scale(1.1); opacity: 0.6; z-index: 1;
}
.modal-img img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
  position: relative; z-index: 2;
}
.modal-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.modal-spec { padding: 10px 12px; background: var(--bg); border-radius: var(--r-sm); }
.modal-spec-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.modal-spec-val   { font-size: 13.5px; font-weight: 600; color: var(--brand); }
.modal-price { font-size: 30px; font-weight: 800; color: var(--brand); margin-bottom: 3px; }
.modal-price-note { font-size: 11.5px; color: var(--muted); margin-bottom: 18px; }
.modal-hl { font-size: 10.5px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 0.06em; padding: 9px 12px; background: var(--bg); border-radius: var(--r-sm); margin-bottom: 22px; display: flex; align-items: center; gap: 7px; }
.modal-hl svg { flex-shrink: 0; }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }


/* ── NO RESULTS ──────────────────────────────────────────────── */
.no-results { text-align: center; padding: 80px 20px; grid-column: 1/-1; }
.no-results svg { width: 40px; height: 40px; stroke: var(--line); fill: none; stroke-width: 1.5; margin: 0 auto 16px; }
.no-results-title { font-size: 19px; font-weight: 700; color: var(--brand); margin-bottom: 7px; }
.no-results-text  { font-size: 13.5px; color: var(--muted); }


/* ── MOBILE NAV ──────────────────────────────────────────────── */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 150; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); }
.mobile-nav.open { display: block; }
.mobile-drawer {
  position: absolute; top: 0; right: 0; bottom: 0; width: 280px;
  background: var(--white); padding: 72px 32px 40px;
  display: flex; flex-direction: column; gap: 6px; border-radius: var(--r-lg) 0 0 var(--r-lg);
}
.mobile-drawer-close { position: absolute; top: 20px; right: 20px; background: var(--bg); border: none; border-radius: 50%; width: 38px; height: 38px; font-size: 18px; color: var(--brand); }
.mobile-drawer a { font-size: 17px; font-weight: 700; color: var(--brand); padding: 10px 0; border-bottom: 1px solid var(--line); }


/* ── ADMIN ───────────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 230px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--brand); padding: 30px 20px; color: var(--white); position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-logo { margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-logo img { height: 38px; opacity: 0.85; }
.admin-nav { display: flex; flex-direction: column; gap: 3px; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--r-md); font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); transition: all var(--t); }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.1); color: white; }
.admin-nav svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.admin-main { padding: 40px; background: var(--bg); }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 14px; }
.admin-title { font-size: 22px; font-weight: 700; color: var(--brand); }
.admin-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 28px; }
.admin-stat { background: var(--white); padding: 22px; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.admin-stat-num { font-size: 30px; font-weight: 800; color: var(--brand); line-height: 1; margin-bottom: 5px; }
.admin-stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.table-wrap { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.table-head { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.table-head-title { font-size: 15px; font-weight: 700; color: var(--brand); }
table.data-table { width: 100%; border-collapse: collapse; }
table.data-table th { padding: 11px 16px; text-align: left; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); background: var(--bg); border-bottom: 1px solid var(--line); }
table.data-table td { padding: 13px 16px; font-size: 13.5px; color: var(--text); border-bottom: 1px solid var(--line); }
table.data-table tr:last-child td { border-bottom: none; }
table.data-table tr:hover td { background: var(--bg); }

.pill { display: inline-block; padding: 3px 10px; border-radius: var(--r-xl); font-size: 11px; font-weight: 700; letter-spacing: 0.05em; }
.pill-on  { background: #EBF5EE; color: #2D7A47; }
.pill-off { background: #FAEAEA; color: #B83232; }
.act-btns { display: flex; gap: 7px; }
.act-btn { width: 30px; height: 30px; border: none; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; transition: all var(--t); }
.act-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.act-edit   { background: var(--bg); color: var(--brand); }
.act-edit:hover { background: var(--brand); color: white; }
.act-toggle { background: #EBF5EE; color: #2D7A47; }
.act-toggle:hover { background: #2D7A47; color: white; }
.act-del    { background: #FAEAEA; color: #B83232; }
.act-del:hover { background: #B83232; color: white; }

.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--brand); }
.login-box { background: white; padding: 48px; border-radius: var(--r-xl); max-width: 380px; width: 100%; }
.login-logo { margin-bottom: 28px; }
.login-logo img { height: 34px; }
.login-title { font-size: 20px; font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.login-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 28px; }
.login-err { background: #FAEAEA; color: #B83232; font-size: 13px; font-weight: 600; padding: 10px 14px; border-radius: var(--r-md); margin-bottom: 14px; display: none; }
.login-err.show { display: block; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }


/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
    padding: 0 20px;
  }
  .site-nav { display: none; }
  .btn-contact { display: none; }
  .hamburger { display: flex; grid-column: 1; grid-row: 1; justify-self: start; }
  .header-logo { grid-column: 2; justify-self: center; }
  .header-right { grid-column: 3; grid-row: 1; justify-self: end; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; }
  .workshop-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .info-cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .admin-stats-row { grid-template-columns: repeat(2,1fr); }
  .modal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* ── Layout base ── */
  .section     { padding: 56px 20px; }
  .section-sm  { padding: 36px 20px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
  .section-title { font-size: clamp(26px, 7.5vw, 38px); letter-spacing: -0.025em; }
  .section-sub { font-size: 14.5px; }

  /* ── Header ── */
  .site-header { height: 60px; }

  /* ── Hero ── */
  .hero { min-height: 100svh; align-items: center; }
  .hero-brand { padding-top: 80px; }
  .hero-brand img { height: 42px; }
  .hero-content { padding: 80px 20px 52px; text-align: center; }
  .hero-eyebrow { justify-content: center; margin-bottom: 14px; }
  .hero-title { font-size: clamp(40px, 11vw, 58px); margin-bottom: 28px; line-height: 1.0; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; gap: 14px; }
  .hero-link-btn { font-size: 13px; }

  /* ── Page hero ── */
  .page-hero { padding: 96px 20px 44px; }
  .page-hero::after { display: none; }
  .page-hero-title { font-size: clamp(34px, 9vw, 52px); }

  /* ── Stats ── */
  .stats-bar { padding: 36px 20px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stats-grid > div { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stats-grid > div:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.07); padding-right: 20px; }
  .stats-grid > div:nth-child(even) { padding-left: 20px; }
  .stat-num { font-size: clamp(26px, 7vw, 34px); }

  /* ── Why grid ── */
  .why-grid { grid-template-columns: repeat(2,1fr); gap: 2px; }
  .why-item { padding: 24px 18px; }
  .why-item:first-child, .why-item:last-child { border-radius: 0; }
  .why-icon { margin-bottom: 12px; }
  .why-icon svg { width: 22px; height: 22px; }

  /* ── Workshop ── */
  .workshop-img { aspect-ratio: 16/9; }
  .ws-title { font-size: clamp(26px, 7vw, 36px); margin-bottom: 14px; }
  .ws-text { font-size: 14px; margin-bottom: 24px; }
  .ws-features { gap: 10px; margin-bottom: 28px; }

  /* ── Vehicle catalog ── */
  .catalog-section { padding: 28px 20px 56px; }
  .vehicles-grid { grid-template-columns: 1fr; gap: 14px; }

  /* ── Vehicle detail ── */
  .vp-hero-bar   { padding: 64px 20px 16px; }
  .vp-img        { height: 56vw; min-height: 220px; }
  .vp-content    { padding: 24px 20px 52px; }
  .vp-grid       { grid-template-columns: 1fr; gap: 24px; }
  .vp-sidebar    { position: static; }
  .vp-specs-grid { grid-template-columns: repeat(2,1fr); }
  .vp-model      { font-size: clamp(24px, 7vw, 36px); }
  .vp-price      { font-size: 30px; }
  .vp-price-card { padding: 22px; }

  /* ── About ── */
  .about-img-mosaic { grid-template-columns: 1fr; gap: 6px; }
  .about-img-mosaic img { height: 180px; }
  .about-img-mosaic img:first-child { height: 210px; }

  /* ── Contact ── */
  .contact-grid { gap: 36px; }
  .contact-form { padding: 24px; }
  .contact-action-btn { padding: 18px 20px; gap: 14px; }
  .contact-action-value { font-size: 16px; }
  .map-wrap { height: 240px; margin-top: 32px; border-radius: var(--r-md); }

  /* ── Insurers ── */
  .insurer-logo { min-width: 100px; height: 56px; padding: 8px 14px; }
  .insurer-logo img { max-height: 28px; max-width: 110px; }
  .insurers-wrap { gap: 10px; }

  /* ── Footer ── */
  .site-footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-tagline { font-size: 13px; }

  /* ── Forms ── */
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-2col   { grid-template-columns: 1fr; }

  /* ── Admin ── */
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { height: auto; position: static; }
  .admin-main { padding: 20px 16px; }
  .admin-stats-row { grid-template-columns: repeat(2,1fr); }
  .login-box { padding: 32px 24px; border-radius: var(--r-lg); }
}
