:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --line: #ececec;
  --fill: #f5f5f5;
  --ink-1: #292929;
  --ink-2: #5d5d5d;
  --ink-3: #9e9e9e;
  --cta: #12abf8;
  --cta-hover: #0d99e2;
  --avail: #12abf8;
  --r-nav: 8px;
  --r-card: 16px;
  --r-pill: 999px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink-1);
  font-family: -apple-system, "SF Pro Text", "SF Pro Display", BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.15px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

h1, h2, h3 { font-weight: 500; letter-spacing: -0.15px; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.icon { flex-shrink: 0; }
.icon-14 { width: 14px; height: 14px; }
.icon-20 { width: 20px; height: 20px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-1);
}

.nav .logo {
  height: 26px;
  width: auto;
  color: var(--ink-1);
}

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-links { display: flex; gap: 4px; }

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--cta);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  transition: background .15s;
}

.call-pill:hover { background: var(--cta-hover); }

.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
  padding: 6px 10px;
  border-radius: var(--r-nav);
  transition: background .15s, color .15s;
}

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

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding: 40px 24px calc(32px + env(safe-area-inset-bottom));
}

.footer-inner { max-width: 1140px; margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-1);
}

.site-footer .logo { height: 20px; width: auto; }

.socials { display: flex; gap: 6px; }

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--ink-2);
  transition: background .15s, color .15s, border-color .15s;
}

.socials a:hover {
  background: var(--ink-1);
  border-color: var(--ink-1);
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-links a {
  font-size: 13px;
  color: var(--ink-2);
  padding: 4px 0;
}

.footer-links a:hover { color: var(--ink-1); }

.copyright { margin-top: 16px; font-size: 12px; color: var(--ink-3); }

/* ---------- Pay page ---------- */
.pay-page { max-width: 720px; margin: 0 auto; padding: 48px 24px 72px; }

.pay-page h1 { font-size: 24px; margin-top: 8px; }
.pay-sub { color: var(--ink-2); font-size: 14px; max-width: 440px; margin: 8px auto 0; }

.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pay-tile {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 18px;
}

.pay-tile.link {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: box-shadow .15s, transform .15s, border-color .15s;
}

/* crypto tiles are <button>s — strip UA styling, keep the tile look */
.pay-tile.copy {
  font: inherit;
  letter-spacing: -0.15px;
  text-align: left;
  background: var(--surface);
  color: var(--ink-1);
  width: 100%;
  cursor: pointer;
}

.pay-tile.link:hover {
  transform: translateY(-2px);
  border-color: var(--pay);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

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

.pay-icon .icon { width: 24px; height: 24px; }

.pay-text { flex: 1; min-width: 0; }
.pay-text b { display: block; font-size: 14px; font-weight: 500; }
.pay-text small { font-size: 12px; color: var(--ink-3); }

.pay-tile .go { color: var(--ink-3); }
.pay-tile.link:hover .go { color: var(--ink-1); }

.pay-tile.qr { text-align: center; }
.pay-tile.qr .pay-text { margin-bottom: 12px; }
.pay-tile.qr .pay-text b { position: relative; }
.pay-tile.qr .pay-text b::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pay);
  margin-right: 7px;
  vertical-align: 1px;
}

.pay-tile.qr img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  border-radius: var(--r-nav);
}

.pay-tile .qr-note { display: none; font-size: 12px; color: var(--ink-3); padding: 24px 0; }
.pay-tile.qr-missing img { display: none; }
.pay-tile.qr-missing .qr-note { display: block; }

.pay-help { text-align: center; margin-top: 28px; font-size: 13px; color: var(--ink-2); }
.pay-help a { font-weight: 500; color: var(--ink-1); }

.pay-page .section-head { margin-bottom: 32px; }

@media (max-width: 560px) {
  .pay-grid { grid-template-columns: 1fr; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 24px 64px;
  overflow: hidden;
}

/* Full-bleed background video layer — spans the whole hero, from the eyebrow
   down past the CTA. Everything else in .hero stacks above it. */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #000000;   /* filler until the video lands; also the poster-load fallback */
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Keeps the headline and CTA legible over bright frames. */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.25) 45%, rgba(0,0,0,.6));
}

/* Chromatic glow hero — the canvas paints the enlarged headline; the h1 inside stays
   as the real (accessible) text and doubles as the no-WebGL fallback. */
.chroma-hero {
  position: relative;
  width: min(1040px, 100%);
  height: clamp(220px, 36vw, 400px);
  margin: 16px 0 8px;
  background: transparent;
  overflow: hidden;
}

.chroma-hero .chroma-text { color: #ffffff; }

/* Once a video layer exists, everything in the hero sits on footage — flip the
   type and the CTA to light. Without .hero-media the hero keeps the light theme. */
.hero:has(.hero-media) .eyebrow { color: rgba(255,255,255,.72); }
.hero:has(.hero-media) p.sub { color: rgba(255,255,255,.82); }
.hero:has(.hero-media) .btn.solid {
  background: var(--cta);
  border-color: var(--cta);
  color: #ffffff;
}

.chroma-hero .chroma-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
}

.chroma-hero.chroma-fallback .chroma-text { opacity: 1; }

.hero p.sub {
  max-width: 420px;
  color: var(--ink-2);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 22px;
  border: 1px solid var(--ink-1);
  border-radius: var(--r-pill);
  color: var(--ink-1);
  font-size: 13px;
  font-weight: 500;
  transition: background .15s, color .15s;
}

.btn:hover { background: var(--fill); }

.btn.solid { background: var(--cta); border-color: var(--cta); color: #ffffff; }
.btn.solid:hover { background: var(--cta-hover); border-color: var(--cta-hover); }

/* ---------- Fleet ---------- */
.section { padding: 56px 24px; max-width: 1140px; margin: 0 auto; }

/* ---------- Brands ---------- */
.brands-section { padding-bottom: 8px; }

/* Four per row; flex-wrap + centred justification leaves the short final row
   centred on its own. Two per row on small screens. */
.brand-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.brand-strip li { flex: 0 0 calc(25% - 9px); }

/* Outline card — reads as a button at rest, fills with the marque's own colour
   on hover while the mark itself goes white. */
.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 96px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
  color: var(--ink-3);        /* the marks inherit this via currentColor */
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s, opacity .2s;
}

.brand-card:hover,
.brand-card.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.brand-card:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* Marques with nothing in the fleet — dimmed but still selectable. */
.brand-card.is-empty { opacity: 0.4; }
.brand-card.is-empty:hover,
.brand-card.is-active.is-empty { opacity: 1; }

.brand-card[data-brand="lamborghini"] { --brand: #d4af37; }
.brand-card[data-brand="ferrari"]     { --brand: #ff2800; }
.brand-card[data-brand="mclaren"]     { --brand: #ff8000; }
.brand-card[data-brand="audi"]        { --brand: #bb0a30; }
.brand-card[data-brand="bmw"]         { --brand: #0166b1; }
.brand-card[data-brand="mercedes"]    { --brand: #333f48; }
.brand-card[data-brand="corvette"]    { --brand: #c5001a; }

/* Optical sizing — round emblems need more height than wide wordmarks to carry
   the same visual weight. */
.brand-mark { height: 30px; width: auto; max-width: 78%; }
.brand-card[data-brand="mclaren"] .brand-mark  { height: 22px; }
.brand-card[data-brand="corvette"] .brand-mark { height: 18px; }
.brand-card[data-brand="ferrari"] .brand-mark  { height: 26px; }
.brand-card[data-brand="bmw"] .brand-mark,
.brand-card[data-brand="mercedes"] .brand-mark { height: 48px; }

/* No freely licensed Corvette emblem exists, so that card is set as type. */
.brand-wordmark {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: currentColor;
}

@media (max-width: 720px) {
  .brand-strip li { flex: 0 0 calc(50% - 6px); }
  .brand-card { height: 84px; }
  .brand-card[data-brand="bmw"] .brand-mark,
  .brand-card[data-brand="mercedes"] .brand-mark { height: 40px; }
  .brand-wordmark { font-size: 16px; letter-spacing: 2px; }
}

.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: 24px; margin-top: 8px; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.car-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.car-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.car-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--fill);
}

.car-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.car-card:hover .thumb img { transform: scale(1.03); }

.badge {
  position: absolute;
  top: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: var(--ink-1);
}

.badge .dot { width: 6px; height: 6px; border-radius: 50%; }
.badge.available {
  background: var(--avail);
  color: #ffffff;
}
.badge.available .dot {
  background: #ffffff;
  animation: pulse-dot 1.8s ease-out infinite;
}
.badge.booked { color: var(--ink-3); }
.badge.booked .dot { border: 1px solid var(--ink-3); }

.car-card .info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 16px;
}

.car-card .info-text { flex: 1; min-width: 0; }
.car-card .brand-line { font-size: 12px; color: var(--ink-3); }
.car-card h3 { font-size: 14px; margin: 2px 0 4px; }

.car-card .price { font-size: 13px; font-weight: 500; color: var(--ink-1); }
.car-card .price small { color: var(--ink-3); font-size: 12px; font-weight: 400; }

.car-card .go {
  color: var(--ink-3);
  transition: color .15s, transform .15s;
}
.car-card:hover .go { color: var(--ink-1); transform: translate(2px, -2px); }

.empty-note { text-align: center; color: var(--ink-3); font-size: 13px; padding: 48px 0; }

/* ---------- Car detail (hierarchy: title → specs → gallery → pricing/desc → related) */
.detail { max-width: 1140px; margin: 0 auto; padding: 32px 24px 72px; }

.detail-head { margin-bottom: 24px; }

.crumbs { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-3); margin-bottom: 14px; }
.crumbs a:hover { color: var(--ink-1); }
.crumbs span { color: var(--line); }
.crumbs em { font-style: normal; color: var(--ink-2); }

.detail-head h1 { font-size: 34px; line-height: 1.2; }
.detail-head .tagline { color: var(--ink-2); font-size: 14px; margin-top: 4px; max-width: 560px; }

.car-hero {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  width: 100%;
  height: 52vh;
  min-height: 320px;
  border-radius: var(--r-card);
  background: var(--fill);
}

.car-hero .slide {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}

.car-hero .slide.on { opacity: 1; }

.detail-cols {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}

.detail-desc h2 { font-size: 14px; margin-bottom: 10px; }

.price-card {
  position: sticky;
  top: 76px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 20px;
}

.price-big { font-size: 24px; font-weight: 500; margin: 4px 0 12px; }
.price-big small { font-size: 12px; font-weight: 400; color: var(--ink-3); }

.terms { border-top: 1px solid var(--line); margin-bottom: 16px; }
.term-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
}
.term-row b { color: var(--ink-1); font-weight: 500; }

.btn.wide { width: 100%; justify-content: center; margin-top: 10px; }
.price-card .btn.wide:first-of-type { margin-top: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0; }
.chip {
  font-size: 12px;
  color: var(--ink-2);
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}

.related { margin-top: 64px; }
.related .section-head { margin-bottom: 28px; }
.related h2 { font-size: 24px; margin-top: 8px; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--ink-1);
}
.status-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-1); }
.status-pill.available {
  background: var(--avail);
  border-color: var(--avail);
  color: #ffffff;
}
.status-pill.available .dot {
  background: #ffffff;
  animation: pulse-dot 1.8s ease-out infinite;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70%  { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .badge.available .dot, .status-pill.available .dot { animation: none; }
}
.status-pill.booked { color: var(--ink-3); }
.status-pill.booked .dot { background: transparent; border: 1px solid var(--ink-3); }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.spec {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 16px 14px;
  text-align: center;
}

.spec .spec-icon { color: var(--ink-3); margin: 0 auto 8px; }
.spec .label { font-size: 12px; color: var(--ink-3); }
.spec .value { font-size: 14px; font-weight: 500; margin-top: 2px; }

.description {
  color: var(--ink-2);
  font-size: 14px;
  white-space: pre-line;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-card);
  cursor: zoom-in;
  transition: opacity .2s;
}

.gallery img:hover { opacity: 0.9; }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  display: none;
  align-items: center; justify-content: center;
  padding: 32px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 92vw; object-fit: contain; border-radius: var(--r-card); }

.cta-block { text-align: center; margin-top: 48px; }

.hidden { display: none !important; }

/* ---------- Reels ---------- */
.reels { margin-top: 56px; }
.reels .section-head, .availability .section-head { margin-bottom: 24px; }

.reels-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.reel {
  flex: 0 0 auto;
  width: min(300px, 78vw);
  aspect-ratio: 9 / 16;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--fill);
}

.reel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.reel .reel-link {
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
}
.reel .reel-link:hover { color: var(--ink-1); }

/* ---------- Availability calendar ---------- */
.availability { margin-top: 56px; }

.cal-legend {
  display: flex; justify-content: center; gap: 20px;
  font-size: 12px; color: var(--ink-2);
  margin-bottom: 20px;
}
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal-legend .dot { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.cal-legend .dot-open { background: var(--fill); border: 1px solid var(--line); }
.cal-legend .dot-blocked { background: var(--ink-1); }

.cal-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}

.cal-month .cal-title { font-size: 13px; font-weight: 500; text-align: center; margin-bottom: 10px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { font-size: 10px; color: var(--ink-3); text-align: center; padding: 2px 0; }

.cal-day {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
  font-size: 12px;
  border-radius: var(--r-nav);
  background: var(--fill);
  border: 1px solid transparent;
  color: var(--ink-1);
}
.cal-day.past { opacity: 0.35; }
.cal-day.today { border-color: var(--ink-1); }
.cal-day.blocked {
  background: var(--ink-1);
  color: #ffffff;
  text-decoration: line-through;
}

/* ---------- Giveaway modal ---------- */
.giveaway {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.giveaway.open { opacity: 1; pointer-events: auto; }

.giveaway-card {
  position: relative;
  background: #000000;
  border-radius: var(--r-card);
  width: 100%; max-width: 920px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(12px);
  transition: transform .25s ease;
}
.giveaway.open .giveaway-card { transform: translateY(0); }

.giveaway-left {
  padding: 44px 36px 32px;
  color: #ffffff;
  text-align: left;
}

.giveaway-card h3 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #ffffff;
}
.giveaway-sub { color: rgba(255, 255, 255, 0.85); font-size: 15px; margin: 14px 0 26px; }

.giveaway-photo {
  background: #111111 center / cover no-repeat;
  min-height: 100%;
}

.giveaway-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 32px; height: 32px;
  border: none; border-radius: var(--r-nav);
  background: var(--cta); color: var(--ink-1);
  font-size: 14px; font-weight: 700; cursor: pointer;
  line-height: 1;
}
.giveaway-close:hover { background: var(--cta-hover); }

.giveaway-form { display: flex; flex-direction: column; gap: 14px; }
.giveaway-form input[type="text"],
.giveaway-form input[type="tel"],
.giveaway-form input[type="email"],
.giveaway-form input:not([type]) {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-pill);
  padding: 15px 22px;
  font: inherit; font-size: 16px; letter-spacing: -0.15px;
  color: #ffffff;
  background: transparent;
}
.giveaway-form input:focus { outline: none; border-color: #ffffff; box-shadow: 0 0 0 1px #ffffff; }
.giveaway-form input::placeholder { color: rgba(255, 255, 255, 0.6); font-weight: 600; }

.giveaway-consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin-top: 2px;
  cursor: pointer;
}
.giveaway-consent input {
  margin-top: 3px;
  width: 15px; height: 15px;
  accent-color: var(--cta);
  flex-shrink: 0;
}

.giveaway-form .btn {
  margin-top: 10px;
  justify-content: center;
  background: var(--cta);
  border-color: var(--cta);
  color: var(--ink-1);
  font-size: 17px;
  font-weight: 700;
  padding: 15px 22px;
  border-radius: var(--r-pill);
}
.giveaway-form .btn:hover { background: var(--cta-hover); border-color: var(--cta-hover); }

.giveaway-error { color: #ff8a80; font-size: 12px; }
.giveaway-fine { color: rgba(255, 255, 255, 0.45); font-size: 11px; margin-top: 16px; }

@media (max-width: 760px) {
  .giveaway { padding: 14px; }
  .giveaway-card { grid-template-columns: 1fr; max-width: 440px; }
  .giveaway-photo { min-height: 170px; order: -1; }
  .giveaway-left { padding: 28px 22px 24px; }
  .giveaway-card h3 { font-size: 28px; }
  .giveaway-sub { font-size: 13px; margin: 10px 0 20px; }
}

/* ---------- Blog: index + home-page teaser grid ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  transition: box-shadow .2s, transform .2s;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.post-card h3 { font-size: 15px; line-height: 1.35; }
.post-card p { font-size: 13px; color: var(--ink-2); }
.post-card .post-meta { margin-top: auto; padding-top: 6px; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-3);
}
.post-meta .sep { color: var(--line); }

.blog-section .section-head { margin-bottom: 28px; }
.blog-all { text-align: center; margin-top: 28px; }
.blog-all .btn { margin-top: 0; }

/* ---------- Blog: article ---------- */
.post { max-width: 720px; margin: 0 auto; padding: 32px 24px 72px; }

.post-head { margin-bottom: 32px; }
.post-head h1 { font-size: 32px; line-height: 1.2; margin: 14px 0 10px; }
.post-lede { color: var(--ink-2); font-size: 15px; }

.post-body > * + * { margin-top: 16px; }
.post-body h2 { font-size: 20px; margin-top: 40px; }
.post-body h3 { font-size: 15px; margin-top: 28px; }
.post-body p, .post-body li { color: var(--ink-2); font-size: 14px; }
.post-body ul, .post-body ol { padding-left: 20px; }
.post-body li + li { margin-top: 6px; }
.post-body li::marker { color: var(--ink-3); }
.post-body strong { color: var(--ink-1); font-weight: 500; }

.post-body a:not(.btn) {
  color: var(--ink-1);
  text-decoration: underline;
  text-decoration-color: var(--ink-3);
  text-underline-offset: 2px;
}
.post-body a:not(.btn):hover { text-decoration-color: var(--ink-1); }

.post-body .note {
  border-left: 2px solid var(--line);
  padding: 4px 0 4px 16px;
  color: var(--ink-2);
  font-size: 14px;
}

/* Full-bleed out of the 720px prose column — car cards need the room. */
.post-cars {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, calc(100vw - 48px));
  margin: 44px 0;
}
.post-cars .section-head { margin-bottom: 24px; }
.post-cars h2 { font-size: 20px; margin-top: 8px; }
.post-cars .post-cars-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 18px;
}

.faq { margin-top: 44px; }
.faq h2 { font-size: 20px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); margin-top: 16px; }
.faq summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ink-3); }
.faq details[open] summary::after { content: "–"; }
.faq details p { font-size: 14px; color: var(--ink-2); margin-top: 10px; }

.post-cta {
  margin-top: 48px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  text-align: center;
}
.post-cta h2 { font-size: 20px; margin-top: 8px; }
.post-cta p { color: var(--ink-2); font-size: 14px; margin-top: 8px; }
.post-cta .cta-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.post-cta .cta-row .btn { margin-top: 20px; }

.post-more { margin-top: 56px; }
.post-more h2 { font-size: 20px; margin-bottom: 16px; }
.post-more ul { list-style: none; }
.post-more li { border-top: 1px solid var(--line); }
.post-more li:last-child { border-bottom: 1px solid var(--line); }
.post-more a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  font-size: 14px;
  color: var(--ink-2);
}
.post-more a:hover { color: var(--ink-1); }
.post-more a .go { color: var(--ink-3); }
.post-more a:hover .go { color: var(--ink-1); }

@media (max-width: 760px) {
  .post-cars { width: calc(100vw - 32px); }
}

@media (max-width: 640px) {
  .post { padding: 24px 16px 56px; }
  .post-head h1 { font-size: 25px; }
  .post-body h2 { font-size: 18px; margin-top: 32px; }
  .post-cars { margin-top: 36px; margin-bottom: 36px; }
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  margin-top: 56px;
  padding: 32px 24px;
  text-align: center;
  color: var(--ink-3);
  font-size: 12px;
}

footer a { color: var(--ink-2); }
footer a:hover { color: var(--ink-1); }

@media (max-width: 900px) {
  .detail-cols { grid-template-columns: 1fr; gap: 28px; }
  .price-card { position: static; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav { padding: 10px 16px; }
  .section { padding: 40px 16px; }
  .detail { padding: 24px 16px 0; }

  .hero { min-height: 46vh; padding: 56px 16px 48px; }
  .hero p.sub { font-size: 13px; }

  .detail-head h1 { font-size: 26px; }
  .car-hero { height: 34vh; min-height: 220px; margin-top: 16px; }

  .specs-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .spec { padding: 12px 10px; }

  .gallery { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Reels become a swipeable strip instead of a wrapped grid */
  .reels-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .reel { width: 72vw; scroll-snap-align: center; }

  .cal-months { grid-template-columns: 1fr; gap: 24px; }
  .cal-day { min-height: 40px; }

  .detail-cols { margin-top: 32px; }
  .related { margin-top: 48px; }
}
