:root {
  --color-bg: #F7F1E6;
  --color-bg-alt: #EFE5D2;
  --color-text: #2A2620;
  --color-text-soft: #5B5347;
  --color-accent: #C1592B;
  --color-accent-dark: #9C4622;
  --color-green: #3E4A34;
  --color-green-light: #4E5D42;
  --color-gold: #C9A227;
  --color-cream-on-dark: #F1ECE0;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.4em;
}

h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 600; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin: 0 0 0.9em;
}

.eyebrow-light { color: var(--color-gold); }

.lede {
  max-width: 62ch;
  font-size: 1.05rem;
  color: var(--color-text-soft);
}

.lede-light { color: #D8D2C4; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(42, 38, 32, 0.08);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
}

.brand-mark { border-radius: 6px; }

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover { color: var(--color-accent-dark); }

.nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--color-accent-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 26, 20, 0.35) 0%, rgba(30, 26, 20, 0.65) 100%),
    linear-gradient(135deg, #6B4A2F 0%, #C1592B 45%, #E7A24B 100%);
  background-image:
    linear-gradient(180deg, rgba(30, 26, 20, 0.35) 0%, rgba(30, 26, 20, 0.65) 100%),
    url("../assets/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content { position: relative; z-index: 1; padding: 40px 24px; }

.hero .eyebrow { color: var(--color-gold); }

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  margin-bottom: 0.2em;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 46ch;
  color: #EFE8DA;
  margin-bottom: 1.8em;
}

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
}

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

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn-large { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Sections ---------- */

.section { padding: 96px 0; }

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

.section-dark {
  background: var(--color-green);
  color: var(--color-cream-on-dark);
}

.section-dark h2 { color: #fff; }

.contact-wrap { text-align: center; }
.contact-wrap .lede { margin: 0 auto 2em; }

/* ---------- Value grid (Over ons) ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3em;
}

.value-item h3 { color: var(--color-accent-dark); }
.value-item p { color: var(--color-text-soft); margin: 0; }

/* ---------- Trip section ---------- */

.facts-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(42, 38, 32, 0.1);
  border: 1px solid rgba(42, 38, 32, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin: 2.5em 0 0.6em;
}

.fact {
  background: var(--color-bg);
  padding: 20px 16px;
  text-align: center;
}

.fact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-soft);
  margin-bottom: 6px;
}

.fact-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
}

.fine-print {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  margin: 0 0 2.5em;
}

.feature-img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(135deg, #6B4A2F 0%, #C1592B 45%, #E7A24B 100%);
  margin-bottom: 3em;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 3.5em;
}

.highlight-card {
  background: var(--color-bg);
  border: 1px solid rgba(42, 38, 32, 0.08);
  border-radius: 14px;
  padding: 24px;
}

.highlight-card h3 { margin-bottom: 0.4em; }
.highlight-card p { color: var(--color-text-soft); margin: 0; }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-accent-dark);
  background: rgba(193, 89, 43, 0.12);
  padding: 3px 9px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 8px;
}

.itinerary h3 { margin-bottom: 0.8em; }

.itinerary ol {
  margin: 0;
  padding-left: 1.3em;
  color: var(--color-text-soft);
}

.itinerary li { margin-bottom: 0.6em; }
.itinerary strong { color: var(--color-text); }

/* ---------- Footer ---------- */

.site-footer {
  background: #221E18;
  color: #B8B1A2;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  padding: 28px 24px;
}

.footer-inner .brand-name-footer {
  color: #fff;
  font-size: 1.05rem;
  margin-right: auto;
}

.site-footer a { color: #E7A24B; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-copy { margin-left: auto; color: #7A7364; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .value-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .facts-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(42, 38, 32, 0.08);
    display: none;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a { width: 100%; padding: 10px 0; }
  .nav-cta { text-align: center; }

  .footer-inner .brand-name-footer,
  .footer-copy { margin: 0; }
}
