/* ===========================================================
   LGND Auto — production stylesheet
   Mobile-first. Breakpoints: 900px (tablet/desktop nav+grid),
   1200px (3-col inventory grid), 1280px content cap.
   =========================================================== */

:root {
  --bg: #0a0a0b;
  --text: #f2f2f0;
  --accent: #d5202c;
  --coming-soon: #c9973a;
  --gray: #8c8c96;
  --border: rgba(140, 140, 150, 0.3);
  --card-bg: #131315;
  --container: 1280px;
  --pad: 20px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Chivo', system-ui, sans-serif;
  font-weight: 300;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

.eyebrow {
  font: 500 11px/1 'Chivo', sans-serif;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  font: 700 13px/1 'Chivo', sans-serif;
  letter-spacing: 0.08em;
  padding: 15px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #b91b26; color: #fff; }
.btn-outline { border-color: rgba(255,255,255,0.3); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline-dark { border-color: rgba(10,10,11,0.4); color: var(--bg); }
.btn-outline-dark:hover { border-color: var(--bg); color: var(--bg); }
.btn-call { background: var(--accent); color: #fff; padding: 10px 16px; font-size: 12px; }

/* ===================== HEADER ===================== */
.site-header { position: relative; border-bottom: 1px solid var(--border); }
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--pad);
  gap: 12px;
}

.hamburger {
  background: none;
  border: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}
.hamburger span { height: 2px; background: var(--text); display: block; }

.logo-link { display: block; }
.logo-mark { height: 58px; width: auto; }

.header-left, .header-nav { display: none; }
.header-city { font: 400 13px/1 'Chivo', sans-serif; color: rgba(255,255,255,0.6); }
.header-ig { font: 400 13px/1 'Chivo', sans-serif; color: rgba(255,255,255,0.6); }

.header-strip-wrap { display: none; }

.btn-call-mobile { font-size: 11px; padding: 11px 14px; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  padding: 90px var(--pad) 40px;
  overflow-y: auto;
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 26px; }
.mobile-nav nav a {
  font: 700 26px/1 'Chivo', sans-serif;
  letter-spacing: -0.01em;
}
.mobile-nav-footer {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font: 400 14px/1 'Chivo', sans-serif;
  color: rgba(255,255,255,0.6);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 70%; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,8,9,0.96) 10%, rgba(8,8,9,0.55) 55%, rgba(8,8,9,0.15) 100%);
}
.hero-content { position: relative; padding: 0 var(--pad) 28px; max-width: 660px; }
.hero-content h1 {
  font: 900 clamp(32px, 9vw, 40px)/0.98 'Chivo', sans-serif;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.hero-copy {
  font: 300 15px/1.5 'Chivo', sans-serif;
  color: rgba(255,255,255,0.75);
  margin: 0;
  text-wrap: pretty;
}
.hero-ctas { display: none; }

.test-drive-wrap { position: relative; display: inline-block; }
.test-drive-popover {
  /* position: fixed (not absolute) so it isn't clipped by .hero's
     overflow: hidden -- its top/left are set in px by JS right before
     it's shown, based on the button's actual on-screen position. */
  position: fixed;
  z-index: 210;
  min-width: 190px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.test-drive-popover[hidden] { display: none; }
.test-drive-popover a {
  display: block;
  padding: 11px 14px;
  font: 700 13px/1 'Chivo', sans-serif;
  letter-spacing: 0.06em;
  border-radius: 3px;
  color: var(--text);
}
.test-drive-popover a:hover { background: rgba(255,255,255,0.08); color: var(--accent); }

/* ===================== FILTER BAR ===================== */
.filter-bar { display: none; }

/* ===================== INVENTORY ===================== */
.inventory { padding: 40px var(--pad); text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.inventory-head { display: block; margin-bottom: 18px; }
.inventory-head h2 { font: 900 26px/1 'Chivo', sans-serif; letter-spacing: -0.01em; margin: 0; }
.inventory-viewall { display: none; }
.inventory-grid { display: none; }
.inventory-mobile-cta { display: block; }

.vehicle-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  text-align: left;
}
.vehicle-photo-wrap { position: relative; height: 180px; overflow: hidden; background: var(--card-bg); }
.vehicle-photo-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.vehicle-save {
  position: absolute; top: 12px; left: 12px;
  font: 700 10px/1 'Chivo', sans-serif; letter-spacing: 0.12em;
  padding: 7px 10px; background: var(--accent); color: #fff; border-radius: 2px;
}
.vehicle-photos {
  position: absolute; bottom: 12px; right: 12px;
  font: 400 10px/1 'IBM Plex Mono', monospace; color: rgba(255,255,255,0.5);
}
.vehicle-card.is-sold .vehicle-photo-wrap img { filter: grayscale(55%) brightness(0.65); }
.vehicle-sold-ribbon {
  position: absolute; top: 26px; left: -34px;
  width: 170px;
  transform: rotate(-40deg);
  transform-origin: center;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font: 900 14px/1 'Chivo', sans-serif;
  letter-spacing: 0.18em;
  padding: 6px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  pointer-events: none;
}
.vehicle-coming-soon-ribbon {
  position: absolute; top: 26px; left: -34px;
  width: 170px;
  transform: rotate(-40deg);
  transform-origin: center;
  background: var(--coming-soon);
  color: #fff;
  text-align: center;
  font: 900 14px/1 'Chivo', sans-serif;
  letter-spacing: 0.18em;
  padding: 6px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  pointer-events: none;
}
.vehicle-body { padding: 18px 18px 20px; }
.vehicle-year { font: 400 12px/1 'Chivo', sans-serif; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.vehicle-name { font: 700 18px/1.25 'Chivo', sans-serif; margin-bottom: 14px; }
.vehicle-specs { display: flex; flex-wrap: wrap; gap: 12px 16px; font: 400 12px/1 'Chivo', sans-serif; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.vehicle-price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.vehicle-price { font: 900 24px/1 'Chivo', sans-serif; letter-spacing: -0.02em; }
.vehicle-view { font: 500 12px/1 'Chivo', sans-serif; letter-spacing: 0.1em; color: var(--accent); background: none; border: none; padding: 0; cursor: pointer; }
.vehicle-card { cursor: pointer; }
.no-results { grid-column: 1 / -1; color: rgba(255,255,255,0.6); font: 300 15px/1.5 'Chivo', sans-serif; }

@media (max-width: 899px) {
  .inventory-grid.is-open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
    text-align: left;
  }
}

/* ===================== STATS ===================== */
.stats { display: none; }
.stats-mobile-prose {
  padding: 20px var(--pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font: 300 14px/1.6 'Chivo', sans-serif;
  color: rgba(255,255,255,0.65);
  margin: 0;
  text-wrap: pretty;
}

/* ===================== ABOUT ===================== */
.about { display: flex; flex-direction: column; }
.about-img-wrap { position: relative; height: 260px; overflow: hidden; }
.about-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-copy { padding: 36px var(--pad); }
.about-copy h2 {
  font: 900 26px/1.15 'Chivo', sans-serif;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.about-copy p {
  font: 300 15px/1.55 'Chivo', sans-serif;
  color: rgba(255,255,255,0.68);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.meet-team {
  display: inline-block;
  font: 700 12px/1 'Chivo', sans-serif;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 5px;
}

/* ===================== FINANCING ===================== */
.financing { padding: 40px var(--pad); border-top: 1px solid var(--border); }
.financing h2 { font: 900 26px/1.15 'Chivo', sans-serif; letter-spacing: -0.01em; margin: 0 0 14px; }
.financing p { font: 300 15px/1.55 'Chivo', sans-serif; color: rgba(255,255,255,0.68); margin: 0 0 18px; }

/* ===================== CONTACT BAND ===================== */
.contact-band {
  padding: 40px var(--pad);
  background: var(--gray);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-copy h2 { font: 900 26px/1.1 'Chivo', sans-serif; letter-spacing: -0.01em; margin: 0 0 8px; color: var(--bg); }
.contact-copy p { font: 300 14px/1.4 'Chivo', sans-serif; color: rgba(10,10,11,0.65); margin: 0; }
.contact-ctas { display: flex; flex-direction: column; gap: 10px; }
.contact-ctas .btn { padding: 15px; }

/* ===================== FOOTER ===================== */
.site-footer {
  padding: 24px var(--pad) 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font: 400 12px/1.4 'Chivo', sans-serif;
  color: rgba(255,255,255,0.4);
}
.footer-address { color: rgba(255,255,255,0.4); }
.footer-privacy { color: rgba(255,255,255,0.4); text-decoration: underline; }

/* ===========================================================
   TABLET / DESKTOP  (>= 900px) — matches design-desktop.html
   =========================================================== */
@media (min-width: 900px) {
  :root { --pad: clamp(24px, 3.5vw, 40px); }

  .hamburger, .btn-call-mobile { display: none; }
  .mobile-nav { display: none !important; }

  .header-inner { padding-top: 18px; padding-bottom: 4px; }
  .logo-link { order: 3; }
  .logo-mark { height: clamp(90px, 12vw, 180px); }
  .header-left { display: flex; align-items: center; gap: 14px; order: 1; }
  .header-nav {
    display: flex;
    gap: 34px;
    font: 500 13px/1 'Chivo', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    order: 2;
  }
  .header-strip-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    top: -30px;
    padding: 0 var(--pad) 2px;
  }
  .header-strip { height: 16px; width: auto; }

  .hero { height: clamp(420px, 44vw, 560px); }
  .hero-content { padding-bottom: 56px; }
  .hero-content h1 { font: 900 clamp(44px, 5.6vw, 76px)/0.95 'Chivo', sans-serif; letter-spacing: -0.02em; }
  .hero-copy { font-size: 18px; line-height: 1.55; max-width: 520px; }
  .hero-ctas { display: flex; gap: 14px; margin-top: 34px; }
  .hero-ctas .btn { padding: 17px 30px; }

  .filter-bar {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--gray);
  }
  .filter-field {
    flex: 1;
    padding: 22px 26px;
    border-right: 1px solid rgba(10,10,11,0.15);
  }
  .filter-field label {
    display: block;
    font: 500 10px/1 'Chivo', sans-serif;
    letter-spacing: 0.18em;
    color: rgba(10,10,11,0.55);
    margin-bottom: 9px;
  }
  .filter-field select {
    width: 100%;
    font: 400 16px/1 'Chivo', sans-serif;
    color: var(--bg);
    background: transparent;
    border: none;
    padding: 0;
    appearance: none;
  }
  .filter-search {
    display: flex;
    align-items: center;
    padding: 0 34px;
    background: var(--bg);
    color: #fff;
    font: 700 13px/1 'Chivo', sans-serif;
    letter-spacing: 0.1em;
    border: none;
    white-space: nowrap;
  }
  .filter-search:hover { background: var(--accent); }

  .inventory { text-align: left; padding: 64px var(--pad) 72px; }
  .inventory-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
  .inventory-head h2 { font: 900 40px/1 'Chivo', sans-serif; letter-spacing: -0.02em; }
  .inventory-viewall {
    display: inline-block;
    font: 400 14px/1 'Chivo', sans-serif;
    color: rgba(255,255,255,0.55);
    border-bottom: 1px solid var(--gray);
    padding-bottom: 5px;
  }
  .inventory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .inventory-mobile-cta { display: none; }

  .vehicle-photo-wrap { height: 200px; }
  .vehicle-body { padding: 20px 20px 22px; }
  .vehicle-name { font-size: 19px; }
  .vehicle-price { font-size: 26px; }

  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stats-mobile-prose { display: none; }
  .stat { padding: 38px 30px; border-right: 1px solid var(--border); }
  .stat:last-child { border-right: none; }
  .stat-number { font: 900 34px/1 'Chivo', sans-serif; color: #fff; margin-bottom: 10px; }
  .stat-label { font: 300 14px/1.5 'Chivo', sans-serif; color: rgba(255,255,255,0.6); }

  .about { flex-direction: row; }
  .about-copy { flex: 1.1; padding: 70px var(--pad); }
  .about-copy h2 { font: 900 38px/1.08 'Chivo', sans-serif; letter-spacing: -0.02em; margin-bottom: 22px; }
  .about-copy p { font-size: 17px; line-height: 1.6; margin-bottom: 18px; }
  .about-img-wrap { flex: 1; min-height: 360px; height: auto; }

  .financing { padding: 56px var(--pad); }
  .financing h2 { font-size: 32px; }
  .financing p { font-size: 17px; max-width: 560px; }

  .contact-band { flex-direction: row; align-items: center; justify-content: space-between; padding: 60px var(--pad); }
  .contact-copy h2 { font-size: 34px; }
  .contact-copy p { font-size: 16px; }
  .contact-ctas { flex-direction: row; gap: 12px; }
  .contact-ctas .btn { padding: 16px 26px; }

  .site-footer { flex-direction: row; align-items: center; justify-content: space-between; padding: 34px var(--pad); }
}

/* ===================== 3-column grid at wider desktop ===================== */
@media (min-width: 1200px) {
  .inventory-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================== VEHICLE DETAIL MODAL ===================== */
.vehicle-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.vehicle-modal[hidden] { display: none; }
.vehicle-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,9,0.85);
  border: none;
  padding: 0;
  cursor: pointer;
}
.vehicle-modal-panel {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.vehicle-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 34px; height: 34px;
  background: rgba(8,8,9,0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.vehicle-modal-gallery {
  position: relative;
  height: 260px;
  background: #000;
}
.vehicle-modal-gallery img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}
.vehicle-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  background: rgba(8,8,9,0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.vehicle-modal-prev { left: 12px; }
.vehicle-modal-next { right: 12px; }
.vehicle-modal-count {
  position: absolute;
  bottom: 12px; right: 12px;
  font: 400 11px/1 'IBM Plex Mono', monospace;
  color: rgba(255,255,255,0.75);
  background: rgba(8,8,9,0.6);
  padding: 5px 9px;
  border-radius: 2px;
}
.vehicle-modal-body { padding: 22px 22px 26px; }
.vehicle-modal-body .vehicle-name { font: 700 22px/1.2 'Chivo', sans-serif; margin-bottom: 14px; }
.vehicle-modal-body .vehicle-price-row { flex-wrap: wrap; gap: 12px; }

@media (min-width: 600px) {
  .vehicle-modal-gallery { height: 340px; }
}

/* ===================== VEHICLE DETAIL PAGE ===================== */
.vp-main { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad) 60px; }
.vp-breadcrumb {
  display: block;
  padding: 18px 0;
  font: 400 13px/1 'Chivo', sans-serif;
  color: rgba(255,255,255,0.5);
}
.vp-breadcrumb:hover { color: var(--accent); }

.vp-gallery {
  position: relative;
  height: 300px;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.vp-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.vp-sold-ribbon { top: 44px; left: -46px; width: 230px; font-size: 17px; padding: 8px 0; }
.vp-coming-soon-ribbon { top: 44px; left: -46px; width: 230px; font-size: 17px; padding: 8px 0; }

.vp-sold-banner {
  margin-top: 18px;
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  font: 700 13px/1.4 'Chivo', sans-serif;
  border-radius: 3px;
}
.vp-sold-banner a { color: #fff; text-decoration: underline; }
.vp-coming-soon-banner {
  margin-top: 18px;
  padding: 12px 16px;
  background: var(--coming-soon);
  color: #fff;
  font: 700 13px/1.4 'Chivo', sans-serif;
  border-radius: 3px;
}

.vp-body { padding-top: 24px; }
.vp-year { font: 400 13px/1 'Chivo', sans-serif; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.vp-title { font: 900 clamp(26px, 6vw, 40px)/1.1 'Chivo', sans-serif; letter-spacing: -0.01em; margin: 0 0 16px; }
.vp-specs { display: flex; flex-wrap: wrap; gap: 10px 18px; font: 400 13px/1 'Chivo', sans-serif; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.vp-specs span { white-space: nowrap; }
.vp-vin { font: 400 12px/1 'IBM Plex Mono', monospace; color: rgba(255,255,255,0.4); margin-bottom: 22px; }
.vp-price-row {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.vp-price { font: 900 clamp(28px, 5vw, 38px)/1 'Chivo', sans-serif; letter-spacing: -0.02em; }
.vp-save { font: 700 13px/1 'Chivo', sans-serif; color: var(--accent); }
.vp-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.vp-notfound { padding: 90px var(--pad); text-align: center; }
.vp-notfound h1 { font: 900 30px/1.2 'Chivo', sans-serif; margin: 0 0 14px; }
.vp-notfound p { font: 300 15px/1.6 'Chivo', sans-serif; color: rgba(255,255,255,0.65); margin: 0 0 26px; }

@media (min-width: 900px) {
  .vp-main { padding-top: 6px; }
  .vp-gallery { height: 460px; }
  .vp-content { display: grid; grid-template-columns: 1fr; }
}

/* ===================== REVIEWS ===================== */
.reviews { padding: 40px var(--pad); border-top: 1px solid var(--border); }
.reviews-head { margin-bottom: 26px; }
.reviews-head h2 { font: 900 26px/1.15 'Chivo', sans-serif; letter-spacing: -0.01em; margin: 0 0 16px; }
.reviews-google { display: inline-flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.reviews-stars, .review-stars { color: var(--accent); letter-spacing: 0.12em; font-size: 13px; }
.reviews-score { font: 900 18px/1 'Chivo', sans-serif; }
.reviews-source { font: 400 12px/1 'IBM Plex Mono', monospace; color: rgba(255,255,255,0.5); }
.reviews-stage { position: relative; }
.review { margin: 0; }
.review[hidden] { display: none; }
.review blockquote {
  margin: 0 0 22px;
  font: 300 clamp(19px, 4.6vw, 24px)/1.4 'Chivo', sans-serif;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  max-width: 900px;
}
.review figcaption { display: flex; flex-direction: column; gap: 7px; }
.review-name { font: 700 13px/1 'Chivo', sans-serif; letter-spacing: 0.06em; }
.reviews-controls { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border); }
.reviews-arrow {
  width: 38px; height: 38px;
  background: none; border: 1px solid var(--border); border-radius: 50%;
  color: var(--text); font-size: 18px; line-height: 1;
}
.reviews-arrow:hover { border-color: var(--accent); color: var(--accent); }
.reviews-dots { display: flex; gap: 8px; }
.reviews-dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; background: rgba(255,255,255,0.22); }
.reviews-dot[aria-selected="true"] { background: var(--accent); }

@media (min-width: 900px) {
  .reviews { padding: 72px var(--pad); }
  .reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
  .reviews-head h2 { font: 900 40px/1 'Chivo', sans-serif; letter-spacing: -0.02em; margin: 0; }
  .review blockquote { font-size: 30px; line-height: 1.35; margin-bottom: 28px; }
  .review figcaption { flex-direction: row; align-items: baseline; gap: 16px; }
}

/* ===================== PRIVACY / LEGAL PAGE ===================== */
.policy { padding-top: 6px; padding-bottom: 60px; max-width: 780px; }
.policy-head { margin: 10px 0 28px; }
.policy-head h1 { font: 900 clamp(28px, 7vw, 42px)/1.1 'Chivo', sans-serif; letter-spacing: -0.01em; margin: 0 0 8px; }
.policy-updated { font: 400 13px/1 'Chivo', sans-serif; color: rgba(255,255,255,0.45); margin: 0; }
.policy p { font: 300 15px/1.65 'Chivo', sans-serif; color: rgba(255,255,255,0.72); margin: 0 0 18px; }
.policy h2 { font: 900 20px/1.25 'Chivo', sans-serif; letter-spacing: -0.005em; margin: 34px 0 12px; }
.policy h3 { font: 700 15px/1.3 'Chivo', sans-serif; margin: 0 0 12px; }
.policy ul, .policy ol { margin: 0 0 18px; padding-left: 22px; font: 300 15px/1.65 'Chivo', sans-serif; color: rgba(255,255,255,0.72); }
.policy li { margin-bottom: 8px; }
.policy a { text-decoration: underline; }
.policy-callout {
  border: 1px solid var(--border);
  background: var(--card-bg);
  border-radius: 3px;
  padding: 20px 22px 6px;
  margin: 0 0 26px;
}
.policy-callout ul, .policy-callout ol { margin-bottom: 14px; }
