/* ==========================================================================
   Once in a Wild — website styles
   Palette gesampled uit de brochure:
   cream  #F6F4EF   navy  #112139   sage  #477E69   gold  #C8A14B
   ========================================================================== */

:root {
  --cream: #f6f4ef;
  --cream-2: #efece3;
  --navy: #112139;
  --navy-deep: #0b1524;
  --sage: #477e69;
  --sage-dark: #365f51;
  --gold: #c8a14b;
  --text-body: #3c4650;
  --text-muted: #6b7580;
  --max-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: #8fd6c1; }

.rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 20px 0 0;
}

.section {
  padding: 96px 0;
}
.section.tight { padding: 72px 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 1.2; }
h2 em, h3 em, h1 em { font-style: italic; color: var(--sage); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover { background: #d9b568; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-deep); }
.btn-line {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-line:hover { background: var(--navy); color: #fff; }

/* ---------- nav ---------- */
header.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
header.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.site-nav.scrolled {
  background: rgba(246,244,239,0.96);
  padding: 12px 0;
  box-shadow: 0 2px 18px rgba(17,33,57,0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 44px; height: 44px; border-radius: 50%; }
.brand span {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}
header.site-nav.scrolled .brand span { color: var(--navy); }

nav.links {
  display: flex;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 500;
}
nav.links a {
  color: rgba(255,255,255,0.92);
  transition: color 0.3s ease;
  position: relative;
}
header.site-nav.scrolled nav.links a { color: var(--navy); }
nav.links a:hover { color: var(--gold); }

.nav-cta {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  transition: background 0.3s ease;
}
header.site-nav.scrolled .menu-toggle span { background: var(--navy); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(11,21,36,0.30) 0%, rgba(11,21,36,0.20) 40%, rgba(11,21,36,0.88) 100%),
              url("../images/hero-final.jpg") center 60% / cover no-repeat;
}
.hero-inner {
  padding-bottom: 90px;
  color: #fff;
  max-width: 720px;
}
.hero .eyebrow { color: #cfe7dd; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.12;
}
.hero h1 em { color: #e7cd8f; font-style: italic; }
.hero p.lede {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 22px 0 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue .line { width: 1px; height: 34px; background: rgba(255,255,255,0.6); animation: scrolldown 1.8s infinite; }
@keyframes scrolldown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- split (about) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split img { border-radius: 4px; }
.split.reverse .split-media { order: 2; }
.split.reverse .split-text { order: 1; }

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cream-2);
  padding: 10px 18px 10px 10px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.logo-badge img { width: 42px; height: 42px; border-radius: 50%; }
.logo-badge span { font-size: 0.85rem; color: var(--navy); font-weight: 600; letter-spacing: 0.03em; }

/* ---------- featured trip intro ---------- */
.trip-intro {
  background: var(--cream-2);
}
.trip-tag {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.trip-tag span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(71,126,105,0.12);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}
.trip-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.trip-intro-grid img { border-radius: 4px; }
.trip-intro h2 { margin-bottom: 4px; }
.trip-intro .sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 28px; }

/* ---------- highlight cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid rgba(17,33,57,0.08);
  border-radius: 6px;
  padding: 26px 24px;
}
.card .mark { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; display: block; }
.card h3 { font-family: inherit; font-size: 0.98rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.03em; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 0.92rem; color: var(--text-muted); }
.card.optional { background: transparent; border-style: dashed; }

/* ---------- timeline (dag voor dag) ---------- */
.timeline {
  position: relative;
  padding-left: 34px;
  border-left: 2px solid var(--cream-2);
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -41px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
}
.timeline-day {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.timeline-item p { font-size: 0.96rem; }
.timeline-loc {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
}

/* ---------- full-bleed photo banner ---------- */
.banner {
  height: 60vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.banner .wrap { width: 100%; padding-bottom: 44px; }
.banner-cap {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(11,21,36,0.45);
  display: inline-block;
  padding: 8px 16px;
}

.quote-banner {
  position: relative;
  min-height: 72vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.quote-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(11,21,36,0.28);
}
.quote-banner blockquote {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  max-width: 720px;
  margin: 0 24px;
  line-height: 1.35;
}
.quote-banner cite {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-style: normal;
}

/* ---------- de groep list ---------- */
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(17,33,57,0.1);
  padding-left: 26px;
  position: relative;
  font-size: 0.96rem;
}
.check-list li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- waarom mee gaan (dark) ---------- */
.dark-feature {
  position: relative;
  background: linear-gradient(180deg, rgba(11,21,36,0.55), rgba(11,21,36,0.92)), url("../images/aurora-cabins.jpg") center / cover no-repeat;
  color: #fff;
}
.dark-feature .section-head { max-width: 700px; }
.dark-feature h2 { color: #fff; }
.dark-feature .check-list li { border-color: rgba(255,255,255,0.16); color: rgba(255,255,255,0.92); }
.dark-feature p { color: rgba(255,255,255,0.82); max-width: 760px; }

/* ---------- reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.review {
  background: var(--cream-2);
  border-radius: 6px;
  padding: 28px 26px;
  border-left: 3px solid var(--gold);
}
.review p { font-style: italic; font-size: 1rem; color: var(--navy); }
.review cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 700;
}

/* ---------- praktisch (dark navy table) ---------- */
.practical {
  background: var(--navy-deep);
  color: #fff;
}
.practical h2 { color: #fff; }
.practical .eyebrow { color: #8fd6c1; }
.info-table {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 36px;
}
.info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.info-row .k {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fd6c1;
  padding-top: 2px;
}
.info-row .v { color: rgba(255,255,255,0.9); font-size: 0.97rem; }
.info-row ul { margin: 0; padding-left: 18px; }
.info-row li { margin-bottom: 4px; }
.info-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 20px;
  line-height: 1.6;
}

.cta-box {
  margin-top: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  padding: 40px;
}
.cta-box h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 22px;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.cta-contact { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 22px; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.cta-contact strong { color: var(--gold); }
.cta-contact a:hover { text-decoration: underline; }

/* ---------- contact / footer ---------- */
.contact {
  text-align: center;
}
.contact .section-head { margin-left: auto; margin-right: auto; }
.contact-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.contact-links a {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}
.contact-links a:hover { color: var(--sage-dark); }

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
  font-size: 0.85rem;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .foot-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: "Playfair Display", serif; font-size: 1.05rem; }
footer .foot-brand img { width: 30px; height: 30px; border-radius: 50%; }
footer .foot-links a { margin-left: 20px; }
footer .foot-links a:hover { color: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  nav.links { display: none; }
  .menu-toggle { display: flex; }
  .split, .trip-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media, .split.reverse .split-text { order: initial; }
  .section { padding: 68px 0; }
  .info-row { grid-template-columns: 1fr; gap: 6px; }
  footer .wrap { flex-direction: column; text-align: center; }
  footer .foot-links a { margin: 0 10px; }
}

@media (max-width: 900px) {
  header.site-nav .wrap { position: relative; }
  nav.links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 24px; right: 24px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(17,33,57,0.18);
    gap: 18px;
    margin-top: 12px;
  }
  nav.links.mobile-open a { color: var(--navy); }
  nav.links.mobile-open .nav-cta { background: var(--gold); color: var(--navy-deep); padding: 10px 16px; text-align: center; border-radius: 3px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}
