/* ============================================================
   Los Padrinos — Main stylesheet
   Shared across all pages.
   ============================================================ */

:root {
  --bg: #0B0B0C;
  --bg-2: #131315;
  --bg-3: #1A1A1C;
  --text: #F4F1EC;
  --text-dim: #A8A6A2;
  --text-subtle: #6D6B68;
  --gold: #C9A55F;
  --gold-soft: rgba(201, 165, 95, 0.5);
  --line: rgba(244, 241, 236, 0.12);
  --line-soft: rgba(244, 241, 236, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(11,11,12,0.78) 0%, rgba(11,11,12,0) 100%);
  transition: background 0.4s, border-color 0.4s;
}
.navbar.scrolled {
  background: rgba(11,11,12,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: visible;
  position: relative;
  padding-left: 780px;
  min-height: 28px;
  transition: padding-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 192px;
  height: 192px;
  transform: none;
  flex-shrink: 0;
  z-index: 5;
  transition:
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo-badge::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 95, 0.55) 0%, rgba(201, 165, 95, 0.22) 42%, transparent 72%);
  z-index: 0;
  animation: haloPulse 3.2s ease-in-out infinite;
  filter: blur(8px);
  pointer-events: none;
  transition: inset 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo-float {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  animation: logoFloat 5.5s ease-in-out infinite;
  transform-origin: center;
}

.nav-logo-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-mask: radial-gradient(circle at 50% 52%, #000 46%, transparent 70%);
  mask: radial-gradient(circle at 50% 52%, #000 46%, transparent 70%);
  filter:
    drop-shadow(0 0 10px rgba(201, 165, 95, 0.75))
    drop-shadow(0 0 24px rgba(201, 165, 95, 0.35));
  transition: transform 1.1s cubic-bezier(0.2, 0, 0, 1);
}

.nav-logo-badge:hover .nav-logo-float img {
  transform: rotate(360deg) scale(1.06);
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-4px) rotate(1deg); }
}

@keyframes haloPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.nav-logo-text {
  position: absolute;
  left: 216px;
  top: 96px;
  transform: translateY(-50%);
  font-family: 'Cinzel', serif;
  font-size: 62px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text);
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 4;
  isolation: isolate;
  filter:
    drop-shadow(0 0 10px rgba(201, 165, 95, 0.65))
    drop-shadow(0 0 26px rgba(201, 165, 95, 0.3));
  animation: textGlowPulse 3.2s ease-in-out infinite;
  transition:
    font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    letter-spacing 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo-text::before {
  content: '';
  position: absolute;
  inset: -24px -44px;
  background: radial-gradient(ellipse at center, rgba(201, 165, 95, 0.42) 0%, rgba(201, 165, 95, 0.14) 50%, transparent 78%);
  filter: blur(20px);
  z-index: -1;
  animation: haloPulse 3.2s ease-in-out infinite;
  pointer-events: none;
  transition: inset 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ NAVBAR COMPACT STATE ============
   Applied to inner pages always, and to landing on scroll.
   Logo + name shrink into the header row smoothly. */
.navbar.compact .nav-logo {
  padding-left: 76px;
}

.navbar.compact .nav-logo-badge {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
}

.navbar.compact .nav-logo-badge::before {
  inset: -8px;
  filter: blur(5px);
}

.navbar.compact .nav-logo-text {
  font-size: 20px;
  letter-spacing: 2.5px;
  top: 50%;
  left: 76px;
}

.navbar.compact .nav-logo-text::before {
  inset: -6px -14px;
  filter: blur(8px);
}

@keyframes textGlowPulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 10px rgba(201, 165, 95, 0.65))
      drop-shadow(0 0 26px rgba(201, 165, 95, 0.3));
  }
  50% {
    filter:
      drop-shadow(0 0 18px rgba(201, 165, 95, 0.85))
      drop-shadow(0 0 42px rgba(201, 165, 95, 0.45));
  }
}

.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.3px; color: var(--text); opacity: 0.85; transition: opacity 0.3s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  padding: 12px 26px;
  border: 1px solid var(--text);
  font-size: 12px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--text); color: var(--bg) !important; }

/* ============ HERO (home split layout) ============ */
.hero {
  position: relative;
  min-height: 66vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 140px 56px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: -60px; bottom: 0;
  width: 120px;
  background: linear-gradient(90deg, var(--bg-2), transparent);
  z-index: 3;
  pointer-events: none;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: slowPan 24s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.02);
}

@keyframes slowPan {
  from { transform: scale(1.02); }
  to { transform: scale(1.1); }
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,12,0.25) 0%, transparent 40%, transparent 60%, rgba(11,11,12,0.4) 100%);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  background: rgba(11,11,12,0.88);
  backdrop-filter: blur(16px);
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
}

.hero-badge-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.hero-badge-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-content { max-width: 600px; }
.hero-content .eyebrow { margin-bottom: 28px; }

.hero h1 {
  font-size: clamp(44px, 5.8vw, 80px);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  color: var(--text-dim);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--text);
}
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.btn-secondary:hover { background: var(--text); color: var(--bg); }
.btn-arrow { font-size: 16px; line-height: 1; transition: transform 0.3s; font-weight: 300; }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ============ STATS STRIP ============ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.stat-item {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 200;
  color: var(--text);
  line-height: 1;
  letter-spacing: -2px;
}
.stat-num span { color: var(--gold); }
.stat-lbl {
  font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-subtle);
}

/* ============ SECTION BASE ============ */
section.block {
  padding: 140px 56px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
  flex-wrap: wrap;
  gap: 32px;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 200;
  letter-spacing: -1.5px;
  line-height: 1.05;
  max-width: 20ch;
}
.section-head p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 420px;
  line-height: 1.6;
}

/* ============ WHY US (broker vs dealer) ============ */
.why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-card {
  padding: 56px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s;
  position: relative;
}
.why-card:hover { background: var(--bg-2); }
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-num {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.why-title {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.why-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}
.why-desc strong {
  color: var(--text);
  font-weight: 500;
}

.why-closer {
  grid-column: 1 / -1;
  padding: 56px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.why-closer p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.3px;
  max-width: 60ch;
  line-height: 1.35;
}
.why-closer p em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* ============ NOSOTROS (teaser on home) ============ */
.nosotros-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nosotros-teaser-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
}

.nosotros-teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1s cubic-bezier(0.2, 0, 0, 1);
}

.nosotros-teaser-photo:hover img { transform: scale(1.04); }

.nosotros-teaser-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(11,11,12,0.85);
  backdrop-filter: blur(14px);
  padding: 18px 22px;
  border-left: 2px solid var(--gold);
}

.nosotros-teaser-caption-name {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.nosotros-teaser-caption-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nosotros-teaser-content h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 200;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 20px 0 24px;
}
.nosotros-teaser-content h2 em { font-style: italic; font-weight: 300; color: var(--gold); }

.nosotros-teaser-content p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 52ch;
}

/* ============ HOW IT WORKS ============ */
.how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.how-step {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.3s;
}
.how-step:last-child { border-right: none; }
.how-step:hover { background: var(--bg-2); }

.how-num {
  font-size: 56px;
  font-weight: 200;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}
.how-title {
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.3px;
}
.how-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============ FEATURED CARS ============ */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.car {
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.car:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
}
.car-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
}
.car-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.car:hover .car-photo img { transform: scale(1.05); }

.car-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  background: rgba(11,11,12,0.85);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold-soft);
}

.car-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.car-year {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-subtle);
  text-transform: uppercase;
}
.car-name {
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.car-trim {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: -8px;
}
.car-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-subtle);
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.car-meta span { display: flex; align-items: center; gap: 6px; }

.car-price-row {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.car-price {
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.5px;
  line-height: 1;
}
.car-price-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-subtle);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.car-msrp {
  font-size: 13px;
  color: var(--text-subtle);
  text-decoration: line-through;
}

.cars-more {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* ============ DEALERS ============ */
.dealers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.dealer {
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.dealer-map {
  aspect-ratio: 16 / 10;
  border: none;
  width: 100%;
  filter: grayscale(0.3) contrast(1.1);
}
.dealer-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dealer-brand {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.dealer-name {
  font-size: 26px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.dealer-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.dealer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--text-dim);
}
.dealer-info div { display: flex; gap: 12px; align-items: flex-start; }
.dealer-info .k {
  color: var(--gold);
  font-weight: 500;
  min-width: 70px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 3px;
}

/* ============ STATEMENT ============ */
.statement {
  padding: 160px 56px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.statement p {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 200;
  line-height: 1.25;
  letter-spacing: -1px;
  color: var(--text);
  max-width: 24ch;
  margin-top: 40px;
}
.statement p em { font-style: italic; font-weight: 300; color: var(--gold); }
.statement-tag {
  margin-top: 56px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-subtle);
  font-style: italic;
  padding-left: 24px;
  border-left: 1px solid var(--gold-soft);
}

/* ============ FOOTER ============ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 80px 56px 32px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-brand-logo img { height: 48px; width: auto; }
.footer-brand-logo span {
  font-size: 16px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
}
.footer-brand-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 24px;
}
.footer-brand-motto {
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.5px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--text); }

.footer-contact {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}
.footer-contact a { color: var(--text-dim); }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 14px;
  transition: all 0.3s;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legal {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-subtle);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--text); }
.footer-copy {
  font-size: 12px;
  color: var(--text-subtle);
}

.footer-disclaimer {
  max-width: 1400px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  color: var(--text-subtle);
  line-height: 1.7;
}

/* ============================================================
   PAGE: Nosotros (dedicated)
   ============================================================ */

.page-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 140px 56px 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: slowPan 30s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.05);
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.5) 0%, rgba(11,11,12,0) 30%, rgba(11,11,12,0.2) 50%, rgba(11,11,12,0.95) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}

.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(56px, 8vw, 128px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin: 28px 0 32px;
  text-shadow: 0 4px 60px rgba(0,0,0,0.5);
}

.page-hero-sub {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 300;
  color: var(--text-dim);
  max-width: 620px;
  line-height: 1.5;
  font-style: italic;
}

/* Story */
.story {
  padding: 140px 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.story-aside { position: sticky; top: 120px; }

.story-aside-num {
  font-family: 'Cinzel', serif;
  font-size: 96px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.story-aside-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.story-body h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 200;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 36px;
}

.story-body h2 em { font-style: italic; font-weight: 300; color: var(--gold); }

.story-body p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 60ch;
}

.story-body p strong { color: var(--text); font-weight: 500; }

/* Values */
.values {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 120px 56px;
}

.values-inner { max-width: 1400px; margin: 0 auto; }

.values-head { text-align: center; margin-bottom: 72px; }

.values-head .eyebrow { justify-content: center; margin-bottom: 24px; }
.values-head .eyebrow::before { display: none; }

.values-head h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 200;
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 20ch;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-card {
  background: var(--bg-2);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s;
}

.value-card:hover { background: var(--bg-3); }

.value-icon {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}

.value-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.3px;
}

.value-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* Team */
.team {
  padding: 140px 56px;
  max-width: 1400px;
  margin: 0 auto;
}

.team-head { margin-bottom: 72px; text-align: center; }
.team-head .eyebrow { justify-content: center; margin-bottom: 20px; }
.team-head .eyebrow::before { display: none; }
.team-head h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 200;
  letter-spacing: -1.5px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.team-member {
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.team-member:hover { border-color: var(--gold-soft); }

.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 1.2s cubic-bezier(0.2, 0, 0, 1);
}

.team-member:hover .team-photo img { transform: scale(1.04); }

.team-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-name {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

.team-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.team-bio {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 8px;
}

.team-facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  margin-top: 8px;
  border-top: 1px solid var(--line-soft);
}

.team-fact {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--text-dim);
}

.team-fact .k {
  color: var(--gold);
  font-weight: 500;
  min-width: 90px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 3px;
}

/* Moments gallery */
.moments {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 120px 56px;
}

.moments-inner { max-width: 1400px; margin: 0 auto; }

.moments-head { text-align: center; margin-bottom: 56px; }
.moments-head .eyebrow { justify-content: center; margin-bottom: 20px; }
.moments-head .eyebrow::before { display: none; }
.moments-head h2 {
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 200;
  letter-spacing: -1.5px;
  max-width: 24ch;
  margin: 0 auto 16px;
}
.moments-head p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 auto;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.moment {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  position: relative;
}

.moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0, 1);
}

.moment:hover img { transform: scale(1.05); }

.moment::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,12,0.6) 100%);
  pointer-events: none;
}

/* Manifesto */
.manifesto {
  padding: 160px 56px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.manifesto p {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.3;
  letter-spacing: 1px;
}

.manifesto p em {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}

.manifesto-signed {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* Page CTA */
.page-cta {
  padding: 100px 56px;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.page-cta h3 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 200;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.page-cta p {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 auto 40px;
}

.page-cta-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE: Cómo Funciona
   ============================================================ */
.timeline {
  padding: 140px 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.timeline-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.timeline-step:first-child { border-top: none; padding-top: 0; }

.timeline-num {
  font-family: 'Cinzel', serif;
  font-size: 88px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}

.timeline-body h3 {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 300;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.15;
}

.timeline-body p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 62ch;
}

.timeline-body p strong { color: var(--text); font-weight: 500; }

.timeline-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--gold-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}

/* FAQ */
.faq {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 120px 56px;
}

.faq-inner { max-width: 1000px; margin: 0 auto; }

.faq-head { text-align: center; margin-bottom: 64px; }
.faq-head .eyebrow { justify-content: center; margin-bottom: 20px; }
.faq-head .eyebrow::before { display: none; }
.faq-head h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 200;
  letter-spacing: -1.5px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  padding: 28px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--gold);
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }

.faq-item .faq-answer {
  padding: 0 0 28px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 72ch;
}

/* ============================================================
   PAGE: Dealers
   ============================================================ */
.dealer-full {
  padding: 120px 56px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.dealer-full + .dealer-full {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 120px;
}

.dealer-full-map {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  width: 100%;
  filter: grayscale(0.2) contrast(1.1);
  background: var(--bg-3);
}

.dealer-full-body { padding-top: 8px; }

.dealer-full-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dealer-full-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1;
}

.dealer-full-desc {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 52ch;
}

.dealer-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 24px;
}

.dealer-highlight {
  padding: 24px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dealer-highlight-num {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}

.dealer-highlight-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* ============================================================
   PAGE: Inventario
   ============================================================ */
.inventory-header {
  padding: 120px 56px 40px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}

.inventory-header h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(44px, 5vw, 80px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.inventory-header p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 340px;
}

/* --- Dealer tabs (filter by dealer) --- */
.dealer-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 56px;
  margin-bottom: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.dealer-tab {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.dealer-tab:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

.dealer-tab.active {
  border-color: var(--gold);
  background: var(--bg-3);
  box-shadow: 0 0 0 1px var(--gold) inset;
}

.dealer-tab-icon {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1;
}
.dt-all { font-family: 'Cinzel', serif; font-size: 28px; color: var(--gold); letter-spacing: 0; }
.dt-honda { color: #CC0000; font-style: italic; }
.dt-toyota { color: #EB0A1E; }

.dealer-tab.active .dealer-tab-icon {
  filter: drop-shadow(0 0 14px currentColor);
}

.dealer-tab-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.2px;
}

.dealer-tab-count {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.dealer-tab.active .dealer-tab-count { color: var(--gold); }

/* --- ZIP filter --- */
.zip-filter {
  padding: 12px 56px 24px;
  max-width: 1400px;
  margin: 0 auto 24px;
}

.zip-filter label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.zip-input-wrap {
  display: flex;
  gap: 10px;
  max-width: 520px;
}

.zip-input-wrap input {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 14px 18px;
  letter-spacing: 2px;
}

.zip-input-wrap input::placeholder { color: var(--text-subtle); letter-spacing: 0; }
.zip-input-wrap input:focus { outline: none; border-color: var(--gold); }

.zip-input-wrap button {
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.zip-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.3px;
}

/* --- Car photo carousel on hover --- */
.car-photo-stack {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.car-photo-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.car-photo-stack img.active { opacity: 1; }
.car:hover .car-photo-stack img.active { transform: scale(1.04); }

.car-photo-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
  pointer-events: none;
}

.car-photo-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(244, 241, 236, 0.4);
  transition: background 0.3s, width 0.3s;
}

.car-photo-dots span.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}

/* --- Chip filters container (existing) --- */
.inventory-filters {
  padding: 20px 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 56px;
}

.chip {
  flex-shrink: 0;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.chip:hover { border-color: var(--gold-soft); color: var(--text); }
.chip.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.inventory-grid {
  padding: 0 56px 120px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON (all pages)
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5);
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55);
}
.wa-float svg { width: 32px; height: 32px; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 0 0 16px rgba(37, 211, 102, 0); }
}


/* ============================================================
   PAGE: Cita (appointment form)
   ============================================================ */
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 56px 120px;
}

.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 56px 48px;
}

.form-group {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.consent {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--bg);
  margin-top: 20px;
  margin-bottom: 32px;
}

.consent input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.consent label {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 300;
}

.consent label strong { color: var(--text); font-weight: 500; }

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 20px;
}

.form-success {
  display: none;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--gold-soft);
  background: rgba(201, 165, 95, 0.05);
}

.form-success.visible { display: block; }

.form-success h4 {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

.form-success p { color: var(--text-dim); font-size: 15px; line-height: 1.6; }

/* ============================================================
   PAGE: Pre-aprobación
   ============================================================ */
.preapp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 56px;
}

.preapp-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.preapp-card:hover { border-color: var(--gold-soft); transform: translateY(-4px); }

.preapp-brand {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.preapp-title {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}

.preapp-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 32px;
  flex: 1;
}

.preapp-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preapp-features li {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 22px;
  position: relative;
}

.preapp-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 3px;
}

/* ============================================================
   PAGE: Testimonios
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 80px 56px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.testimonial:hover .testimonial-photo img { transform: scale(1.04); }

.testimonial-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--text-dim);
}

.testimonial-author strong { color: var(--gold); font-weight: 500; display: block; margin-bottom: 2px; }

/* ============================================================
   PAGE: Vehículo (detail)
   ============================================================ */
.vdp {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 56px 120px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.vdp-gallery {
  aspect-ratio: 16 / 11;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.vdp-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vdp-gallery img.active { opacity: 1; }

/* Prev/Next arrows */
.vdp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,11,12,0.75);
  backdrop-filter: blur(10px);
  color: var(--text);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  font-size: 18px;
  font-weight: 300;
}

.vdp-nav:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.vdp-nav.prev { left: 20px; }
.vdp-nav.next { right: 20px; }

/* Photo counter */
.vdp-counter {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 5;
  padding: 6px 14px;
  background: rgba(11,11,12,0.8);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  border: 1px solid var(--gold-soft);
}

/* Thumbnail carousel — horizontal scroll */
.vdp-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-soft) transparent;
}

.vdp-thumbs::-webkit-scrollbar { height: 6px; }
.vdp-thumbs::-webkit-scrollbar-track { background: transparent; }
.vdp-thumbs::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 3px; }
.vdp-thumbs::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.vdp-thumb {
  flex: 0 0 auto;
  width: 160px;
  aspect-ratio: 16/11;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}

.vdp-thumb:hover { border-color: var(--gold-soft); }
.vdp-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset; }

.vdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature chips list on VDP */
.vdp-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.vdp-feature {
  padding: 6px 14px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.2px;
}

.vdp-body { position: sticky; top: 100px; }

.vdp-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.vdp-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}

.vdp-trim {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.vdp-price-block {
  padding: 24px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  margin-bottom: 28px;
}

.vdp-price-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 6px;
}

.vdp-price {
  font-family: 'Cinzel', serif;
  font-size: 44px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.vdp-msrp {
  font-size: 14px;
  color: var(--text-subtle);
  text-decoration: line-through;
}

.vdp-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.vdp-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vdp-spec-k {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.vdp-spec-v {
  font-size: 14px;
  color: var(--text);
}

.vdp-ctas { display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   LEGAL PAGES (simple)
   ============================================================ */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 56px 120px;
}

.legal-wrap h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1;
}

.legal-wrap .legal-updated {
  font-size: 12px;
  color: var(--text-subtle);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.legal-wrap h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  margin: 48px 0 16px;
  letter-spacing: -0.3px;
}

.legal-wrap p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-wrap ul {
  color: var(--text-dim);
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-wrap li { font-size: 15px; line-height: 1.75; margin-bottom: 8px; }

.legal-wrap a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  text-align: center;
}

.page-404 .big-404 {
  font-family: 'Cinzel', serif;
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -4px;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(201, 165, 95, 0.3);
}

.page-404 h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-404 p {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 40px;
  max-width: 480px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 24px 60px; order: 2; }
  .hero-left::after { display: none; }
  .hero-right { order: 1; height: 60vh; min-height: 420px; }
  .hero-photo { object-position: center 25%; }

  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .how { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--line); }
  .how-step:last-child { border-bottom: none; }
  .dealers { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .nosotros-teaser { grid-template-columns: 1fr; gap: 48px; }
  .nosotros-teaser-photo { max-width: 420px; }

  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-aside { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .moments-grid { grid-template-columns: repeat(3, 1fr); }

  .timeline-step { grid-template-columns: 1fr; gap: 20px; }
  .timeline-num { font-size: 64px; }

  .dealer-full { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px; }
  .dealer-full + .dealer-full { padding-top: 80px; margin-top: 24px; }

  .inventory-grid { grid-template-columns: repeat(2, 1fr); }
  .dealer-tabs { grid-template-columns: 1fr; padding: 0 24px; gap: 10px; }
  .zip-filter { padding: 0 24px 20px; }

  .preapp-grid { grid-template-columns: 1fr; padding: 60px 24px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .vdp { grid-template-columns: 1fr; padding: 100px 24px 80px; }
  .vdp-body { position: static; }
}

/* Mid-size breakpoint: tight nav for tablets / small laptops so items don't overlap */
@media (max-width: 1080px) and (min-width: 901px) {
  .navbar { padding: 18px 24px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 12px; letter-spacing: 0.2px; }
  .nav-logo-text { font-size: 14px; letter-spacing: 2.5px; }
}

/* Tablet: hide secondary nav items (keep Inventario + Cita), shrink logo */
@media (max-width: 900px) and (min-width: 701px) {
  .navbar { padding: 16px 20px; }
  .nav-logo img { height: 34px; }
  .nav-logo-text { font-size: 12px; letter-spacing: 1.5px; }
  .nav-links { gap: 14px; }
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(3),
  .nav-links li:nth-child(4) { display: none; }
  .nav-cta { padding: 8px 16px; font-size: 11px; }
}

@media (max-width: 700px) {
  .navbar { padding: 16px 20px; }
  .nav-logo img { height: 32px; }
  .nav-logo-text { font-size: 12px; letter-spacing: 2px; }
  .nav-links { gap: 14px; }
  .nav-links li:not(:last-child) { display: none; }

  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 32px 20px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  section.block { padding: 80px 24px; }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 48px; }

  .cars-grid { grid-template-columns: 1fr; }
  .statement { padding: 80px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 56px 24px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 110px 24px 60px; }
  .story { padding: 80px 24px; }
  .values { padding: 80px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .team { padding: 80px 24px; }
  .moments { padding: 80px 24px; }
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto { padding: 100px 24px; }
  .page-cta { padding: 80px 24px; }

  .timeline { padding: 80px 24px; }
  .faq { padding: 80px 24px; }
  .inventory-header { padding: 90px 24px 24px; }
  .inventory-filters { padding: 16px 24px; }
  .inventory-grid { padding: 0 24px 80px; grid-template-columns: 1fr; }

  .form-wrap { padding: 60px 24px 80px; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .testimonial-grid { grid-template-columns: 1fr; padding: 60px 24px 80px; }
  .legal-wrap { padding: 40px 24px 80px; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ============================================================
   AD BANNER — fixed at the bottom of every page for 3rd-party
   advertising. Content driven by /data/footer-banner.json.
   Injected by js/main.js initFooterBanner().
   ============================================================ */

.ad-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 10px 56px 10px 24px;
  display: flex; align-items: center; gap: 16px; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  border-top: 1px solid var(--gold);
  background: #1A1A1C;
  color: var(--gold);
  box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.6);
  animation: adBannerSlide 0.4s ease-out;
}
@keyframes adBannerSlide {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.ad-banner-content { flex: 1 1 auto; text-align: center; }
.ad-banner-content strong { color: var(--text); font-weight: 600; }
.ad-banner-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--bg) !important;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.ad-banner-link:hover { background: #D4B572; }
.ad-banner-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; color: var(--text-dim);
  cursor: pointer; padding: 4px 8px;
  font-size: 18px; line-height: 1;
}
.ad-banner-close:hover { color: var(--text); }

/* Push body content up so banner doesn't cover the footer */
body.has-ad-banner footer { padding-bottom: 80px; }

@media (max-width: 700px) {
  .ad-banner {
    padding: 10px 40px 10px 14px;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .ad-banner-content { text-align: left; flex: 1 1 100%; }
  .ad-banner-link { font-size: 11px; padding: 5px 12px; }
}

/* ============================================================
   VDP DEALER DESCRIPTION — shown in vehiculo.html between
   specs and CTAs. Injected by js/main.js VDP renderer.
   ============================================================ */

.vdp-dealer-desc {
  margin-top: 32px;
  padding: 24px 26px;
  background: rgba(201,165,95,0.04);
  border: 1px solid rgba(201,165,95,0.18);
  border-radius: 8px;
}
.vdp-dealer-head {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,165,95,0.12);
}
.vdp-dealer-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-subtle);
}
.vdp-dealer-name {
  font-family: 'Cinzel', serif;
  font-size: 16px; font-weight: 500; letter-spacing: 1.2px;
  color: var(--gold);
}
.vdp-dealer-blurb {
  font-family: 'Inter', sans-serif;
  font-size: 13px; line-height: 1.65;
  color: var(--text-dim);
  margin: 0 0 14px;
}
.vdp-dealer-perks {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  margin-bottom: 14px;
}
.vdp-dealer-perk {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text);
  opacity: 0.85;
}
.vdp-dealer-addr {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: var(--text-subtle);
  padding-top: 10px;
  border-top: 1px solid rgba(201,165,95,0.08);
}

/* ============================================================
   BOOKING FLOW — custom dark+gold calendar, time slots, form,
   consent, summary, success. Replaces the GHL iframe on cita.html.
   All selectors prefixed with .bk- to avoid collisions.
   ============================================================ */

.bk-wrap { max-width: 900px; margin: 0 auto; padding: 64px 24px 100px; }
.bk-shell {
  background: linear-gradient(180deg, rgba(201,165,95,0.06) 0%, rgba(201,165,95,0.0) 40%), var(--bg-2);
  border: 1px solid rgba(201,165,95,0.18);
  border-radius: 14px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,165,95,0.04);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.bk-shell::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(201,165,95,0.1), transparent 40%);
  pointer-events: none;
}

/* --- Stepper --- */
.bk-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  list-style: none; padding: 0; margin: 0 0 32px;
  position: relative;
}
.bk-step {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--text-subtle);
  transition: color 0.3s;
}
.bk-step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--text-subtle); color: var(--text-subtle);
  font-family: 'Cinzel', serif; font-size: 13px; font-weight: 600;
  transition: all 0.3s;
}
.bk-step-label { font-weight: 500; }
.bk-step.is-active { color: var(--gold); }
.bk-step.is-active .bk-step-n { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 16px rgba(201,165,95,0.35); }
.bk-step.is-done { color: var(--text); }
.bk-step.is-done .bk-step-n { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* --- Panels --- */
.bk-panel { display: none; animation: bkFade 0.35s ease; }
.bk-panel.is-open { display: block; }
@keyframes bkFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.bk-panel-head { margin-bottom: 24px; }
.bk-panel-head h2 {
  font-family: 'Cinzel', serif; font-size: 28px; font-weight: 500; letter-spacing: 1px;
  color: var(--text); margin: 0 0 8px;
}
.bk-panel-head p { font-family: 'Inter', sans-serif; color: var(--text-dim); font-size: 14px; margin: 0; line-height: 1.6; }

.bk-panel-foot {
  display: flex; justify-content: space-between; gap: 16px; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid rgba(201,165,95,0.1);
}
.bk-panel-foot:has(.bk-btn:only-child) { justify-content: flex-start; }

/* --- Buttons --- */
.bk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: 2px; cursor: pointer;
  font-family: 'Cinzel', serif; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid transparent; background: transparent; color: var(--text);
  transition: all 0.3s; text-decoration: none;
}
.bk-btn-primary { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.bk-btn-primary:hover:not(:disabled) { background: #D4B572; border-color: #D4B572; box-shadow: 0 0 24px rgba(201,165,95,0.35); }
.bk-btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.bk-btn-ghost { border-color: rgba(201,165,95,0.3); color: var(--text-dim); }
.bk-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.bk-submit-spinner {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(11,11,12,0.25); border-top-color: var(--bg);
  animation: bkSpin 0.7s linear infinite; display: none;
}
@keyframes bkSpin { to { transform: rotate(360deg); } }
.bk-btn.is-loading .bk-submit-label { opacity: 0.5; }
.bk-btn.is-loading .bk-submit-spinner { display: inline-block; }

/* --- Calendar --- */
.bk-cal {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,165,95,0.22);
  border-radius: 10px;
  padding: 24px;
}
.bk-cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,165,95,0.15);
}
.bk-cal-title {
  font-family: 'Cinzel', serif; font-size: 18px; font-weight: 500; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
}
.bk-cal-nav {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,165,95,0.08); border: 1px solid rgba(201,165,95,0.4);
  color: var(--gold); font-size: 20px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.bk-cal-nav:hover:not(:disabled) { background: rgba(201,165,95,0.2); border-color: var(--gold); box-shadow: 0 0 12px rgba(201,165,95,0.25); }
.bk-cal-nav:disabled { opacity: 0.25; cursor: not-allowed; }
.bk-cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  margin-bottom: 10px;
}
.bk-cal-weekdays span {
  text-align: center; padding: 10px 0;
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.bk-cal-day {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(201,165,95,0.12); border-radius: 8px;
  color: var(--text); cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
  transition: all 0.2s;
}
.bk-cal-day.is-empty { pointer-events: none; opacity: 0; background: transparent; border-color: transparent; }
.bk-cal-day.is-past { color: var(--text-subtle); opacity: 0.3; cursor: not-allowed; background: transparent; border-color: transparent; }
.bk-cal-day.is-unavailable { color: var(--text-subtle); opacity: 0.35; cursor: not-allowed; text-decoration: line-through; background: transparent; border-color: transparent; }
.bk-cal-day.is-available {
  background: rgba(201,165,95,0.06);
  border-color: rgba(201,165,95,0.25);
  color: var(--text);
}
.bk-cal-day.is-available:hover {
  background: rgba(201,165,95,0.22);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(201,165,95,0.2);
}
.bk-cal-day.is-today {
  border-color: var(--gold);
  border-width: 1.5px;
  font-weight: 700;
}
.bk-cal-day.is-today::after {
  content: ''; position: absolute;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); margin-top: 20px;
}
.bk-cal-day.is-selected {
  background: var(--gold) !important;
  color: var(--bg) !important;
  border-color: var(--gold) !important;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(201,165,95,0.5);
}
.bk-cal-day { position: relative; }
.bk-cal-loading { padding: 40px 0; text-align: center; color: var(--text-subtle); font-size: 13px; grid-column: 1 / -1; }

/* --- Time slots --- */
.bk-slots {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px;
  min-height: 60px;
}
.bk-slot {
  padding: 14px 12px; background: rgba(0,0,0,0.25);
  border: 1px solid rgba(201,165,95,0.15); border-radius: 6px;
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
  text-align: center;
}
.bk-slot:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,165,95,0.05); }
.bk-slot.is-selected { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.bk-slots-empty { grid-column: 1 / -1; padding: 24px; text-align: center; color: var(--text-subtle); font-size: 13px; }

/* --- Form --- */
.bk-form { display: grid; gap: 18px; }
.bk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bk-field { display: flex; flex-direction: column; gap: 8px; }
.bk-field > span {
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dim); font-weight: 500;
}
.bk-field > span em { color: var(--gold); font-style: normal; }
.bk-field input,
.bk-field select {
  padding: 12px 14px;
  background: rgba(0,0,0,0.3); border: 1px solid rgba(201,165,95,0.15); border-radius: 6px;
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.bk-field input:focus,
.bk-field select:focus {
  outline: none; border-color: var(--gold); background: rgba(201,165,95,0.04);
}
.bk-field input.is-invalid,
.bk-field select.is-invalid { border-color: #D94444; }

/* --- Summary --- */
.bk-summary {
  background: rgba(201,165,95,0.05);
  border: 1px solid rgba(201,165,95,0.18); border-radius: 8px;
  padding: 20px 22px;
  margin-bottom: 28px;
}
.bk-summary dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 8px 18px; }
.bk-summary dt { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); align-self: center; }
.bk-summary dd { margin: 0; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text); font-weight: 500; }
.bk-summary-when { color: var(--gold) !important; font-weight: 600 !important; }

/* --- Consent block --- */
.bk-consent {
  background: rgba(0,0,0,0.3); border: 1px solid rgba(201,165,95,0.12);
  border-radius: 8px; padding: 24px; margin-bottom: 8px;
}
.bk-consent-title {
  font-family: 'Cinzel', serif; font-size: 14px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px;
}
.bk-check {
  display: grid; grid-template-columns: auto 1fr; gap: 12px;
  padding: 14px 0; cursor: pointer;
  border-bottom: 1px solid rgba(201,165,95,0.08);
}
.bk-check:last-of-type { border-bottom: none; }
.bk-check input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; margin-top: 1px;
  background: rgba(0,0,0,0.4); border: 1.5px solid rgba(201,165,95,0.4); border-radius: 3px;
  cursor: pointer; transition: all 0.2s; position: relative; flex-shrink: 0;
}
.bk-check input[type="checkbox"]:checked {
  background: var(--gold); border-color: var(--gold);
}
.bk-check input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 6px; top: 2px;
  width: 5px; height: 10px; border: solid var(--bg);
  border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.bk-check span {
  font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.6; color: var(--text-dim);
}
.bk-check span strong { color: var(--text); font-weight: 500; }
.bk-check span a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201,165,95,0.4); }
.bk-check span a:hover { text-decoration-color: var(--gold); }
.bk-check-required span strong { color: var(--gold); }

.bk-consent-footnote {
  margin: 18px 0 0; padding: 14px; background: rgba(201,165,95,0.05); border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 12px; line-height: 1.6; color: var(--text-dim);
}
.bk-consent-footnote strong { color: var(--text); font-weight: 500; }

.bk-error {
  margin-top: 16px; padding: 14px 16px;
  background: rgba(217,68,68,0.1); border: 1px solid rgba(217,68,68,0.35); border-radius: 6px;
  color: #F5A9A9; font-family: 'Inter', sans-serif; font-size: 13px;
}

/* --- Success --- */
.bk-panel-success { text-align: center; padding: 40px 0 20px; }
.bk-success-icon { color: var(--gold); margin-bottom: 24px; }
.bk-panel-success h2 {
  font-family: 'Cinzel', serif; font-size: 32px; font-weight: 500; letter-spacing: 1px;
  color: var(--gold); margin: 0 0 12px;
}
.bk-panel-success p { font-family: 'Inter', sans-serif; color: var(--text-dim); max-width: 460px; margin: 0 auto 12px; line-height: 1.7; }
.bk-success-sub { font-size: 13px; color: var(--text-subtle) !important; margin-bottom: 32px !important; }
.bk-panel-success a.bk-btn { margin-top: 8px; }

/* --- Footer note --- */
.bk-footer-note {
  text-align: center; margin-top: 32px; font-family: 'Inter', sans-serif;
  font-size: 12px; color: var(--text-subtle); line-height: 1.8;
}
.bk-footer-note a { color: var(--gold); border-bottom: 1px solid rgba(201,165,95,0.3); }
.bk-footer-note a:hover { border-bottom-color: var(--gold); }

/* --- Mobile --- */
@media (max-width: 640px) {
  .bk-wrap { padding: 32px 12px 80px; }
  .bk-shell { padding: 24px 18px; border-radius: 10px; }
  .bk-steps { gap: 4px; }
  .bk-step { font-size: 10px; letter-spacing: 0.3px; gap: 6px; }
  .bk-step-n { width: 24px; height: 24px; font-size: 11px; }
  .bk-step-label { display: none; }
  .bk-step.is-active .bk-step-label { display: inline; }
  .bk-panel-head h2 { font-size: 22px; }
  .bk-row { grid-template-columns: 1fr; gap: 18px; }
  .bk-panel-foot { flex-direction: column-reverse; gap: 10px; }
  .bk-panel-foot .bk-btn { width: 100%; }
  .bk-summary dl { grid-template-columns: 1fr; gap: 4px 0; }
  .bk-summary dt { margin-top: 10px; }
  .bk-summary dt:first-child { margin-top: 0; }
  .bk-slots { grid-template-columns: repeat(2, 1fr); }
  .bk-cal { padding: 14px; }
  .bk-cal-weekdays span { font-size: 9px; padding: 6px 0; }
  .bk-cal-day { font-size: 13px; }
}
