/* ════════════════════════════════════════════════════════════════════════
   EXCLSIVE DETAILING — automotive press-kit aesthetic
   Deep warm black · brass accents · Fraunces editorial display
   ════════════════════════════════════════════════════════════════════════ */

:root {
  --bg:           #0a0908;
  --bg-2:         #100e0c;
  --surface:      #15120f;
  --surface-2:    #1d1915;
  --surface-3:    #29231d;
  --ink:          #f5efe4;
  --ink-2:        #bcb2a3;
  --ink-3:        #7a7368;
  --ink-faint:    #4a443e;
  --brass:        #c9a875;
  --brass-2:      #d6b785;
  --brass-3:      #8a7250;
  --brass-glow:   rgba(201, 168, 117, 0.18);
  --rule:         rgba(245, 239, 228, 0.08);
  --rule-strong:  rgba(245, 239, 228, 0.18);
  --danger:       #d96450;

  --display:  "Fraunces", "Times New Roman", serif;
  --mono:     "Geist Mono", ui-monospace, "JetBrains Mono", monospace;
  --sans:     "Geist", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw:     1240px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at top, rgba(201, 168, 117, 0.06), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(60, 30, 10, 0.18), transparent 65%);
  background-attachment: fixed;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96  0 0 0 0 0.94  0 0 0 0 0.89  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.55) 100%);
}

::selection { background: var(--brass); color: var(--bg); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--brass-3); }

/* ── Top bar ───────────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--rule);
  animation: fade-down 0.7s var(--ease-out) both;
}

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

.brand-mark {
  color: var(--brass);
  font-size: 18px;
  text-shadow: 0 0 18px var(--brass-glow);
}

.brand-stack { display: flex; flex-direction: column; line-height: 1; }

.brand-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 0;
}

.brand-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 3px;
}

.topbar-right { display: flex; align-items: center; gap: 28px; }

.topbar-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
}

.topbar-admin {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.topbar-admin:hover { color: var(--brass); border-color: var(--brass); }

@media (max-width: 720px) { .topbar-meta { display: none; } }

/* ── Page container ────────────────────────────────────────────────── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 96px) clamp(20px, 4vw, 56px) 80px;
  position: relative;
}

/* ── Section numbering ─────────────────────────────────────────────── */
.section-num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
  position: relative;
  padding-left: 22px;
}
.section-num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--brass);
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(60px, 10vw, 140px) 0 clamp(70px, 8vw, 110px);
  border-bottom: 1px solid var(--rule);
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(56px, 12vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 12px 0 0;
}

.hero-line { display: block; animation: fade-up 0.95s var(--ease-out) both; }
.hero-line:nth-of-type(1) { animation-delay: 0.05s; }
.hero-line:nth-of-type(2) { animation-delay: 0.18s; }
.hero-line:nth-of-type(3) { animation-delay: 0.32s; padding-left: 1.4em; }

.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 350;
}

.hero-meta-row {
  margin-top: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  animation: fade-up 1s var(--ease-out) 0.5s both;
}

.hero-lead {
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  font-weight: 400;
  font-variation-settings: "opsz" 30;
  max-width: 36em;
}

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-num small {
  font-family: var(--mono);
  font-size: 0.36em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-left: 2px;
  vertical-align: top;
  position: relative;
  top: 0.2em;
}
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 760px) {
  .hero-meta-row { grid-template-columns: 1fr; }
  .hero-line:nth-of-type(3) { padding-left: 0; }
}

/* ── Section header ────────────────────────────────────────────────── */
.section-header { margin: clamp(70px, 10vw, 120px) 0 clamp(36px, 4vw, 56px); }

.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 8px 0 0;
  max-width: 18ch;
}
.section-title em {
  font-style: italic;
  font-weight: 350;
  color: var(--brass);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 360;
}

.section-lead {
  margin-top: 18px;
  font-family: var(--display);
  font-size: 17px;
  font-variation-settings: "opsz" 30;
  color: var(--ink-2);
  max-width: 52ch;
}

/* ── Mode toggle ───────────────────────────────────────────────────── */
.mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 44px;
}

.mode-btn {
  position: relative;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--rule);
  color: var(--ink-3);
  text-align: left;
  padding: 22px 26px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
  letter-spacing: -0.01em;
}
.mode-btn:last-child { border-right: 0; }
.mode-btn:hover { color: var(--ink); background: rgba(245, 239, 228, 0.02); }

.mode-btn.active {
  color: var(--ink);
  background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 117, 0.05) 100%);
}
.mode-btn.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--brass);
  box-shadow: 0 0 14px var(--brass-glow);
}

.mode-mark {
  color: var(--brass);
  font-size: 12px;
  flex-shrink: 0;
  transform: translateY(-1px);
}
.mode-text { flex: 1; }
.mode-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-style: normal;
}

@media (max-width: 600px) {
  .mode-btn { flex-direction: column; align-items: flex-start; gap: 6px; padding: 18px 20px; font-size: 18px; }
}

/* ── Configurator ──────────────────────────────────────────────────── */
.configurator { animation: fade-up 0.6s var(--ease-out) both; }
.configurator.hidden { display: none; }

.config-step { margin-bottom: 44px; }

.step-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.optional {
  color: var(--ink-faint);
  text-transform: none;
  letter-spacing: 0.05em;
  font-style: italic;
  font-family: var(--display);
}

/* ── Vehicle grid ──────────────────────────────────────────────────── */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.vehicle-card {
  background: var(--bg);
  border: 0;
  padding: 28px 22px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-2);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  position: relative;
  min-height: 130px;
}
.vehicle-card:hover { background: var(--surface); color: var(--ink); }

.vehicle-icon {
  font-family: var(--display);
  font-size: 26px;
  color: var(--brass-3);
  margin-bottom: 6px;
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
}
.vehicle-card:hover .vehicle-icon { color: var(--brass); }

.vehicle-name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.vehicle-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.vehicle-card.selected {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  color: var(--ink);
  outline: 1px solid var(--brass);
  outline-offset: -1px;
  z-index: 1;
}
.vehicle-card.selected .vehicle-icon {
  color: var(--brass);
  text-shadow: 0 0 18px var(--brass-glow);
}
.vehicle-card.selected::before {
  content: "✦";
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--brass);
  font-size: 11px;
}

@media (max-width: 820px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Package grid ──────────────────────────────────────────────────── */
.package-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.package-grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .package-grid.three { grid-template-columns: 1fr; } }

.package-tag.tag-gold {
  color: var(--bg);
  background: var(--brass);
  border-color: var(--brass);
}

.package-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 36px 32px 32px;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
  overflow: hidden;
}
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--brass-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.package-card:hover { border-color: var(--rule-strong); transform: translateY(-2px); }
.package-card:hover::before { opacity: 0.4; }

.package-mark {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  color: var(--ink-faint);
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  transition: color 0.3s var(--ease);
}

.package-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.package-name {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}

.package-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid var(--brass-3);
  padding: 3px 8px;
}

.package-time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 22px;
}

.package-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.package-features li {
  font-family: var(--display);
  font-size: 16px;
  font-variation-settings: "opsz" 30;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.package-features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brass-3);
}

.package-card.selected {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 70%);
  border-color: var(--brass);
}
.package-card.selected::before { opacity: 0.7; }
.package-card.selected .package-mark { color: var(--brass); text-shadow: 0 0 24px var(--brass-glow); }
.package-card.selected::after {
  content: "✦ SELECTED";
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--brass);
}

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

/* ── Refine disclosure ─────────────────────────────────────────────── */
.refine-details {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 32px 0 28px;
}

.refine-summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  cursor: pointer;
  user-select: none;
}
.refine-summary::-webkit-details-marker { display: none; }

.refine-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 3px 8px;
  border: 1px solid var(--brass-3);
}

.refine-text {
  flex: 1;
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-2);
  font-variation-settings: "opsz" 30, "SOFT" 100, "wght" 400;
}

.refine-chev {
  font-family: var(--display);
  font-size: 28px;
  color: var(--ink-3);
  transition: transform 0.4s var(--ease);
  line-height: 1;
}
.refine-details[open] .refine-chev { transform: rotate(45deg); color: var(--brass); }

.refine-body { padding: 14px 0 28px; animation: fade-up 0.5s var(--ease-out); }

/* ── Pills ─────────────────────────────────────────────────────────── */
.pill-group { display: flex; flex-wrap: wrap; gap: 8px; }

.pill {
  background: transparent;
  border: 1px solid var(--rule-strong);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pill:hover { border-color: var(--brass-3); color: var(--ink); }
.pill.selected { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pill.selected .pill-fee { color: var(--brass-3); }
.pill-fee { color: var(--ink-3); font-weight: 500; }

/* ── Chips (add-ons) ───────────────────────────────────────────────── */
.addon-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.chip {
  background: var(--surface);
  border: 1px solid var(--rule);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 14px;
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: all 0.25s var(--ease);
  text-align: left;
}
.chip:hover { border-color: var(--rule-strong); color: var(--ink); }

.chip-name { font-weight: 500; }

.chip-fee {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brass);
}

.chip.selected {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-color: var(--brass);
  color: var(--ink);
}
.chip.selected::after {
  content: "✦";
  margin-left: 6px;
  color: var(--brass);
}

/* ── Live estimate ─────────────────────────────────────────────────── */
.live-estimate {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  border-top: 1px solid var(--rule-strong);
  padding-top: 28px;
  margin-top: 36px;
}

.live-left { display: flex; flex-direction: column; gap: 4px; }

.live-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.live-total {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--brass);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  text-shadow: 0 0 36px var(--brass-glow);
}

.live-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-3);
  text-align: right;
  max-width: 28ch;
  font-variation-settings: "opsz" 30, "SOFT" 100, "wght" 380;
}

@media (max-width: 600px) {
  .live-estimate { flex-direction: column; align-items: flex-start; }
  .live-note { text-align: left; }
}

/* ── AI helper text ────────────────────────────────────────────────── */
.ai-helper {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  font-variation-settings: "opsz" 30, "SOFT" 100, "wght" 400;
  color: var(--ink-2);
  margin-bottom: 36px;
  max-width: 60ch;
  padding-left: 18px;
  border-left: 2px solid var(--brass);
}

/* ── CTA buttons ───────────────────────────────────────────────────── */
.cta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: var(--brass);
  color: var(--bg);
  border: 0;
  padding: 20px 32px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
}
.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.cta-btn:hover {
  background: var(--brass-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--brass-glow);
}
.cta-btn:hover::before { transform: translateX(100%); }
.cta-btn:active { transform: translateY(0); }

.cta-arrow {
  font-size: 14px;
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.cta-btn:hover .cta-arrow { transform: translateX(4px); }

.cta-btn.loading { background: var(--brass-3); cursor: wait; pointer-events: none; }
.cta-btn.loading::after {
  content: "";
  width: 14px; height: 14px;
  border: 2px solid var(--bg);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 10px;
}

.ai-cta { margin-top: 16px; padding: 22px 36px; }
.book-cta { margin-top: 24px; width: 100%; padding: 22px 36px; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Quote result ──────────────────────────────────────────────────── */
.quote-result { animation: fade-up 0.7s var(--ease-out); }
.quote-result.hidden { display: none; }

.quote-card {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--rule-strong);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}

.quote-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.quote-source {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 5px 10px;
  border: 1px solid var(--brass-3);
}

.quote-package { text-align: right; }
.quote-package-name {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  text-transform: capitalize;
}
.quote-duration {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}

.quote-explanation {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  font-variation-settings: "opsz" 30, "SOFT" 100, "wght" 400;
  color: var(--ink-2);
  padding: 18px 22px;
  background: rgba(201, 168, 117, 0.05);
  border-left: 2px solid var(--brass);
  margin-bottom: 28px;
}
.quote-explanation.hidden { display: none; }

.quote-lines { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }

.line-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-2);
}
.line-item:last-child { border-bottom: 0; }

.line-item strong {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.quote-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 28px;
  border-top: 2px solid var(--brass);
}

.total-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.total-amount {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--brass);
  font-variation-settings: "opsz" 144, "SOFT" 60;
  line-height: 1;
  text-shadow: 0 0 32px var(--brass-glow);
}

/* ── Booking ───────────────────────────────────────────────────────── */
.booking-section { scroll-margin-top: 80px; }

.booking-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding: 28px clamp(20px, 3vw, 36px);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--brass-3);
  border-left: 2px solid var(--brass);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.booking-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--brass-glow), transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}

.summary-left { display: flex; flex-direction: column; gap: 6px; position: relative; z-index: 1; }

.summary-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.summary-pkg {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  margin: 2px 0;
}

.summary-tier { color: var(--ink); }
.summary-vehicle { color: var(--ink-2); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400; }
.summary-dot { color: var(--ink-faint); font-size: 0.7em; }

.summary-addons {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 0;
  padding: 0;
}
.summary-addons li {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid var(--brass-3);
  padding: 3px 8px;
}
.summary-addons:empty { display: none; }

.summary-edit {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.summary-edit a {
  color: var(--ink-3);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 1px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.summary-edit a:hover { color: var(--brass); border-color: var(--brass); }

.summary-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.summary-total-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.summary-total {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--brass);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 1;
  text-shadow: 0 0 28px var(--brass-glow);
}

@media (max-width: 600px) {
  .booking-summary { grid-template-columns: 1fr; }
  .summary-right { align-items: flex-start; }
}


.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  padding: 1px;
}

.field {
  background: var(--bg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.25s var(--ease);
}
.field:hover { background: var(--surface); }
.field.wide { grid-column: 1 / -1; }

.field > span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field > span em {
  text-transform: none;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  font-family: var(--display);
  font-style: italic;
  font-size: 11px;
}

.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  color: var(--ink);
  font-family: var(--display);
  font-size: 19px;
  font-variation-settings: "opsz" 30, "SOFT" 30;
  padding: 6px 0 10px;
  outline: none;
  width: 100%;
  transition: border-color 0.25s var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--brass); }

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23c9a875' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 22px;
  cursor: pointer;
}
.field select option {
  background: var(--bg-2);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
}

.submit-cta {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px 36px;
  font-size: 13px;
  border-radius: 0;
}

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

/* ── Toast ─────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-2);
  border: 1px solid var(--brass);
  color: var(--ink);
  padding: 14px 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 200;
  box-shadow: 0 12px 48px rgba(0,0,0,0.4), 0 0 32px var(--brass-glow);
  animation: toast-in 0.5s var(--ease-out);
  max-width: 90vw;
}
.toast.hidden { display: none; }
.toast.error { border-color: var(--danger); }
.toast.success { border-color: var(--brass); }

@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ── Footer ────────────────────────────────────────────────────────── */
.site-footer {
  margin-top: clamp(80px, 12vw, 160px);
  padding: 36px 0 12px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }

.footer-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  font-variation-settings: "opsz" 30, "SOFT" 100, "wght" 400;
}

.footer-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-meta .dot { color: var(--ink-faint); }

/* ── Keyframes ─────────────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hidden { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
