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

:root {
  --bg: #0f1116;
  --bg-2: #171b24;
  --ink: #f5f1e8;
  --muted: #c6bfaf;
  --accent: #d3b27b;
  --accent-2: #7d8aa3;
  --line: rgba(255, 255, 255, 0.14);
  --radius: 20px;
  --shadow: 0 30px 70px rgba(5, 7, 12, 0.55);
  --font-display: "Garamond", "Times New Roman", serif;
  --font-body: "Avenir Next", "Avenir", "Helvetica Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(800px circle at 12% -10%, rgba(211, 178, 123, 0.2), transparent 55%),
    radial-gradient(700px circle at 90% 5%, rgba(124, 146, 180, 0.18), transparent 50%),
    linear-gradient(180deg, #1b1f28, #0f1116 55%, #0c0e13);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  margin-bottom: 2rem;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.8rem;
}

.section-title p {
  color: var(--muted);
  max-width: 640px;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(14, 16, 22, 0.85);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.btn {
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn.primary {
  background: var(--accent);
  color: #111117;
  box-shadow: 0 18px 40px rgba(211, 178, 123, 0.25);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3.7vw, 3.8rem);
  margin-bottom: 1.2rem;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-meta span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.hero-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(20, 24, 33, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.dossier-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dossier-card {
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.dossier-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

.timeline {
  display: grid;
  gap: 1.4rem;
  position: relative;
  padding-left: 1.2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.fleet-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.fleet-card {
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.fleet-card h3 {
  font-family: var(--font-display);
  margin-bottom: 0.6rem;
}

.pricing-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.price-card {
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.price-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.price-value {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
}

.trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-card {
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.lead {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(15, 18, 26, 0.85);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

input,
textarea {
  background: rgba(8, 10, 16, 0.8);
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.8rem 0.9rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-success {
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(211, 178, 123, 0.4);
  background: rgba(211, 178, 123, 0.1);
}

.price-error {
  padding: 1rem;
  border-radius: 12px;
  border: 1px dashed var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.booking {
  background: linear-gradient(120deg, rgba(211, 178, 123, 0.08), rgba(124, 146, 180, 0.08)), #0c0e13;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.booking-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0.4rem 0 1rem;
}

.booking-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.booking-bullets li {
  padding: 0.35rem 0;
  color: var(--muted);
}

.booking-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.booking-panel .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.booking-panel label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-weight: 600;
}

.booking-panel input,
.booking-panel textarea {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.booking-panel textarea {
  min-height: 80px;
}

.radio-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.radio-row label {
  font-weight: 700;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}

.quote-results {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.quote-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem;
  background: rgba(211, 178, 123, 0.06);
}

.quote-card.is-selected {
  outline: 2px solid var(--accent);
  background: rgba(211, 178, 123, 0.12);
}

.quote-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.quote-price span {
  color: var(--muted);
  margin-left: 0.35rem;
}

.quote-meta,
.quote-notes {
  color: var(--muted);
  margin: 0.2rem 0;
  font-size: 0.95rem;
}

.quote-card .btn.select {
  margin-top: 0.4rem;
  width: 100%;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.booking-status {
  margin: 0.8rem 0;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px dashed var(--line);
}

.booking-status[data-tone="ok"] {
  border-color: rgba(103, 193, 127, 0.4);
  color: #9be4b5;
}

.booking-status[data-tone="error"] {
  border-color: rgba(255, 132, 132, 0.4);
  color: #ffb4b4;
}

.payment-options .btn.pay {
  width: 100%;
  margin-bottom: 0.5rem;
}

.hidden {
  display: none !important;
}

footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero,
  .lead {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }
}
