:root {
  color-scheme: light;
  --bg: #0a0a0b;
  --bg-alt: #0f0f12;
  --card: #141417;
  --text: #f5f1e6;
  --muted: #c2bba8;
  --primary: #d7b36a;
  --primary-dark: #b89043;
  --accent: #f1d48a;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

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

body {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.hero {
  padding: 32px 8vw 80px;
  background: radial-gradient(circle at top, #1c1a14, #0a0a0b 70%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}


.eyebrow {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.tagline {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

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

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.section {
  padding: 72px 8vw;
}

.section.alt {
  background: var(--bg-alt);
}

.section-header {
  max-width: 700px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--muted);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
}

.card p,
.card li {
  color: var(--muted);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.checklist li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 10px;
}

.pricing .card ul {
  margin: 16px 0 24px;
  padding-left: 18px;
}

.pricing .card li {
  margin-bottom: 8px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.comparison ul {
  margin-top: 12px;
  padding-left: 18px;
}

.comparison li {
  margin-bottom: 8px;
  color: var(--muted);
}

.market-cards iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 12px;
  margin: 14px 0 10px;
  background: #0a0a0b;
}

.link {
  color: var(--accent);
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chips span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0 4px;
}

.featured {
  border: 1px solid rgba(215, 179, 106, 0.45);
  background: linear-gradient(145deg, #19170f, #141417);
}

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

.step {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.step-number {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.quote {
  font-style: italic;
  color: var(--text);
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
  background: var(--card);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 8px;
}

.booking .card {
  text-align: center;
}

.center {
  text-align: center;
  margin-top: 24px;
}

.muted {
  color: var(--muted);
}

.footer {
  padding: 36px 8vw 50px;
  border-top: 1px solid var(--border);
  background: #0a0a0b;
}

.disclaimer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }

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

  .hero-visual {
    position: static;
    width: 100%;
    margin-top: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
