* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f2ea;
  --bg-soft: #efe7db;
  --panel: #191512;
  --panel-soft: #241d18;
  --text: #1c1713;
  --muted: #6a5b4f;
  --line: rgba(28, 23, 19, 0.10);
  --gold: #a98552;
  --gold-soft: rgba(169, 133, 82, 0.14);
  --white: #fffdf9;
  --shadow: 0 24px 60px rgba(17, 13, 10, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.soft-bg {
  background: var(--bg-soft);
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 440px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(245, 240, 232, 0.86);
  border-bottom: 1px solid rgba(31, 26, 22, 0.06);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(184, 148, 99, 0.45);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--gold);
}

.brand-text {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(184, 148, 99, 0.35);
  background: rgba(255, 253, 250, 0.65);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 24px 20px;
  border-top: 1px solid rgba(31, 26, 22, 0.08);
}

.mobile-nav.open {
  display: flex;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(24,19,15,0.66), rgba(24,19,15,0.18)),
    radial-gradient(circle at top right, rgba(184,148,99,0.20), transparent 30%),
    url('https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,14,11,0.6), rgba(18,14,11,0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero .eyebrow,
.hero p,
.hero a {
  color: var(--white);
}

.hero-copy {
  max-width: 620px;
  font-size: 1.1rem;
  margin-top: 26px;
  color: rgba(255,253,250,0.84);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-secondary {
  border: 1px solid rgba(255,253,250,0.28);
  background: rgba(255,253,250,0.08);
  color: var(--white);
}

.section-lead {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.18;
  color: var(--text);
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.body-copy p {
  font-size: 1.03rem;
}

.feature-grid,
.journey-grid,
.journal-grid,
.destination-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.feature-card,
.journey-card,
.journal-card,
.inquiry-form {
  background: rgba(255,253,250,0.7);
  border: 1px solid rgba(31, 26, 22, 0.08);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 28px;
}

.feature-card h3 {
  font-size: 1.55rem;
}

.journey-grid {
  grid-template-columns: repeat(3, 1fr);
}

.journey-card {
  padding: 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(to top, rgba(31,26,22,0.82), rgba(31,26,22,0.18)),
    linear-gradient(140deg, rgba(184,148,99,0.14), transparent 50%),
    #2b231d;
  color: var(--white);
  border: 1px solid rgba(184, 148, 99, 0.15);
}

.journey-card p,
.journey-card h3 {
  color: var(--white);
}

.journey-tag {
  display: inline-flex;
  margin-bottom: auto;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,253,250,0.7);
}

.dark-panel {
  background: linear-gradient(180deg, #241d18, #1a1511);
  color: var(--white);
}

.dark-panel p,
.dark-panel h2 {
  color: var(--white);
}

.destination-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.destination-item {
  min-height: 180px;
  border: 1px solid rgba(255,253,250,0.08);
  background:
    linear-gradient(to top, rgba(17,13,10,0.65), rgba(17,13,10,0.08)),
    linear-gradient(135deg, rgba(184,148,99,0.20), transparent 55%),
    #352c25;
  display: flex;
  align-items: end;
  padding: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.testimonial-wrap blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.12;
  text-align: center;
  color: var(--text);
  margin: 0;
}

.journal-grid {
  grid-template-columns: repeat(4, 1fr);
}

.journal-card {
  padding: 28px;
}

.journal-meta {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.journal-card h3 {
  font-size: 1.6rem;
}

.inquiry-section {
  background:
    linear-gradient(120deg, rgba(239,230,216,0.98), rgba(245,240,232,0.94)),
    radial-gradient(circle at bottom left, rgba(184,148,99,0.12), transparent 32%);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.inquiry-copy h2 {
  margin-bottom: 20px;
}

.inquiry-points {
  padding-left: 18px;
  color: var(--muted);
}

.inquiry-form {
  padding: 28px;
  border-radius: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text);
  font-size: 0.94rem;
}

label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 26, 22, 0.12);
  background: rgba(255,253,250,0.95);
  border-radius: 14px;
  min-height: 52px;
  padding: 0 16px;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.btn-full {
  width: 100%;
  margin-top: 20px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
}

.site-footer {
  background: #18130f;
  color: rgba(255,253,250,0.8);
  padding: 28px 0;
  border-top: 1px solid rgba(255,253,250,0.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-brand {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-copy {
  margin: 0;
  color: rgba(255,253,250,0.65);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .feature-grid,
  .journal-grid,
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 78px 0;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .feature-grid,
  .journey-grid,
  .journal-grid,
  .destination-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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