:root {
  --bg: #0b0c0f;
  --bg-soft: #14161b;
  --panel: rgba(255,255,255,0.04);
  --panel-strong: rgba(255,255,255,0.08);
  --line: rgba(255,255,255,0.12);
  --text: #f2ebdd;
  --muted: #b9b1a3;
  --accent: #b28a52;
  --accent-soft: #d4b27c;
  --max: 1200px;
  --shadow: 0 30px 80px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(178,138,82,0.14), transparent 30%),
    linear-gradient(180deg, #0b0c0f 0%, #0f1115 45%, #0b0c0f 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, .btn {
  appearance: none;
  border: 1px solid rgba(178,138,82,0.45);
  color: var(--text);
  background: linear-gradient(180deg, rgba(178,138,82,0.18), rgba(178,138,82,0.08));
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
}
button:hover, .btn:hover {
  transform: translateY(-1px);
  border-color: rgba(212,178,124,0.7);
  background: linear-gradient(180deg, rgba(178,138,82,0.28), rgba(178,138,82,0.12));
}
.btn.secondary {
  background: transparent;
  border-color: var(--line);
}
.page-shell { overflow-x: hidden; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(11,12,15,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.brand-kicker {
  color: var(--accent-soft);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero {
  padding: 5rem 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy {
  padding-right: 2rem;
}
.eyebrow {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.74rem;
  margin-bottom: 1rem;
}
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.1rem, 6.2vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 42rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.stat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1rem 1.15rem;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
}
.stat-value {
  margin-top: 0.3rem;
  color: var(--text);
  font-size: 0.96rem;
}
.hero-media {
  position: relative;
}
.hero-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 620px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.45));
}
.floating-card {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: rgba(11,12,15,0.85);
  border: 1px solid rgba(178,138,82,0.25);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  max-width: 260px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.floating-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.floating-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 5rem 0;
}
.section.compact { padding: 3.5rem 0; }
.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section-header h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1;
  margin: 0 0 0.75rem;
}
.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
}
.card, .panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.4rem;
}
.card h3, .panel h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
}
.card p, .panel p, .panel li, .card li {
  color: var(--muted);
}
.card ul, .panel ul { padding-left: 1.15rem; margin: 0.5rem 0 0; }

.image-panel {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.image-panel img { width: 100%; height: 100%; object-fit: cover; }

.split-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.quote-band {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(178,138,82,0.14), rgba(255,255,255,0.03));
  border: 1px solid rgba(178,138,82,0.2);
}
.quote-band p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.4rem;
}
.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(178,138,82,0.45);
  color: var(--accent-soft);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.destinations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
}
.destination-card {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.75));
}
.destination-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  z-index: 1;
}
.destination-copy h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  margin: 0 0 0.35rem;
}
.destination-copy p { margin: 0; color: #ddd2c0; }

.checklist {
  display: grid;
  gap: 0.9rem;
}
.check {
  display: flex;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.check-mark {
  color: var(--accent-soft);
  font-size: 1.05rem;
  line-height: 1.2;
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 1.5rem;
}
label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
}
input, select, textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
}
input::placeholder, textarea::placeholder { color: #908878; }
textarea { min-height: 150px; resize: vertical; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.form-actions { margin-top: 1rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.form-note, .tiny { color: var(--muted); font-size: 0.92rem; }
.success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(178,138,82,0.28);
  background: rgba(178,138,82,0.09);
}
.success.show { display: block; }

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--muted);
}
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  padding: 4.5rem 0 2rem;
}
.page-hero .display { font-size: clamp(2.8rem, 5vw, 5rem); }
.band {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero-grid, .grid-3, .cards, .destinations, .timeline, .form-wrap, .split-copy { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .destinations { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav { flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; overflow-x: auto; padding-bottom: 0.25rem; }
  .hero-grid, .grid-2, .grid-3, .timeline, .form-wrap, .split-copy, .cards, .destinations { grid-template-columns: 1fr; }
  .hero-copy { padding-right: 0; }
  .hero-frame { min-height: 460px; }
  .floating-card { left: 1rem; right: 1rem; max-width: none; }
  .stat-row, .form-grid { grid-template-columns: 1fr; }
}
