:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EAE0;
  --fg: #1A1108;
  --fg-muted: #6B5B45;
  --accent: #C9A96E;
  --accent-dark: #A8844A;
  --card-bg: #FFFFFF;
  --border: rgba(26, 17, 8, 0.12);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
.overline {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 4rem;
  position: relative;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {}

.hero-overline {
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 600;
  line-height: 0.92;
  color: var(--fg);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent-dark);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 380px;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: 0 2px 20px rgba(26, 17, 8, 0.06);
}

.hero-card-1 { border-left: 3px solid var(--accent); }
.hero-card-2 { border-left: 3px solid #8B6FCF; }
.hero-card-3 { border-left: 3px solid #5BAF92; }

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  font-weight: 500;
}

.card-detail {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
}

/* Promise */
.promise {
  padding: 6rem 2.5rem;
  background: var(--bg-alt);
}

.promise-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.promise-item {}

.promise-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.promise-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.promise-item p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* What's Included */
.whatsincluded {
  padding: 6rem 2.5rem;
}

.wi-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.wi-header {
  margin-bottom: 3.5rem;
}

.wi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.wi-block {}

.wi-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}

.wi-block h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.wi-block p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Destinations */
.destinations {
  padding: 6rem 2.5rem;
  background: var(--fg);
  color: var(--bg);
}

.dest-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.destinations .section-title {
  color: var(--bg);
}

.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.dest-card {
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: 20px;
  padding: 2.5rem;
}

.dest-city {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

.dest-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 1.5rem;
}

.dest-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dest-list li {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.65);
  padding-left: 1.25rem;
  position: relative;
}

.dest-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* Manifesto */
.manifesto {
  padding: 7rem 2.5rem;
  background: var(--bg-alt);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 3rem;
}

.manifesto-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

/* Closing */
.closing {
  padding: 8rem 2.5rem;
  text-align: center;
  background: var(--bg);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* Footer */
.footer {
  padding: 3rem 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { flex-direction: row; overflow-x: auto; padding-bottom: 1rem; }
  .hero-card { min-width: 220px; }
  .promise-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .wi-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .nav { padding: 1rem 1.5rem; }
  .promise, .whatsincluded, .destinations, .manifesto, .closing { padding: 4rem 1.5rem; }
  .wi-grid { grid-template-columns: 1fr; }
}