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

:root {
  --bg: #050505;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --bg-input: #1a1a1a;
  --ink: #ffffff;
  --muted: #a3a3a3;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --gold: #ebb543;
  --gold-hover: #f0c45c;
  --gold-soft: rgba(235, 181, 67, 0.14);
  --green: #3dcf8e;
  --red: #ff6b6b;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.55 var(--font);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 40px)); margin: auto; }
.narrow { width: min(760px, calc(100% - 40px)); }

.skip {
  position: fixed; left: 12px; top: -60px; z-index: 100;
  background: var(--bg-card); color: var(--ink); padding: 10px; border-radius: 8px;
}
.skip:focus { top: 12px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px; color: var(--ink); flex-shrink: 1; min-width: 0;
}
.brand:hover { color: var(--ink); text-decoration: none; }
.brand picture { display: block; line-height: 0; }
.brand-logo,
.brand img {
  display: block;
  width: min(280px, 42vw);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}
.brand-mark {
  display: grid; place-items: center; width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px; background: var(--gold-soft); color: var(--gold);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-copy { display: grid; gap: 1px; line-height: 1.15; }
.brand-copy strong {
  font-size: 18px; font-weight: 800; letter-spacing: -0.03em;
}
.brand-copy span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.brand-copy em {
  font-style: normal; font-size: 12px; font-weight: 600; color: var(--gold);
}
.footer-brand {
  display: inline-block; margin-bottom: 10px; line-height: 0;
}
.footer-brand img {
  display: block; width: min(220px, 70vw); height: auto; max-height: 64px; object-fit: contain;
}
.site-header nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.site-header nav a {
  color: rgba(255, 255, 255, 0.88); font-weight: 600; font-size: 15px;
}
.site-header nav a:hover { color: var(--gold); text-decoration: none; }
.header-cta { margin-left: 8px; }
.button.nav-cta { display: none; }
.menu-toggle {
  display: none; border: 1px solid var(--line-strong); background: var(--bg-card);
  color: var(--ink); padding: 10px 14px; border-radius: 10px; font: inherit; font-weight: 700;
}

/* Buttons */
.button {
  display: inline-flex; min-height: 46px; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); border-radius: 10px; padding: 10px 18px;
  background: transparent; color: var(--ink); font: inherit; font-weight: 750; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.button:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }
.button.primary {
  background: var(--gold); border-color: var(--gold); color: #111;
}
.button.primary:hover {
  background: var(--gold-hover); border-color: var(--gold-hover); color: #111; text-decoration: none;
}
.button.outline {
  background: transparent; border: 1.5px solid var(--gold); color: var(--gold);
}
.button.outline:hover {
  background: var(--gold); color: #111; text-decoration: none;
}
.button.small { min-height: 40px; padding: 7px 12px; font-size: 14px; }
.button.wide { width: 100%; }

/* Hero */
.hero {
  position: relative; min-height: min(82vh, 780px);
  display: grid; align-items: center;
  padding: 88px 0 72px;
  overflow: hidden;
  background: #0a0a0a center/cover no-repeat;
  background-image: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.62) 45%, rgba(0,0,0,.88) 100%),
    url("/assets/img/hero-car.jpg?v=20260806v2");
}
.hero-grid {
  display: grid; gap: 28px; position: relative; z-index: 1;
  justify-items: start;
}
.hero-copy { max-width: 720px; }
.hero h1 {
  font-size: clamp(40px, 7vw, 72px); line-height: 1.02; letter-spacing: -0.045em;
  margin: 0 0 14px; font-weight: 800;
}
.hero h1 .accent { color: var(--gold); }
.hero .lead {
  margin: 0 0 28px; font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,.82); font-weight: 500;
}
.hero-cta {
  min-height: 52px; padding: 12px 26px; font-size: 16px; border-radius: 8px;
}
.search-box {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end;
  padding: 18px; background: rgba(18, 18, 18, 0.92);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  backdrop-filter: blur(12px); box-shadow: var(--shadow);
  max-width: 920px;
}
.search-box label { gap: 8px; font-size: 13px; color: var(--muted); font-weight: 650; }
.search-box .button { min-width: 220px; min-height: 52px; }

/* Forms */
label { display: grid; gap: 7px; font-weight: 650; }
input, select, textarea {
  width: 100%; min-height: 48px; border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 11px 13px; background: var(--bg-input); color: var(--ink); font: inherit;
}
input::placeholder, textarea::placeholder { color: #6b6b6b; }
input:focus, select:focus, textarea:focus, button:focus, a:focus {
  outline: 2px solid rgba(235, 181, 67, 0.45); outline-offset: 2px;
}
.form-card {
  display: grid; gap: 16px; padding: 28px;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
}

/* Features strip */
.feature-strip {
  padding: 42px 0; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #0a0a0a, var(--bg));
}
.feature-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px;
}
.feature-item { display: grid; gap: 10px; justify-items: start; }
.feature-icon {
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: 12px; color: var(--gold); background: var(--gold-soft);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-item h3 { margin: 0; font-size: 17px; font-weight: 750; }
.feature-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }

/* Sections */
.section { padding: 72px 0; }
.section.muted { background: #090909; }
.cars-section { padding-top: 64px; }
.section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px;
}
.section-head a { font-weight: 700; }
.section h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.035em; margin: 0; font-weight: 800; }
.eyebrow {
  display: block; color: var(--gold); font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px;
}

/* Cars */
.car-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px;
}
.car-card {
  overflow: hidden; border: 1px solid var(--line); border-radius: 14px;
  background: #141414; transition: transform .22s, border-color .22s, box-shadow .22s;
  display: flex; flex-direction: column;
}
.car-card:hover {
  transform: translateY(-4px); border-color: rgba(235, 181, 67, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.car-image {
  position: relative; display: block; aspect-ratio: 16/11; background: #1c1c1c; overflow: hidden;
}
.car-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.car-card:hover .car-image img { transform: scale(1.04); }
.car-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  padding: 5px 10px; border-radius: 999px; background: var(--gold); color: #111;
  font-size: 12px; font-weight: 800; letter-spacing: 0.02em;
}
.image-placeholder {
  display: grid; width: 100%; height: 100%; min-height: 180px; place-items: center;
  padding: 30px; background: linear-gradient(135deg, #1a1a1a, #101010);
  color: var(--muted); font-weight: 700; text-align: center;
}
.car-card-body {
  padding: 18px 18px 20px; display: grid; gap: 12px; flex: 1;
  align-content: start;
}
.car-card h3 { font-size: 20px; margin: 0; letter-spacing: -0.02em; font-weight: 750; }
.car-card h3 a { color: var(--ink); }
.car-card h3 a:hover { color: var(--gold); text-decoration: none; }
.car-price {
  margin: 0; color: var(--gold); font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
}
.car-price span { color: var(--muted); font-size: 15px; font-weight: 600; }
.status-dot { color: var(--green); font-size: 12px; font-weight: 700; }
.car-meta { display: flex; flex-wrap: wrap; gap: 12px 14px; margin: 0; }
.car-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 13px; font-weight: 600;
}
.car-meta svg { opacity: 0.9; flex-shrink: 0; color: var(--gold); }
.card-cta { width: 100%; margin-top: auto; border-radius: 8px; min-height: 44px; font-size: 14px; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px;
}

/* Why us */
.why-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
}
.why-media {
  overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line);
  min-height: 420px; background: #111 center/cover no-repeat;
  background-image: url("/assets/img/why-cadillac.jpg?v=20260810");
}
.why-copy h2 {
  font-size: clamp(30px, 4vw, 42px); line-height: 1.1; margin: 0 0 16px;
}
.why-copy > p { color: var(--muted); font-size: 17px; margin: 0 0 22px; }
.why-copy .button { margin-top: 28px; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px; font-weight: 650; font-size: 15px;
}
.check-list li::before {
  content: ""; width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  border-radius: 50%; background: var(--gold) center/12px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2 6.4 11l6.1-6.5' stroke='%23111' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.steps.steps-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps article {
  padding: 0;
  border: 0;
  background: transparent;
}
.steps b {
  display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%;
  background: var(--gold); color: #111; font-weight: 800; font-size: 15px;
}
.steps h3 { margin: 16px 0 8px; font-size: 19px; letter-spacing: -0.02em; }
.steps p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; max-width: 28ch; }

.home-cta {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.home-cta-inner {
  display: flex; align-items: end; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.home-cta-inner h2 {
  font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.035em; margin: 0 0 10px; font-weight: 800;
}
.home-cta-inner p {
  margin: 0; color: var(--muted); font-size: 17px; max-width: 46ch;
}
.home-cta-actions {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}

/* Inner pages */
.page-hero {
  padding: 58px 0 36px;
  background:
    radial-gradient(ellipse 80% 80% at 10% 0%, rgba(255,184,0,.12), transparent 55%),
    linear-gradient(180deg, #101010, var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); margin: 0.15em 0; letter-spacing: -0.04em; }
.page-hero p, .lead { font-size: 18px; color: var(--muted); }
.filters {
  background: #0a0a0a;
  border-bottom: 1px solid var(--line);
  padding: 18px 0 22px;
}
.filter-bar {
  display: flex;
  align-items: end;
  gap: 14px;
}
.filter-fields {
  display: grid;
  grid-template-columns: minmax(170px, 1.35fr) minmax(170px, 1.35fr) minmax(120px, 1fr) minmax(110px, 1fr) minmax(90px, 0.7fr) minmax(110px, 0.85fr);
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.filter-field {
  display: grid;
  gap: 7px;
  margin: 0;
  font-weight: 650;
  min-width: 0;
}
.filter-field > span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
}
.filter-field input,
.filter-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 10px 12px;
  background: #1a1a1a;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}
.filter-field input::placeholder {
  color: #6f6f6f;
}
.filter-submit {
  flex-shrink: 0;
  min-width: 132px;
  min-height: 48px;
  border-radius: 10px;
  margin-bottom: 0;
}
.filter-grid {
  display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 12px;
  align-items: end; padding: 22px 0;
}

.product-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; }
.gallery { display: grid; gap: 14px; }
.gallery img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.product-info h1 { font-size: 42px; line-height: 1.05; margin: 8px 0 12px; }
.price { font-size: 18px; color: var(--muted); }
.price strong { font-size: 32px; color: var(--gold); }
.specs {
  display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; margin: 20px 0;
}
.specs div { padding: 12px; border-bottom: 1px solid var(--line); background: var(--bg-card); }
.specs dt { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.specs dd { margin: 3px 0 0; font-weight: 700; }
.car-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 18px;
}
.features { display: grid; grid-template-columns: 1fr 1fr; padding-left: 20px; color: var(--muted); margin: 0 0 8px; }
.booking-widget {
  display: grid; gap: 12px; margin-top: 16px;
}
.booking-panel { margin-top: 24px; }
.booking-calendar {
  margin-top: 16px; padding: 18px;
  border-radius: var(--radius-lg); background: var(--bg-card); border: 1px solid var(--line);
  display: grid; gap: 14px;
}
.cal-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.cal-toolbar h2 {
  margin: 0; font-size: 18px; text-transform: capitalize; text-align: center; flex: 1;
}
.cal-weekdays, .cal-grid {
  display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px;
}
.cal-weekdays span {
  text-align: center; font-size: 12px; font-weight: 700; color: var(--muted); padding: 4px 0;
}
.cal-day {
  appearance: none; border: 1px solid rgba(255,255,255,.22); border-radius: 10px;
  min-height: 44px; background: #1c1c1c; color: #fff;
  font: inherit; font-weight: 750; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .12s;
}
.cal-day:hover:not(:disabled) {
  border-color: var(--gold); color: var(--gold); background: rgba(235,181,67,.1);
  transform: translateY(-1px);
}
.cal-day:focus-visible:not(:disabled) {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
.cal-day.is-empty { visibility: hidden; pointer-events: none; border: 0; background: transparent; }
.cal-day.is-past,
.cal-day:disabled { opacity: 0.28; cursor: not-allowed; transform: none; }
.cal-day.is-in-range { background: rgba(235, 181, 67, 0.18); border-color: rgba(235, 181, 67, 0.55); color: #fff; }
.cal-day.is-endpoint {
  background: var(--gold); border-color: var(--gold); color: #111;
}
.cal-day.is-busy,
.cal-day.is-busy:disabled,
.cal-day.is-busy.is-in-range,
.cal-day.is-busy.is-endpoint {
  opacity: 1;
  background: #c62828;
  border-color: #ef5350;
  color: #fff;
  cursor: not-allowed;
  font-weight: 800;
  text-decoration: line-through;
  transform: none;
}
.cal-day.is-today:not(.is-endpoint):not(.is-busy) { box-shadow: inset 0 0 0 1px var(--gold); }
.cal-legend {
  display: flex; flex-wrap: wrap; gap: 12px 16px; color: var(--muted); font-size: 13px; font-weight: 650;
}
.cal-legend-item { display: inline-flex; align-items: center; gap: 8px; }
.cal-swatch {
  display: inline-block; width: 18px; height: 18px; border-radius: 6px; flex-shrink: 0;
  border: 1px solid transparent;
}
.cal-swatch.busy { background: #c62828; border-color: #ef5350; }
.cal-swatch.free { background: #1c1c1c; border-color: rgba(255,255,255,.22); }
.cal-swatch.selected { background: var(--gold); border-color: var(--gold); }
.cal-selection { margin: 0; font-weight: 700; }
.cal-hint {
  margin: 0; padding: 12px 14px; border-radius: 10px;
  background: rgba(235,181,67,.08); border: 1px solid rgba(235,181,67,.25);
  color: rgba(255,255,255,.9); font-size: 14px; line-height: 1.45;
}
.cal-hint strong { color: var(--gold); }
.cal-hint em { font-style: normal; color: #fff; font-weight: 800; }
.cal-busy-note { color: #ffb3b3; }
.selected-dates {
  margin-bottom: 8px; padding: 14px 16px; border-radius: 12px;
  background: var(--bg-elevated); border: 1px solid var(--line);
}
.selected-dates strong { display: block; color: var(--gold); margin-bottom: 4px; }
.selected-dates p { margin: 0 0 8px; font-weight: 700; }
.selected-dates a { font-weight: 700; }
.extras {
  display: grid; gap: 10px; margin: 0; padding: 16px;
  border: 1px solid var(--line); border-radius: 12px;
}
.extras legend { padding: 0 6px; font-weight: 750; color: var(--gold); }
.public-calendar {
  margin-top: 24px; padding: 18px; border: 1px solid var(--line);
  border-radius: 14px; background: var(--bg-card);
}
.public-calendar h2 { margin: 0 0 10px; font-size: 21px; }
.busy-periods { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.busy-periods li {
  display: flex; justify-content: space-between; gap: 12px; padding: 9px 11px;
  border-radius: 9px; background: rgba(255, 107, 107, 0.1);
}
.busy-periods strong { color: var(--red); }
.muted-text { color: var(--muted); }
.form-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.check { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.check input { width: 20px; min-height: 20px; margin-top: 2px; }
.quote-box, .notice, .alert {
  padding: 16px; border-radius: 12px; background: var(--gold-soft); border: 1px solid rgba(255,184,0,.25);
}
.alert.error { background: rgba(255,107,107,.12); border-color: rgba(255,107,107,.3); }
.available { color: var(--green); }
.unavailable, .error { color: var(--red); }
.honeypot {
  position: absolute !important; left: -9999px !important; width: 1px !important;
  height: 1px !important; overflow: hidden !important;
}
.success-card, .empty {
  padding: 40px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  text-align: center; background: var(--bg-card);
}
.success-icon {
  display: grid; width: 64px; height: 64px; margin: auto; place-items: center;
  border-radius: 50%; background: rgba(61, 207, 142, 0.15); color: var(--green); font-size: 34px;
}
.contact-list { display: grid; gap: 12px; }
.contact-list div { display: grid; grid-template-columns: 150px 1fr; gap: 16px; }
.contact-list dt { color: var(--muted); }
.contact-list dd { margin: 0; font-weight: 650; }
.prose { font-size: 18px; color: rgba(255,255,255,.86); line-height: 1.65; }
.prose p { white-space: normal; margin: 0 0 1em; }
.prose-lead {
  font-size: 20px; color: rgba(255,255,255,.92); font-weight: 600; line-height: 1.45;
}
.prose h2 {
  margin: 1.6em 0 0.55em; font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.03em; color: #fff;
}
.prose-list {
  list-style: none; margin: 0 0 1.25em; padding: 0; display: grid; gap: 10px;
}
.prose-list li {
  position: relative; padding-left: 1.15em;
}
.prose-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.faq-list { display: grid; gap: 22px; }
.faq-list article {
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.faq-list article:last-child { border-bottom: 0; padding-bottom: 0; }
.faq-list h2 {
  margin: 0 0 8px; font-size: 20px; letter-spacing: -0.02em; color: #fff;
}
.faq-list p { margin: 0; color: var(--muted); font-size: 16px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stats article {
  display: grid; padding: 24px; border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: var(--bg-card);
}
.stats strong { font-size: 36px; color: var(--gold); }
.table-wrap {
  overflow: auto; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-card);
}
table { width: 100%; border-collapse: collapse; background: transparent; }
th, td {
  padding: 13px 15px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top;
}
th { background: #101010; font-size: 13px; color: var(--muted); }
.login-shell { max-width: 480px; }

footer {
  padding: 48px 0 22px; background: #000; color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.footer-grid strong { color: var(--ink); font-size: 18px; }
.footer-grid div:last-child { display: grid; gap: 8px; }
.footer-grid a { color: rgba(255,255,255,.85); }
.footer-grid a:hover { color: var(--gold); }
.copyright {
  padding-top: 22px; margin-top: 24px; border-top: 1px solid var(--line); font-size: 14px;
}
.cookie {
  position: fixed; right: 18px; bottom: 18px; z-index: 80; max-width: 420px; padding: 18px;
  border-radius: 14px; background: var(--bg-card); box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.cookie button {
  border: 0; border-radius: 10px; padding: 9px 14px; background: var(--gold);
  color: #111; font: inherit; font-weight: 750; cursor: pointer;
}

.admin-mode { background: #0b0b0b; }
.admin-mode .site-header { background: rgba(8, 8, 8, 0.94); }

@media (max-width: 1100px) {
  .car-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero-grid, .product-layout, .why-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .search-box { grid-template-columns: 1fr; }
  .search-box .button { width: 100%; min-width: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps.steps-3 { grid-template-columns: 1fr; }
  .home-cta-inner { align-items: start; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-fields { grid-template-columns: 1fr 1fr; }
  .filter-submit { width: 100%; min-width: 0; }
  .filter-grid { grid-template-columns: repeat(2, 1fr); }
  .why-media { min-height: 280px; }
  .header-cta { display: none; }
  .button.nav-cta { display: none; }
  .site-header nav {
    display: none; position: absolute; left: 20px; right: 20px; top: 76px;
    flex-direction: column; align-items: stretch; padding: 18px;
    background: #121212; border: 1px solid var(--line-strong); border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .site-header nav.open { display: flex; }
  .menu-toggle { display: block; color: var(--gold); border-color: rgba(235,181,67,.45); }
  .hero { text-align: left; min-height: 70vh; padding: 72px 0 56px; }
}

@media (max-width: 620px) {
  .shell, .narrow { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 74px; gap: 12px; }
  .brand-logo,
  .brand img { width: min(168px, 52vw); max-height: 52px; }
  .brand-copy span { display: none; }
  .footer-brand img { width: min(180px, 65vw); max-height: 52px; }
  .hero {
    min-height: 78vh; padding: 64px 0 48px; align-items: center;
  }
  .hero-copy { max-width: none; }
  .hero h1 { font-size: 38px; }
  .hero-cta { width: 100%; }
  .section { padding: 48px 0; }
  .cars-section { padding-top: 40px; }
  .search-box, .form-card { padding: 18px; }
  .car-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 14px; }
  .steps, .form-grid, .contact-grid, .stats, .footer-grid {
    grid-template-columns: 1fr;
  }
  .steps.steps-3 { grid-template-columns: 1fr; }
  .steps p { max-width: none; }
  .home-cta-actions { width: 100%; }
  .home-cta-actions .button { flex: 1 1 auto; justify-content: center; }
  .filter-fields { grid-template-columns: 1fr; }
  .filter-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .product-info h1 { font-size: 34px; }
  .features { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
  .contact-list div { grid-template-columns: 1fr; gap: 2px; }
  .card-foot { align-items: flex-start; flex-direction: column; }
  .car-card .button { width: 100%; }
  .cookie { left: 12px; right: 12px; bottom: 12px; }
  .page-hero {
    background:
      radial-gradient(ellipse 80% 80% at 10% 0%, rgba(235,181,67,.12), transparent 55%),
      linear-gradient(180deg, #101010, var(--bg));
  }
}

/* Subtle motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: rise .7s ease both; }
  .search-box { animation: rise .75s .12s ease both; }
  .feature-item { animation: rise .55s ease both; }
  .feature-item:nth-child(2) { animation-delay: .06s; }
  .feature-item:nth-child(3) { animation-delay: .12s; }
  .feature-item:nth-child(4) { animation-delay: .18s; }
  .car-card { animation: rise .5s ease both; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
