@charset "utf-8";
/* CSS Document */

:root {
  --ink: #0E2A2D;
  --ink-soft: #123438;
  --gold: #C3A62E;
  --gold-soft: #D4B94C;
  --cream: #FAF6EB;
  --cream-dark: #F4EEDD;
  --rule: #D8CFB8;
  --muted: #6B6B5F;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }

/* Sets global scroll behavior and padding to account for fixed/sticky headers */
html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 140px; 
}

body {
  font-family: var(--serif);
  background: var(--cream);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none;}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(14, 42, 45, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(195, 166, 46, 0.2);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.35em; color: var(--gold);
  text-transform: uppercase; font-weight: 500;
  text-decoration: none;
  position: relative;
  z-index: 1000;
}
.mobile-menu-btn {
  display: none; background: transparent; border: none;
  color: var(--gold); font-size: 1.5rem;
  cursor: pointer; z-index: 1000;
}
@media (min-width: 901px) {
  .nav-links { display: flex; gap: 2.25rem; align-items: center; }
  .nav-item { position: static; }
  .nav-link {
    font-family: var(--sans); font-size: 0.72rem;
    letter-spacing: 0.25em; color: var(--cream);
    text-transform: uppercase; text-decoration: none;
    font-weight: 300; transition: color 0.3s;
    padding: 1.25rem 0; display: flex; align-items: center; gap: 0.25rem;
  }
  .nav-link:hover { color: var(--gold); }
  .nav-arrow { font-size: 0.5rem; opacity: 0; transform: translateY(-3px); transition: all 0.3s; }
  .nav-item:hover .nav-arrow { opacity: 1; transform: translateY(0); color: var(--gold); }
  .mega-menu {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--ink-soft); border-top: 1px solid rgba(195, 166, 46, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: all 0.3s ease; padding: 3rem 0;
  }
  .nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .mega-container { padding: 0 3rem; }
  .mega-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .mega-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .mega-col { display: flex; flex-direction: column; gap: 0.75rem; }
  .mega-col a {
    font-family: var(--serif); font-size: 1.15rem;
    color: rgba(250,246,235,0.75); text-decoration: none; transition: all 0.3s;
  }
  .mega-col a:hover { color: var(--gold); padding-left: 0.5rem; }
}
.nav-cta {
  padding: 0.6rem 1.4rem; border: 1px solid var(--gold);
  color: var(--cream) !important; transition: all 0.3s !important;
  font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--white) !important; }
@media (max-width: 900px) {
  .nav { padding: 1.25rem 1.5rem; }
  .mobile-menu-btn { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--ink); flex-direction: column; padding: 6rem 2rem 2rem 2rem;
    transition: right 0.4s ease; overflow-y: auto; display: flex; gap: 1.5rem;
  }
  .nav-links.active { right: 0; }
  .nav-item { width: 100%; border-bottom: 1px solid rgba(195,166,46,0.2); padding-bottom: 1rem; }
  .nav-link {
    font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.3em;
    color: var(--gold); text-transform: uppercase; text-decoration: none;
    display: flex; justify-content: space-between; align-items: center; width: 100%;
  }
  .nav-arrow { font-size: 1rem; transition: transform 0.3s; }
  .nav-item.open .nav-arrow { transform: rotate(180deg); }
  .mega-menu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  .nav-item.open .mega-menu { max-height: 1000px; }
  .mega-container { padding-top: 1.5rem; }
  .mega-col { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
  .mega-col a {
    font-family: var(--serif); font-size: 1.15rem;
    color: var(--cream); text-decoration: none; opacity: 0.85;
  }
  .nav-cta { display: inline-block; text-align: center; margin-top: 1rem; }
}

/* ============ INDEX & UNIVERSAL HERO ============ */
.hero {
  height: 100vh; min-height: 700px; position: relative; overflow: hidden;
  display: flex; align-items: center; padding: 0 3rem; background-color: var(--ink);
}
@media (max-width: 640px) { .hero { padding: 0 1.5rem; } }
.hero-bg-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,42,45,0.15) 0%, rgba(14,42,45,0.1) 40%, rgba(14,42,45,0.7) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; color: var(--cream); }
.hero-eyebrow {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1.5rem;
  font-weight: 400; opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300; line-height: 1.02; letter-spacing: -0.015em;
  margin-bottom: 1.75rem; color: var(--cream); max-width: 900px;
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.hero-subtitle {
  font-family: var(--serif); font-size: 1.35rem; font-style: italic;
  font-weight: 300; max-width: 720px; color: rgba(250,246,235,0.92);
  margin-bottom: 2.75rem; opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s 0.9s forwards; }
.hero-btn {
  padding: 1.1rem 2.25rem; font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase; text-decoration: none;
  font-weight: 500; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.75rem;
}
.hero-btn-primary { background: var(--gold); color: var(--white); }
.hero-btn-primary:hover { background: var(--cream); color: var(--ink); }
.hero-btn-outline { background: transparent; color: var(--cream); border: 1px solid var(--cream); }
.hero-btn-outline:hover { background: var(--cream); color: var(--ink); }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase; z-index: 2;
  opacity: 0; animation: fadeUp 1s 1.2s forwards, bob 2s 2s infinite;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* Shared Hero Meta (Used on interior heroes) */
.hero-meta {
  display: flex; gap: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(195, 166, 46, 0.4);
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 0.35rem; }
.hero-meta-label {
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.25em; color: var(--gold);
  text-transform: uppercase; font-weight: 400;
}
.hero-meta-value {
  font-family: var(--serif); font-size: 1.5rem;
  font-weight: 300; color: var(--cream);
}
@media (max-width: 640px) {
  .hero-meta { gap: 1.5rem; flex-wrap: wrap; }
  .hero-meta-value { font-size: 1.2rem; }
}

/* ============ PAGE-SPECIFIC HEROES ============ */
.itinerary-hero {
  align-items: flex-end; padding: 0 3rem 5rem;
}
.itinerary-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(14,42,45,0.3) 0%, rgba(14,42,45,0.2) 40%, rgba(14,42,45,0.85) 100%); z-index: 1;
}
.hero-img-wrapper { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.itinerary-hero .hero-title { font-size: clamp(2.75rem, 7vw, 5.5rem); margin-bottom: 1.5rem; line-height: 1.05; }

/* Small Group Journeys Hero */
.sgj-hero {
  background: linear-gradient(180deg, rgba(14,42,45,0.35) 0%, rgba(14,42,45,0.25) 40%, rgba(14,42,45,0.85) 100%), url('') center/cover;
  align-items: flex-end; padding: 0 3rem 5rem;
}

/* Tailormade Journeys Hero */
.tmj-hero {
  background: linear-gradient(180deg, rgba(14,42,45,0.35) 0%, rgba(14,42,45,0.25) 40%, rgba(14,42,45,0.85) 100%), url('') center/cover;
  align-items: flex-end; padding: 0 3rem 5rem;
}
@media (max-width: 640px) { .itinerary-hero, .sgj-hero, .tmj-hero { padding: 0 1.5rem 3rem; } }

/* ============ STICKY SUBNAV ============ */
.subnav {
  position: sticky; top: 80px; z-index: 50; /* Offset below fixed main nav */
  background: var(--ink); border-bottom: 1px solid rgba(195, 166, 46, 0.2);
}
@media (max-width: 900px) { .subnav { top: 60px; } }
.subnav-inner {
  max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 3rem;
}
.subnav-links { display: flex; gap: 2.5rem; }
.subnav-links a {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--cream); text-transform: uppercase; text-decoration: none;
  font-weight: 300; padding: 0.5rem 0; border-bottom: 1px solid transparent; transition: all 0.3s;
}
.subnav-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.subnav-cta {
  background: var(--gold); color: var(--white); padding: 0.75rem 1.75rem;
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background 0.3s;
}
.subnav-cta:hover { background: var(--cream); color: var(--ink); }
@media (max-width: 900px) {
  .subnav-inner { padding: 1rem 1.5rem; }
  .subnav-links { display: none; }
}

/* ============ SHARED SECTIONS ============ */
section { padding: 7rem 3rem; }
@media (max-width: 640px) { section { padding: 4rem 1.5rem; } }
.container { max-width: 1200px; margin: 0 auto; }
.narrow { max-width: 780px; margin: 0 auto; }
.section-label {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.35em; color: var(--gold);
  text-transform: uppercase; font-weight: 500; margin-bottom: 1.25rem; display: block;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 300;
  line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 2rem;
}
.section-title em { font-style: italic; color: var(--gold); }

/* Common Intro Blocks */
.intro { text-align: center; }
.intro p { font-size: 1.2rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 1.5rem; }
.intro p.lead { font-size: 1.45rem; font-style: italic; color: var(--gold); max-width: 740px; margin: 0 auto 2rem; }

/* ============ INDEX SPECIFIC BLOCKS ============ */
.awards-strip { background: var(--cream); padding: 2rem 3rem; text-align: center; border-bottom: 1px solid var(--rule); }
.awards-strip-label { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.35em; color: var(--muted); text-transform: uppercase; margin-bottom: 1rem; }
.awards-strip-list { display: flex; justify-content: center; gap: 2.5rem 3.5rem; flex-wrap: wrap; align-items: center; }
.awards-strip-item { font-family: var(--serif); font-size: 0.95rem; color: var(--ink-soft); font-style: italic; }
.awards-strip-item strong { font-style: normal; color: var(--gold); font-weight: 500; }
.who { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 900px) { .who { grid-template-columns: 1fr; gap: 3rem; } }
.who-img { aspect-ratio: 4/5; overflow: hidden; }
.who-img img { width: 100%; height: 100%; object-fit: cover; }
.who-text p { font-size: 1.125rem; line-height: 1.85; margin-bottom: 1.5rem; color: var(--ink-soft); }
.who-pull { font-family: var(--serif); font-size: 1.4rem; font-style: italic; font-weight: 300; line-height: 1.45; color: var(--gold); margin: 2rem 0; padding-left: 1.5rem; border-left: 2px solid var(--gold); }
.who-btn { display: inline-block; margin-top: 1.5rem; padding: 1rem 2.25rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: all 0.3s; background: var(--ink); color: var(--cream); }
.who-btn:hover { background: var(--gold); color: var(--white); }
.dest-map { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.dest-map::before { content: ''; position: absolute; right: -5%; top: 50%; transform: translateY(-50%); width: 60%; height: 90%; background: radial-gradient(circle at center, rgba(195,166,46,0.12) 0%, transparent 70%), url('../resources/banner6.jpg') center/cover; opacity: 0.35; mask-image: linear-gradient(270deg, transparent 0%, black 40%, black 100%); -webkit-mask-image: linear-gradient(270deg, transparent 0%, black 40%, black 100%); }
.dest-map-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 900px) { .dest-map-content { grid-template-columns: 1fr; gap: 3rem; } }
.dest-map-text h2 { color: var(--cream); }
.dest-map-text p { font-size: 1.15rem; line-height: 1.8; color: rgba(250,246,235,0.85); margin-bottom: 2rem; }
.dest-map-btn { display: inline-block; padding: 1rem 2.5rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: all 0.3s; background: transparent; color: var(--cream); border: 1px solid var(--gold); }
.dest-map-btn:hover { background: var(--gold); color: var(--white); }
.countries-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 2rem; }
.country-item { padding: 0.9rem 0; border-bottom: 1px solid rgba(195,166,46,0.2); font-family: var(--serif); font-size: 1.15rem; color: var(--cream); display: flex; justify-content: space-between; align-items: center; text-decoration: none; transition: all 0.3s; }
.country-item:hover { color: var(--gold); padding-left: 0.75rem; }
.country-item .arrow { color: var(--gold); font-size: 0.9rem; }
.how-we-design { background: var(--cream-dark); }
.how-intro { text-align: center; max-width: 720px; margin: 0 auto 5rem; }
.categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .categories { grid-template-columns: 1fr; } }
.cat-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; text-decoration: none; color: inherit; transition: transform 0.5s; }
.cat-card:hover { transform: translateY(-5px); }
.cat-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.cat-card:hover .cat-card-img { transform: scale(1.08); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,42,45,0.15) 0%, rgba(14,42,45,0.45) 50%, rgba(14,42,45,0.92) 100%); }
.cat-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.25rem 2rem; color: var(--cream); z-index: 2; }
.cat-numeral { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 1rem; }
.cat-card-name { font-family: var(--serif); font-size: 1.85rem; font-weight: 400; line-height: 1.15; margin-bottom: 0.75rem; letter-spacing: -0.005em; }
.cat-card-name em { font-style: italic; color: var(--gold-soft); }
.cat-card-desc { font-size: 0.98rem; line-height: 1.6; color: rgba(250,246,235,0.88); margin-bottom: 1rem; }
.cat-card-link { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.sig-journeys { background: var(--cream); }
.sig-header { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: end; margin-bottom: 4rem; padding-bottom: 2rem; border-bottom: 1px solid var(--rule); }
@media (max-width: 900px) { .sig-header { grid-template-columns: 1fr; gap: 1.5rem; } }
.sig-header p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.75; color: var(--ink-soft); }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
@media (max-width: 900px) { .journey-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .journey-grid { grid-template-columns: 1fr; } }
.journey-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform 0.5s; }
.journey-card:hover { transform: translateY(-5px); }
.journey-img-wrap { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 1.25rem; position: relative; border-radius: 5px;}
.journey-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.journey-card:hover .journey-img { transform: scale(1.06); }
.journey-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(14,42,45,0.65) 100%); }
.journey-badge { position: absolute; top: 1rem; left: 1rem; background: rgba(14, 42, 45, 0.85); backdrop-filter: blur(6px); color: var(--gold); padding: 0.45rem 0.85rem; font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; }
.journey-duration { position: absolute; bottom: 1rem; right: 1rem; color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 0.95rem; }
.journey-meta { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 0.6rem; }
.journey-title { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 0.75rem; letter-spacing: -0.005em; }
.journey-title em { font-style: italic; color: var(--gold); }
.journey-footer { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1rem; border-top: 1px solid var(--rule); margin-top: auto; }
.journey-price-from { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.25em; color: var(--muted); text-transform: uppercase; display: block; margin-bottom: 0.2rem; }
.journey-price-value { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); font-weight: 500; }
.journey-link { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; color: var(--ink); text-transform: uppercase; font-weight: 500; border-bottom: 1px solid var(--gold); padding-bottom: 0.3rem; }
.sig-view-all { text-align: center; margin-top: 4rem; }
.sig-view-all a { display: inline-block; padding: 1rem 2.5rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; text-decoration: none; font-weight: 500; background: transparent; color: var(--ink); border: 1px solid var(--ink); transition: all 0.3s; }
.sig-view-all a:hover { background: var(--ink); color: var(--cream); }
.why-ongeri { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.why-ongeri::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(195,166,46,0.08) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(195,166,46,0.05) 0%, transparent 50%); }
.why-inner { position: relative; z-index: 2; }
.why-header { text-align: center; max-width: 720px; margin: 0 auto 5rem; }
.why-header h2 { color: var(--cream); }
.why-header p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.75; color: rgba(250,246,235,0.85); margin-top: 1rem; }
.why-tagline { font-family: var(--serif); font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-style: italic; font-weight: 300; color: var(--gold-soft); margin-bottom: 1.5rem; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem 5rem; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.why-item { display: flex; gap: 1.75rem; align-items: start; padding-bottom: 2rem; border-bottom: 1px solid rgba(195,166,46,0.2); }
.why-numeral { font-family: var(--serif); font-size: 2.25rem; font-weight: 300; color: var(--gold); line-height: 1; min-width: 55px; }
.why-content h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--cream); margin-bottom: 0.6rem; line-height: 1.3; }
.why-content p { font-size: 1rem; line-height: 1.7; color: rgba(250,246,235,0.75); }
.dest-grid-section { background: var(--cream); }
.dest-header { text-align: center; max-width: 720px; margin: 0 auto 5rem; }
.dest-header p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.75; color: var(--ink-soft); }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .dest-grid { grid-template-columns: 1fr; } }

/* Global Dest Card Rule (Forces 4/5 Aspect Ratio for specific grids) */
.dest-card { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; color: inherit; aspect-ratio: 4/5; }
.dest-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.dest-card:hover .dest-card-img { transform: scale(1.08); }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(14,42,45,0.85) 100%); transition: background 0.4s; }
.dest-card:hover .dest-card-overlay { background: linear-gradient(180deg, transparent 35%, rgba(14,42,45,0.92) 100%); }
.dest-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.75rem; color: var(--cream); z-index: 2; }
.dest-card-meta { font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 0.5rem; }
.dest-card-name { font-family: var(--serif); font-size: 2.1rem; font-weight: 300; line-height: 1; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.dest-card-name em { font-style: italic; color: var(--gold-soft); }
.dest-card-link { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.3em; color: var(--cream); text-transform: uppercase; font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--gold); padding-bottom: 0.35rem; transition: gap 0.3s; }
.dest-card:hover .dest-card-link { gap: 0.8rem; }
.philanthropy { background: linear-gradient(rgba(14,42,45,0.85), rgba(14,42,45,0.92)), url('../resources/wildebeest.jpg') center/cover fixed; color: var(--cream); padding: 8rem 3rem; text-align: center; }
@media (max-width: 640px) { .philanthropy { padding: 5rem 1.5rem; background-attachment: scroll; } }
.phil-inner { max-width: 780px; margin: 0 auto; }
.phil-label { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1.5rem; display: block; }
.phil-title { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 300; line-height: 1.2; color: var(--cream); margin-bottom: 2rem; }
.phil-title em { font-style: italic; color: var(--gold-soft); }
.phil-text { font-family: var(--serif); font-size: 1.2rem; font-style: italic; line-height: 1.75; color: rgba(250,246,235,0.88); max-width: 640px; margin: 0 auto 2rem; }
.phil-divider { width: 40px; height: 1px; background: var(--gold); margin: 2.5rem auto; }

/* ============ ITINERARY OVERVIEW ============ */
.overview { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
@media (max-width: 900px) { .overview { grid-template-columns: 1fr; gap: 3rem; } }
.overview-text p { font-size: 1.125rem; line-height: 1.85; margin-bottom: 1.5rem; color: var(--ink-soft); }
.pull-quote { font-family: var(--serif); font-size: 1.5rem; font-style: italic; font-weight: 300; line-height: 1.4; color: var(--gold); padding: 1.5rem 0; border-left: 2px solid var(--gold); padding-left: 2rem; margin: 2.5rem 0; }
.overview-side { background: var(--cream-dark); padding: 3rem 2.5rem; position: sticky; top: 10rem; }
@media (max-width: 900px) { .overview-side { position: static; } }
.side-label { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; font-weight: 500; }
.side-price { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 0.5rem; }
.side-price-sub { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }
.side-divider { width: 40px; height: 1px; background: var(--gold); margin: 2rem 0; }
.side-specs { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.side-spec { display: flex; justify-content: space-between; padding-bottom: 0.75rem; border-bottom: 1px solid var(--rule); font-size: 0.95rem; }
.side-spec-label { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }
.side-spec-value { font-family: var(--serif); color: var(--ink); font-weight: 500; }
.side-btn { display: block; text-align: center; background: var(--ink); color: var(--cream); padding: 1rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background 0.3s; margin-bottom: 0.75rem; }
.side-btn:hover { background: var(--gold); }
.side-btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.side-btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ============ ITINERARY HIGHLIGHTS ============ */
.highlights-section { background: var(--ink); color: var(--cream); }
.highlights-section .section-title { color: var(--cream); }
.highlights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 4rem; margin-top: 4rem; }
@media (max-width: 640px) { .highlights-grid { grid-template-columns: 1fr; gap: 2rem; } }
.highlight-item { display: flex; gap: 1.5rem; align-items: start; padding-bottom: 2rem; border-bottom: 1px solid rgba(195,166,46,0.2); }
.highlight-numeral { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--gold); line-height: 1; min-width: 50px; }
.highlight-content p { font-family: var(--serif); font-size: 1.05rem; line-height: 1.65; color: rgba(250,246,235,0.92); }
.highlight-content strong { color: var(--gold-soft); font-weight: 500; }

/* ============ ITINERARY DAY BY DAY ============ */
.itinerary-section { background: var(--cream); }
.day-wrap { display: grid; grid-template-columns: 160px 1fr; gap: 4rem; padding: 3.5rem 0; border-bottom: 1px solid var(--rule); align-items: start; }
.day-wrap:last-child { border-bottom: none; }
@media (max-width: 768px) { .day-wrap { grid-template-columns: 1fr; gap: 1.5rem; } }
.day-number { position: sticky; top: 10rem; }
@media (max-width: 768px) { .day-number { position: static; } }
.day-label { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 0.5rem; }
.day-numeral { font-family: var(--serif); font-size: 4rem; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 0.25rem; }
.day-sub { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 0.95rem; }
.day-body h3 { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--ink); margin-bottom: 1rem; line-height: 1.3; }
.day-location { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.day-body p { font-size: 1.1rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1.25rem; }
.day-stay { margin-top: 1.5rem; padding: 1rem 1.25rem; background: var(--cream-dark); border-left: 2px solid var(--gold); font-size: 1.1rem; font-style: italic; }
.day-stay strong { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 500; font-style: normal; display: block; margin-bottom: 0.3rem; }

/* ============ ITINERARY ACCOMMODATION ============ */
.lodges-section { background: var(--cream-dark); }
.lodges-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-top: 4rem; }
@media (max-width: 768px) { .lodges-grid { grid-template-columns: 1fr; } }
.lodge-card { background: var(--cream); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s; }
.lodge-card:hover { transform: translateY(-4px); }
.lodge-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.lodge-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.lodge-card:hover .lodge-img img { transform: scale(1.05); }
.lodge-content { padding: 2rem 1.75rem; }
.lodge-region { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 0.5rem; }
.lodge-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--ink); margin-bottom: 0.75rem; line-height: 1.2; }
.lodge-desc { font-size: 0.98rem; line-height: 1.7; color: var(--muted); }

/* ============ INCLUSIONS ============ */
.inclusions-section { background: var(--cream); padding-bottom: 8rem; }
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
@media (max-width: 768px) { .incl-grid { grid-template-columns: 1fr; gap: 2rem; } }
.incl-col h4 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--ink); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--rule); }
.incl-list { list-style: none; }
.incl-list li { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); padding: 0.65rem 0 0.65rem 1.75rem; position: relative; border-bottom: 1px dotted rgba(195,166,46,0.3); }
.incl-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 400; }

/* Grid Inclusion Blocks (From the extra pages) */
.inclusions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 4rem;
  border-top: 0px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.inclusion-item {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.inclusion-roman {
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: var(--gold);
  margin-bottom: 0.75rem;
}
.inclusion-item h4 {
  font-family: var(--serif); font-size: 1.35rem;
  font-weight: 400; color: var(--ink);
  margin-bottom: 0.75rem; line-height: 1.25;
}
.inclusion-item p {
  font-size: 0.98rem; line-height: 1.7; color: var(--ink-soft);
}
@media (max-width: 900px) { .inclusions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .inclusions-grid { grid-template-columns: 1fr; } }


/* ============ HORIZONTAL JOURNEY CARDS (Small Group Page) ============ */
.journeys-section { background: var(--cream); }
.list-journey-card {
  background: var(--cream); margin-bottom: 4rem; overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  transition: transform 0.4s, box-shadow 0.4s;
}
.list-journey-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(14,42,45,0.18); }
.list-journey-card:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .list-journey-card { grid-template-columns: 1fr; } }

.list-journey-img { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.list-journey-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.list-journey-card:hover .list-journey-img img { transform: scale(1.04); }
.list-journey-img-tag {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: rgba(14,42,45,0.85); backdrop-filter: blur(10px);
  color: var(--gold); padding: 0.5rem 1rem;
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500;
}

.list-journey-content { padding: 3.5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 640px) { .list-journey-content { padding: 2.5rem 1.75rem; } }

.list-journey-region { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.list-journey-name { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 400; line-height: 1.15; color: var(--ink); margin-bottom: 0.5rem; }
.list-journey-name em { font-style: italic; color: var(--gold); }
.list-journey-tagline { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--muted); margin-bottom: 1.75rem; }
.list-journey-desc { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 2rem; }

.list-journey-specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem 2rem;
  padding: 1.5rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 2rem;
}
.list-journey-spec-label { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.25em; color: var(--muted); text-transform: uppercase; font-weight: 500; display: block; margin-bottom: 0.25rem; }
.list-journey-spec-value { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); font-weight: 500; }

.list-journey-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.list-journey-btn { padding: 0.95rem 1.85rem; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: all 0.3s; }
.list-journey-btn-primary { background: var(--ink); color: var(--cream); }
.list-journey-btn-primary:hover { background: var(--gold); color: var(--white); }
.list-journey-btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.list-journey-btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ============ ESSENCE SECTION ============ */
.essence-section {
  background: var(--ink); color: var(--cream); text-align: center;
}
.essence-section .section-title { color: var(--cream); }
.essence-section .section-label { color: var(--gold); }
.essence-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 4rem;
}
@media (max-width: 768px) { .essence-grid { grid-template-columns: 1fr; gap: 2rem; } }
.essence-item { text-align: left; }
.essence-numeral {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 1rem;
}
.essence-item h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--cream); margin-bottom: 1rem; line-height: 1.3;
}
.essence-item p {
  font-family: var(--serif); font-size: 1.05rem; line-height: 1.7; color: rgba(250,246,235,0.85);
}
.essence-item p strong { color: var(--gold-soft); font-weight: 500; }

/* ============ AUDIENCE CARDS (Tailormade) ============ */
.audience-section { background: var(--cream-dark); }
.audience-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 4rem;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.audience-card {
  background: var(--cream); padding: 3rem 2.5rem;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  transition: background 0.4s;
}
.audience-card:hover { background: var(--cream-dark); }
.audience-numeral {
  font-family: var(--serif); font-size: 2rem; font-style: italic; font-weight: 300; color: var(--gold);
  line-height: 1; margin-bottom: 1.25rem;
}
.audience-card h3 {
  font-family: var(--serif); font-size: 1.65rem; font-weight: 400; color: var(--ink); margin-bottom: 1rem; line-height: 1.25;
}
.audience-card p { font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); }
@media (max-width: 768px) { .audience-grid { grid-template-columns: 1fr; } }

/* ============ PROCESS STEPS (Tailormade) ============ */
.process-section { background: var(--cream); }
.process-step {
  margin-bottom: 4rem; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0; overflow: hidden;
  background: var(--cream-dark); transition: transform 0.4s, box-shadow 0.4s;
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(14,42,45,0.18); }
.process-step:last-child { margin-bottom: 0; }
.process-step.reverse { grid-template-columns: 1.15fr 0.85fr; }
.process-step.reverse .process-img { order: 2; }
.process-step.reverse .process-content { order: 1; }
@media (max-width: 900px) {
  .process-step, .process-step.reverse { grid-template-columns: 1fr; }
  .process-step.reverse .process-img { order: 0; }
  .process-step.reverse .process-content { order: 0; }
}
.process-img { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.process-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.process-step:hover .process-img img { transform: scale(1.04); }
.process-img-tag {
  position: absolute; top: 1.5rem; left: 1.5rem; background: rgba(14,42,45,0.85);
  backdrop-filter: blur(10px); color: var(--gold); padding: 0.5rem 1rem;
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500;
}
.process-content { padding: 3.5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 640px) { .process-content { padding: 2.5rem 1.75rem; } }
.process-name { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 400; line-height: 1.15; color: var(--ink); margin-bottom: 0.5rem; }
.process-name em { font-style: italic; color: var(--gold); }
.process-tagline { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--muted); margin-bottom: 1.75rem; }
.process-desc { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); }
.process-meta { display: flex; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); margin-top: 1.75rem; flex-wrap: wrap; }
.process-meta-item { display: flex; flex-direction: column; gap: 0.3rem; }
.process-meta-label { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.25em; color: var(--muted); text-transform: uppercase; font-weight: 500; }
.process-meta-value { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); font-weight: 500; }

/* ============ INVESTMENT & TIERS ============ */
.investment-section { background: var(--cream); }
.investment-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 4rem; align-items: start;
}
@media (max-width: 900px) { .investment-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.tier-list { border-top: 1px solid var(--rule); }
.tier-row {
  padding: 1.75rem 0; border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center;
}
.tier-numeral { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold); font-weight: 300; }
.tier-name { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-weight: 400; }
.tier-name small { display: block; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 0.95rem; color: var(--muted); margin-top: 0.2rem; }
.tier-price { text-align: right; font-family: var(--serif); font-size: 1.05rem; color: var(--ink); font-weight: 500; white-space: nowrap; }
.tier-price small { display: block; font-family: var(--sans); font-weight: 400; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 0.25rem; }
.investment-side p { font-size: 1.1rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 1.5rem; }
.investment-side p.note { font-style: italic; color: var(--gold); border-left: 2px solid var(--gold); padding-left: 1.25rem; font-size: 1.15rem; }

/* ============ ENQUIRY/DISCOVERY ============ */
.enquiry-section { background: var(--cream-dark); }
.enquiry-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 4rem; align-items: start;
}
@media (max-width: 900px) { .enquiry-wrap { grid-template-columns: 1fr; gap: 2.5rem; } }
.enquiry-side .side-block { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--rule); }
.enquiry-side .side-block:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.enquiry-side h5 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; color: var(--ink); margin-bottom: 0.85rem; line-height: 1.25; }
.enquiry-side h5 em { font-style: italic; color: var(--gold); }
.enquiry-side p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.75; }

.discovery-card {
  background: var(--cream); padding: 4rem 3.5rem; text-align: center; position: relative;
}
@media (max-width: 640px) { .discovery-card { padding: 2.75rem 1.75rem; } }
.discovery-roman { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold); font-weight: 300; margin-bottom: 1rem; }
.discovery-title { font-family: var(--serif); font-size: clamp(1.85rem, 3.2vw, 2.4rem); font-weight: 400; line-height: 1.2; color: var(--ink); margin-bottom: 1.25rem; }
.discovery-title em { font-style: italic; color: var(--gold); }
.discovery-lede { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--muted); max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.6; }

.discovery-meta {
  display: flex; justify-content: center; gap: 3rem; padding: 1.75rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 2.5rem; flex-wrap: wrap;
}
.discovery-meta-item { display: flex; flex-direction: column; gap: 0.35rem; }
.discovery-meta-label { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.25em; color: var(--muted); text-transform: uppercase; font-weight: 500; }
.discovery-meta-value { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); font-weight: 500; }
@media (max-width: 640px) { .discovery-meta { gap: 1.5rem; } .discovery-meta-value { font-size: 1.05rem; } }

.discovery-btn {
  display: inline-block; background: var(--ink); color: var(--cream); padding: 1.15rem 2.6rem;
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: all 0.3s;
}
.discovery-btn:hover { background: var(--gold); color: var(--white); }

.discovery-divider { position: relative; margin: 2.5rem 0 2rem; text-align: center; }
.discovery-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--rule); z-index: 0; }
.discovery-divider span { position: relative; z-index: 1; background: var(--cream); padding: 0 1.25rem; font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 1rem; }

.discovery-alt { display: flex; flex-direction: column; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.alt-channel {
  background: var(--cream); padding: 1.1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; text-decoration: none; transition: background 0.3s, padding 0.3s;
}
.alt-channel:hover { background: var(--cream-dark); padding-left: 1.75rem; }
.alt-label { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.alt-value { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); font-weight: 400; text-align: right; }
@media (max-width: 480px) {
  .alt-channel { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
  .alt-value { text-align: left; font-size: 1rem; }
}

/* ============ AWARDS CAROUSEL ============ */
.awards-carousel-wrapper { position: relative; max-width: 1200px; margin: 0 auto; }
.awards-grid { display: flex; gap: 2rem; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; padding-bottom: 1rem; -ms-overflow-style: none; scrollbar-width: none; }
.awards-grid::-webkit-scrollbar { display: none; }
.award { flex: 0 0 calc(25% - 1.5rem); scroll-snap-align: start; padding: 2.5rem 1.5rem; border: 1px solid var(--rule); background: var(--white); display: flex; flex-direction: column; align-items: center; gap: 1rem; border-radius: 10px; align-items: center; }
.award-nav { position: absolute; top: 45%; transform: translateY(-50%); background: var(--white); border: 1px solid var(--rule); color: var(--gold); width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.award-nav:hover { background: var(--gold); color: var(--white); }
.award-nav.prev { left: -22px; }
.award-nav.next { right: -22px; }
.awards:hover .award-nav { opacity: 1; }
.award-title { align-items: center; text-align: center; font-family: var(--serif); font-size: 1.1rem; color: var(--ink); font-weight: 700; line-height: 1.3; }
.award-authority { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 400; color: var(--muted); }
.award-year { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.35em; color: var(--gold); font-weight: 700; }
@media (max-width: 900px) { .award { flex: 0 0 calc(50% - 1rem); } .award-nav { opacity: 0.8; } .award-nav.prev { left: 0px; } .award-nav.next { right: 0px; } }
@media (max-width: 640px) { .award { flex: 0 0 100%; } }

/* ============ CTA BAND / SECTION ============ */
.cta-section, .cta-band {
  background: linear-gradient(rgba(14,42,45,0.75), rgba(14,42,45,0.9)), url('../resources/photography.jpg') center/cover;
  color: var(--cream); text-align: center; padding: 7rem 3rem;
}
.cta-title { font-family: var(--serif); font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 300; line-height: 1.2; color: var(--cream); margin-bottom: 1.5rem; }
.cta-title em { font-style: italic; color: var(--gold-soft); }
.cta-sub { font-family: "Inter", var(--serif); font-size: 0.99rem; font-style: normal; color: rgba(250,246,235,0.85); max-width: 560px; margin: 0 auto 2.5rem; }
.cta-section .cta-sub { font-family: var(--serif); font-size: 1.25rem; font-style: italic; } 
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-btn { padding: 1.1rem 2.75rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: all 0.3s; }
.cta-btn-primary { background: var(--gold); color: var(--white); }
.cta-btn-primary:hover { background: var(--cream); color: var(--ink); }
.cta-btn-outline { background: transparent; color: var(--cream); border: 1px solid var(--cream); }
.cta-btn-outline:hover { background: var(--cream); color: var(--ink); }

/* ============ FOOTER ============ */
footer { background: var(--ink); color: var(--cream); padding: 5rem 3rem 2rem; border-top: 1px solid rgba(195,166,46,0.15);}
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(195,166,46,0.2); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1.25rem; }
.footer-col a { display: block; font-family: var(--serif); font-size: 1rem; color: rgba(250,246,235,0.8); text-decoration: none; padding: 0.35rem 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-brand h3 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 0.75rem; }
.footer-brand p { font-family: var(--serif); font-style: italic; color: var(--cream); margin-bottom: 1.5rem; opacity: 0.85; }
.footer-brand-meta { font-family: var(--serif); font-size: 0.95rem; line-height: 1.8; color: rgba(250,246,235,0.75); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; font-family: var(--sans); font-size: 0.75rem; color: rgba(250,246,235,0.6); flex-wrap: wrap; gap: 1rem; }
.footer-socials { display: flex; gap: 1.25rem; }
.footer-socials a { color: var(--gold); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.1em; }

/* ============ ACCOMMODATION MODAL ============ */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal.active { opacity: 1; visibility: visible; }
.modal-overlay {
  position: absolute; inset: 0; 
  background: rgba(14,42,45,0.85); backdrop-filter: blur(5px);
}
.modal-content {
  position: relative; z-index: 2001; background: var(--cream);
  width: 60%; max-width: 1100px; max-height: 90vh;
  border-radius: 4px; overflow-y: auto; overflow-x: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
@media (max-width: 1100px) { .modal-content { width: 85%; } }
@media (max-width: 640px) { .modal-content { width: 95%; max-height: 95vh; } }

.modal-close {
  position: absolute; top: 1rem; right: 1.5rem; z-index: 2010;
  background: rgba(14,42,45,0.6); color: var(--cream);
  border: none; width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; transition: all 0.3s;
  backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--gold); color: var(--white); transform: rotate(90deg); }

/* Modal Slider */
.modal-slider-wrapper { position: relative; width: 100%; height: 45vh; min-height: 450px; }
.modal-slider-track {
  display: flex; width: 100%; height: 100%; overflow-x: auto;
  scroll-behavior: smooth; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
.modal-slider-track::-webkit-scrollbar { display: none; }
.modal-slide { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: start; }

.modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(250,246,235,0.8); border: none; color: var(--ink);
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.modal-nav:hover { background: var(--gold); color: var(--white); }
.modal-nav.prev { left: 1rem; }
.modal-nav.next { right: 1rem; }
.modal-slider-wrapper:hover .modal-nav { opacity: 1; }

/* Modal Typography & Layout */
.modal-body { padding: 4rem 5rem; }
@media (max-width: 640px) { .modal-body { padding: 2.5rem 1.5rem; } }

.modal-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1; color: var(--ink);
  margin-bottom: 0.5rem; text-align: center;
}
.modal-location {
  font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 600; color: var(--gold);
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.loc-icon { font-size: 1.1rem; }
.modal-divider {
  width: 60px; height: 1px; background: var(--rule);
  margin: 2.5rem auto;
}
.modal-intro {
  font-family: var(--serif); font-size: 2rem; font-style: normal;
  font-weight: 300; line-height: 1.1; color: var(--ink);
  margin-bottom: 1.5rem; text-align: center;
}
.modal-text {
  font-size: 1.05rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 1.25rem;
}
.modal-sub {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase; font-weight: 600;
  margin: 2.5rem 0 1rem; border-bottom: 1px solid var(--rule); padding-bottom: 0.5rem;
}

/* Modal Facilities */
.modal-facilities {
  margin-top: 3.5rem; padding: 2.5rem; background: var(--cream-dark);
  border-radius: 4px;
}
.modal-facilities-title {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--ink);
  text-align: center; margin-bottom: 2rem;
}
.modal-facilities-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem;
  list-style: none; max-width: 600px; margin: 0 auto;
}
@media (max-width: 640px) { .modal-facilities-list { grid-template-columns: 1fr; } }
.modal-facilities-list li {
  font-size: 1.05rem; color: var(--ink-soft);
  position: relative; padding-left: 1.5rem;
}
.modal-facilities-list li::before {
  content: '•'; position: absolute; left: 0; color: var(--gold); font-size: 1.5rem; line-height: 1;
}


/* ============ SMALL GROUP & LEGACY JOURNEYS (sg-) ============ */

/* Hero */
.sg-page-hero {
  position: relative; 
  padding: 160px 3rem 70px;
  text-align: center;
  background-color: var(--ink); /* Fallback behind the image */
  overflow: hidden;
}

/* Ensure the overlay provides full dark coverage over the image */
.sg-page-hero .hero-overlay {
  position: absolute; 
  inset: 0;
  background: linear-gradient(180deg, rgba(14,42,45,0.55) 0%, rgba(14,42,45,0.85) 100%);
  z-index: 1;
}

/* New wrapper to pull content above the image and overlay */
.sg-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.sg-eyebrow {
  font-family: var(--sans); font-weight: 500;
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.sg-eyebrow::before, .sg-eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--gold); }

/* Flipped text colors for dark image background */
.sg-page-hero .hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.75rem, 7vw, 5.5rem); line-height: 1.05;
  color: var(--cream); /* Changed to cream */
  letter-spacing: -0.01em;
  max-width: 1100px; margin: 0 auto;
}
.sg-page-hero .hero-title em { font-style: italic; font-weight: 400; color: var(--gold); }

.sg-page-hero .hero-subtitle {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: rgba(250,246,235,0.92); /* Changed to light cream */
  max-width: 720px; line-height: 1.5;
}

/* Adjusted borders and colors for the meta blocks to match the dark theme */
.sg-hero-meta {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  max-width: 1100px; margin: 60px auto 0;
  border-top: 1px solid rgba(195, 166, 46, 0.4); 
  border-bottom: 1px solid rgba(195, 166, 46, 0.4);
}
.sg-hero-meta div { 
  padding: 24px 18px; text-align: center; 
  border-right: 1px solid rgba(195, 166, 46, 0.4); 
}
.sg-hero-meta div:last-child { border-right: none; }
.sg-hero-meta .lbl { 
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; 
  color: var(--gold); /* Changed to gold */
  margin-bottom: 8px; 
}
.sg-hero-meta .val { 
  font-family: var(--serif); font-size: 1.5rem; 
  color: var(--cream); /* Changed to cream */
  font-weight: 500; line-height: 1.2; 
}
.sg-hero-meta .val small { 
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; 
  color: rgba(250,246,235,0.7); /* Changed to light muted cream */
  display:block; margin-top: 4px; font-weight: 400; 
}
@media (max-width: 720px) {
  .sg-hero-meta { grid-template-columns: 1fr 1fr; }
  .sg-hero-meta div:nth-child(2) { border-right: none; }
  .sg-hero-meta div:nth-child(1), .sg-hero-meta div:nth-child(2) { border-bottom: 1px solid rgba(195, 166, 46, 0.4); }
}

/* Departures Band */
.sg-departures-band { background: var(--ink); color: var(--cream); padding: 7rem 3rem; }
.dep-inner h2 {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--cream);
  margin-bottom: 38px; line-height: 1.15;
}
.dep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0; border-top: 1px solid rgba(250,246,235,0.18); }
.dep { padding: 36px 32px; border-bottom: 1px solid rgba(250,246,235,0.18); display: grid; grid-template-columns: 90px 1fr auto; gap: 28px; align-items: center; border-right: 1px solid rgba(250,246,235,0.18); }
.dep:last-child { border-right: none; }
.dep-cal { background: var(--gold); color: var(--ink); text-align: center; padding: 14px 8px; font-family: var(--serif); }
.dep-cal .mo { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.dep-cal .dy { font-size: 2.25rem; line-height: 1; font-weight: 400; padding: 4px 0; }
.dep-cal .yr { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.18em; }
.dep-info .lbl { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.dep-info h3 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.6rem; color: var(--cream); margin-bottom: 6px; line-height: 1.2; }
.dep-info .span { font-family: var(--serif); font-size: 1rem; color: rgba(250,246,235,0.75); }
.dep-status { text-align: right; font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; }
.dep-status .avail { color: var(--gold); font-weight: 500; }
.dep-status .small { color: rgba(250,246,235,0.6); display: block; margin-top: 4px; font-weight: 300;}
@media (max-width: 720px) { .dep { grid-template-columns: 70px 1fr; gap: 18px; padding: 24px 0; border-right: none; } .dep-status { grid-column: 1 / -1; text-align: left; padding-top: 8px; } }

/* Overview Grid */
.sg-overview-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.sg-overview-prose p { font-size: 1.125rem; line-height: 1.85; margin-bottom: 1.5rem; color: var(--ink-soft); }
.sg-overview-prose p strong { font-family: var(--sans); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); display: inline-block; margin-right: 8px; }
.sg-price-card { background: var(--ink); color: var(--cream); padding: 50px 44px; position: sticky; top: 120px; }
.sg-price-card .from { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.sg-price-card .price { font-family: var(--serif); font-size: 3.5rem; line-height: 1; color: var(--cream); font-weight: 300; }
.sg-price-card .price em { font-style: italic; color: var(--gold); }
.sg-price-card .pp { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,246,235,0.7); margin-top: 14px; padding-bottom: 30px; border-bottom: 1px solid rgba(250,246,235,0.18); }
.sg-price-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; margin-top: 28px; }
.sg-price-card dt { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.sg-price-card dd { font-family: var(--serif); font-size: 1.25rem; color: var(--cream); font-weight: 400; }
@media (max-width: 880px) { .sg-overview-grid { grid-template-columns: 1fr; gap: 50px; } .sg-price-card { position: static; } }

/* Highlights Specific Grid */
.sg-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--rule); margin-top: 3rem; }
.sg-h-item { padding: 50px 40px; border-bottom: 1px solid var(--rule); border-right: 1px solid var(--rule); display: flex; gap: 30px; align-items: flex-start; }
.sg-h-item:nth-child(2n) { border-right: none; }
.sg-h-item:nth-last-child(-n+2) { border-bottom: none; }
.sg-h-num { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 2.5rem; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 60px; }
.sg-h-item h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }
.sg-h-item p { font-family: var(--serif); font-size: 1.05rem; line-height: 1.65; color: var(--ink-soft); }
@media (max-width: 720px) { .sg-highlights { grid-template-columns: 1fr; } .sg-h-item { border-right: none !important; } .sg-h-item:nth-last-child(2) { border-bottom: 1px solid var(--rule); } }

/* Day-by-Day Split View */
.sg-day { display: grid; grid-template-columns: 180px 1fr; gap: 60px; padding: 50px 0; border-top: 1px solid var(--rule); }
.sg-day:last-of-type { border-bottom: 1px solid var(--rule); }
.sg-day-meta { padding-top: 4px; }
.sg-day-meta .lbl { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.sg-day-meta .num { font-family: var(--serif); font-style: italic; font-size: 4rem; line-height: 1; color: var(--ink); font-weight: 300; }
.sg-day-meta .place { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }
.sg-day-body h3 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 2rem; line-height: 1.2; color: var(--ink); margin-bottom: 20px; }
.sg-day-body .loc { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.sg-day-body p { font-family: var(--serif); font-size: 1.125rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 18px; }
.sg-day-rest { margin-top: 18px; padding: 18px 22px; background: var(--cream-dark); border-left: 2px solid var(--gold); }
.sg-day-rest .lbl { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.sg-day-rest .name { font-family: var(--serif); font-size: 1.125rem; color: var(--ink); font-weight: 500; }
.sg-day-rest .desc { font-family: var(--serif); font-size: 1rem; color: var(--ink-soft); margin-top: 4px; font-style: italic; }
@media (max-width: 720px) { .sg-day { grid-template-columns: 1fr; gap: 14px; } .sg-day-meta .num { font-size: 2.75rem; } }

/* Horizontal Stays */
.sg-stays { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 3rem; }
.sg-stay { background: var(--cream); padding: 36px 30px; border-top: 2px solid var(--gold); transition: transform .35s ease, box-shadow .35s ease; }
.sg-stay:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(14,42,45,0.10); }
.sg-stay .place { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.sg-stay h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; line-height: 1.2; color: var(--ink); margin-bottom: 14px; }
.sg-stay p { font-family: var(--serif); font-size: 1rem; line-height: 1.5; color: var(--ink-soft); }
.sg-stay .nights { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--rule); font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 980px) { .sg-stays { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sg-stays { grid-template-columns: 1fr; } }

/* Exclusion modifier for inclusions list */
.incl-list.ex li::before { content: "×"; color: var(--muted); }

/* SG CTA Section */
.sg-cta-section { background: var(--ink); padding: 7rem 3rem; text-align: center; color: var(--cream); }
.sg-cta-section .cta-title { color: var(--cream); }



/* ============ GUEST STORIES PAGE ADDITIONS ============ */

/* Specific Background overrides */
.guest-hero {
  background:
    linear-gradient(180deg, rgba(14,42,45,0.3) 0%, rgba(14,42,45,0.2) 40%, rgba(14,42,45,0.85) 100%),
    url('') center/cover;
}
.guest-cta-section {
  background:
    linear-gradient(rgba(14,42,45,0.82), rgba(14,42,45,0.92)),
    url('../resources/photography.jpg') center/cover;
  color: var(--cream); text-align: center; padding: 8rem 3rem;
}
.guest-cta-section .section-label { color: var(--gold); }

/* Quotes and Attributes in Sidebar */
.side-quote {
  font-family: var(--serif); font-style: italic; font-weight: 300; 
  font-size: 1.2rem; line-height: 1.55; color: var(--ink); margin-bottom: 1.5rem;
}
.side-quote::before {
  content: '\201C'; font-size: 3rem; color: var(--gold); line-height: 0; 
  vertical-align: -0.4em; margin-right: 0.25rem; font-weight: 400;
}
.side-attr-name { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); font-weight: 500; margin-bottom: 0.25rem; }
.side-attr-trip { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }

/* Trust Metrics */
.trust-section { background: var(--cream-dark); padding: 4.5rem 3rem; }
.trust-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; } }
.trust-item { padding: 0 1rem; text-decoration: none; display: block; color: inherit; transition: transform 0.3s; }
.trust-item:hover { transform: translateY(-3px); }
.trust-item:hover .trust-numeral em { color: var(--gold-soft); }
.trust-numeral { font-family: var(--serif); font-size: 3.25rem; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 0.5rem; }
.trust-numeral em { font-style: italic; color: var(--gold); font-weight: 400; }
.trust-label { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase; font-weight: 500; }
.trust-divider { width: 30px; height: 1px; background: var(--gold); margin: 0.85rem auto; }

/* Filter Bar */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin: 0 auto 4rem; max-width: 900px; }
.filter-btn { background: transparent; border: 1px solid var(--rule); color: var(--ink-soft); padding: 0.7rem 1.5rem; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 400; cursor: pointer; transition: all 0.3s; }
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--gold); font-weight: 500; }

/* Stories List */
.stories-section { background: var(--cream); }
.story-wrap { display: grid; grid-template-columns: 160px 1fr; gap: 4rem; padding: 3.5rem 0; border-bottom: 1px solid var(--rule); align-items: start; }
.story-wrap:last-child { border-bottom: none; }
@media (max-width: 768px) { .story-wrap { grid-template-columns: 1fr; gap: 1.5rem; } }
.story-marker { position: sticky; top: 10rem; }
@media (max-width: 768px) { .story-marker { position: static; } }
.story-source { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 0.5rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.3s; }
.story-source:hover { color: var(--ink); }
.story-source::after { content: '↗'; font-size: 0.75rem; letter-spacing: 0; opacity: 0.7; }
.verify-link { margin-top: 0.85rem; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 400; }
.verify-link a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--rule); padding-bottom: 2px; transition: all 0.3s; }
.verify-link a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.story-numeral { font-family: var(--serif); font-size: 4rem; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 0.4rem; }
.story-stars { font-family: var(--serif); color: var(--gold); font-size: 1rem; letter-spacing: 0.25em; }
.story-body h3 { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--ink); margin-bottom: 1rem; line-height: 1.3; }
.story-trip { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.story-body p { font-size: 1.05rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1.25rem; }
.story-attr { margin-top: 1.5rem; padding: 1rem 1.25rem; background: var(--cream-dark); border-left: 2px solid var(--gold); font-size: 0.95rem; font-style: italic; }
.story-attr strong { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 500; font-style: normal; display: block; margin-bottom: 0.3rem; }

/* Platforms */
.platforms-section { background: var(--ink); color: var(--cream); }
.platforms-section .section-title { color: var(--cream); }
.platforms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; }
@media (max-width: 768px) { .platforms-grid { grid-template-columns: repeat(2, 1fr); } }
.platform { text-align: center; padding: 2.5rem 1.5rem; border: 1px solid rgba(195,166,46,0.25); transition: all 0.4s; text-decoration: none; display: block; }
.platform:hover { border-color: var(--gold); background: rgba(195,166,46,0.04); transform: translateY(-4px); }
.platform-link { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(195,166,46,0.2); font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 500; transition: color 0.3s; }
.platform:hover .platform-link { color: var(--gold-soft); }
.platform-name { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.platform-rating { font-family: var(--serif); font-size: 2.75rem; font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 0.5rem; }
.platform-rating em { font-style: italic; color: var(--gold-soft); }
.platform-count { font-family: var(--serif); font-style: italic; color: rgba(250,246,235,0.7); font-size: 0.95rem; }

/* Simplified Awards section layout for the guest stories page */
.guest-awards-section { background: var(--cream-dark); padding: 5rem 3rem; }
.guest-awards-section .awards-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 3rem; margin-top: 2.5rem; }
.guest-awards-section .awards-list .award { font-family: var(--serif); font-size: 1.05rem; color: var(--ink-soft); font-style: italic; display: flex; align-items: center; gap: 0.75rem; border: none; padding: 0; background: transparent; }
.guest-awards-section .awards-list .award::before { content: '—'; color: var(--gold); font-style: normal; }

/* Source Note */
.source-note { background: var(--cream); padding: 3rem 3rem; text-align: center; border-top: 1px solid var(--rule); }
.source-note p { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--muted); max-width: 720px; margin: 0 auto; }


/* ============ DESTINATION PAGES ADDITIONS ============ */

/* Hero Breadcrumbs & Crumbs */
.hero-crumb {
  font-family: var(--sans); font-size: 0.68rem;
  letter-spacing: 0.3em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 400;
  opacity: 0; animation: fadeUp 1s 0.2s forwards;
}
.hero-crumb a { color: var(--cream); text-decoration: none; opacity: 0.8; }
.hero-crumb a:hover { color: var(--gold); }

/* Regions Grid (Destination Interior) */
.regions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 4rem;
}
.region-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform 0.5s;
  background: transparent; cursor: pointer; 
}
.region-card:hover { transform: translateY(-5px); }
.region-img-wrap { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 1.25rem; position: relative; }
.region-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.region-card:hover .region-img { transform: scale(1.06); }
.region-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(14,42,45,0.7) 100%); pointer-events: none; }
.region-pin {
  position: absolute; top: 1rem; left: 1rem; background: rgba(195,166,46,0.95);
  color: var(--white); font-family: var(--sans); font-size: 0.58rem;
  letter-spacing: 0.25em; text-transform: uppercase; padding: 0.4rem 0.75rem; z-index: 2; font-weight: 500;
}
.region-name { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: inherit; margin-bottom: 0.5rem; letter-spacing: -0.005em; }
.region-name em { font-style: italic; color: var(--gold); }
.region-desc { font-size: 1rem; line-height: 1.7; color: rgba(250,246,235,0.85); }
@media (max-width: 900px) { .regions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .regions-grid { grid-template-columns: 1fr; } }

/* When to Go / Seasons */
.months-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.season { background: var(--cream); padding: 2rem 1.75rem; border-top: 3px solid var(--gold); }
.season-months { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.75rem; font-weight: 500; }
.season-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--ink); margin-bottom: 0.75rem; }
.season-desc { font-size: 0.95rem; line-height: 1.7; color: var(--muted); }
@media (max-width: 900px) { .months-grid { grid-template-columns: repeat(2, 1fr); } }


/* ============ DESTINATION INDEX PAGE ADDITIONS ============ */
.dest-index-hero {
  background:
    linear-gradient(180deg, rgba(14,42,45,0.35) 0%, rgba(14,42,45,0.25) 40%, rgba(14,42,45,0.85) 100%),
    url('') center/cover;
  height: 80vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
@media (max-width: 640px) { .dest-index-hero { height: 70vh; } }

.dest-index-hero .hero-inner { max-width: 900px; margin: 0 auto; display: block;}

.destinations-wrapper { padding: 2rem 3rem 6rem; max-width: 1300px; margin: 0 auto; }
@media (max-width: 640px) { .destinations-wrapper { padding: 1rem 1.5rem 4rem; } }

.region-header { padding: 4rem 3rem 2rem; max-width: 1300px; margin: 0 auto; }
@media (max-width: 640px) { .region-header { padding: 3rem 1.5rem 1rem; } }
.region-label { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 0.75rem; display: block; }
.region-title { font-family: var(--serif); font-size: clamp(2.25rem, 4.5vw, 3.25rem); font-weight: 300; line-height: 1.15; color: var(--ink); letter-spacing: -0.01em; }
.region-title em { font-style: italic; color: var(--gold); }

/* --- FIX FOR DESTINATION GRID OVERLAPPING --- */
/* The main dest-card class forces an aspect-ratio of 4/5 which breaks explicit grid row spanning. We revert it here. */
.destinations-wrapper .dest-card {
  aspect-ratio: auto;
  display: block;
}

.east-africa-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.card-kenya { grid-column: 1; grid-row: 1 / span 2; min-height: 820px; }
.card-tanzania { grid-column: 2 / span 2; grid-row: 1; min-height: 400px; }
.card-rwanda { grid-column: 2; grid-row: 2; min-height: 400px; }
.card-uganda { grid-column: 3; grid-row: 2; min-height: 400px; }

@media (max-width: 900px) {
  .east-africa-grid { grid-template-columns: 1fr 1fr; }
  .card-kenya { grid-column: 1 / span 2; grid-row: 1; min-height: 450px; }
  .card-tanzania { grid-column: 1 / span 2; grid-row: 2; }
  .card-rwanda { grid-column: 1; grid-row: 3; }
  .card-uganda { grid-column: 2; grid-row: 3; }
}

@media (max-width: 640px) {
  .east-africa-grid { grid-template-columns: 1fr; }
  .card-kenya, .card-tanzania, .card-rwanda, .card-uganda { grid-column: 1; grid-row: auto; min-height: 400px; }
}

/* Island Cards */
.islands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .islands-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .islands-grid { grid-template-columns: 1fr; } }
.island-card { min-height: 480px; }

.destinations-wrapper .dest-card-tagline { font-family: var(--serif); font-size: 1.05rem; font-style: italic; line-height: 1.5; color: rgba(250,246,235,0.88); max-width: 380px; margin-bottom: 1.25rem; }

.philosophy { background: var(--ink); color: var(--cream); padding: 7rem 3rem; text-align: center; }
@media (max-width: 640px) { .philosophy { padding: 5rem 1.5rem; } }
.philosophy-inner { max-width: 780px; margin: 0 auto; }
.philosophy-label { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1.5rem; display: block; }
.philosophy h2 { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 300; line-height: 1.2; color: var(--cream); margin-bottom: 2rem; }
.philosophy h2 em { font-style: italic; color: var(--gold-soft); }
.philosophy p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; line-height: 1.75; color: rgba(250,246,235,0.88); max-width: 640px; margin: 0 auto; }
.philosophy-divider { width: 40px; height: 1px; background: var(--gold); margin: 2.5rem auto; }

.dest-banner { background: linear-gradient(rgba(14,42,45,0.8), rgba(14,42,45,0.9)), url('../resources/photography.jpg') center/cover fixed; color: var(--cream); padding: 7rem 3rem; text-align: center; }
@media (max-width: 640px) { .dest-banner { padding: 5rem 1.5rem; background-attachment: scroll; } }
.banner-label { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1.25rem; display: block; }
.banner-title { font-family: var(--serif); font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 300; line-height: 1.2; color: var(--cream); margin-bottom: 1.5rem; max-width: 780px; margin-left: auto; margin-right: auto; }
.banner-title em { font-style: italic; color: var(--gold-soft); }
.banner-sub { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: rgba(250,246,235,0.85); max-width: 600px; margin: 0 auto 2.5rem; }
.banner-cta { display: inline-block; padding: 1.1rem 2.75rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: all 0.3s; background: var(--gold); color: var(--white); }
.banner-cta:hover { background: var(--cream); color: var(--ink); }

/* ============ INDIVIDUAL DESTINATION INTERIOR SPECIFICS ============ */

/* Hero Overrides */
.dest-interior-hero { align-items: flex-end; padding: 0 3rem 5rem; }
@media (max-width: 640px) { .dest-interior-hero { padding: 0 1.5rem 3rem; } }

/* Light Theme "Why Destination" Block */
.dest-interior-why { background: var(--cream); }
.dest-interior-why .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 4rem; margin-top: 4rem; }
@media (max-width: 640px) { .dest-interior-why .why-grid { grid-template-columns: 1fr; gap: 2rem; } }
.dest-interior-why .why-item { display: flex; gap: 1.5rem; align-items: start; padding-bottom: 2rem; border-bottom: 1px solid var(--rule); }
.dest-interior-why .why-content h4 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; }
.dest-interior-why .why-content p { font-size: 1rem; line-height: 1.7; color: var(--muted); }

/* Interior Specific Region Grid (Dark Theme) */
.dest-interior-regions { background: var(--ink); color: var(--cream); }
.dest-interior-regions .section-title { color: var(--cream); }
.dest-interior-regions .region-name { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--cream); margin-bottom: 0.5rem; letter-spacing: -0.005em; }
.dest-interior-regions .region-name em { font-style: italic; color: var(--gold-soft); }

/* Journey Lists Horizontal Layout */
.journeys-list { margin-top: 4rem; display: flex; flex-direction: column; gap: 2.5rem; }
.journey-row { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 3rem; align-items: center; padding-bottom: 2.5rem; border-bottom: 1px solid var(--rule); }
@media (max-width: 768px) { .journey-row { grid-template-columns: 1fr; gap: 1.5rem; } }
.journey-row:last-child { border-bottom: none; }
.journey-row-img { aspect-ratio: 4/3; overflow: hidden; }
.journey-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.journey-row:hover .journey-row-img img { transform: scale(1.05); }
.journey-row-meta { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 0.75rem; }
.journey-row-title { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 0.75rem; }
.journey-row-title em { font-style: italic; color: var(--gold); }
.journey-row-desc { font-size: 1rem; line-height: 1.7; color: var(--muted); margin-bottom: 1.25rem; }
.journey-row-footer { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 1rem; }
.journey-row-price { font-family: var(--serif); color: var(--ink); font-size: 1.15rem; font-weight: 500; }
.journey-row-price span { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.25em; color: var(--muted); text-transform: uppercase; display: inline-block; margin-right: 0.5rem; font-weight: 400; }
.journey-row-link { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.3em; color: var(--ink); text-transform: uppercase; text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--gold); padding-bottom: 0.3rem; transition: color 0.3s; }
.journey-row-link:hover { color: var(--gold); }

/* Destination Specific CTA Block */
.dest-cta-section { color: var(--cream); text-align: center; padding: 8rem 3rem; background-position: center; background-size: cover; }
.dest-cta-section .section-label { color: var(--gold); }

.when-section {
	background-color: var(--cream-dark)
}



/* ============ SIGNATURE JOURNEYS CAROUSEL ============ */
.journey-carousel-wrapper {
  position: relative;
  width: 100%;
}

.journey-carousel-track {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem; /* Space for box shadows */
  -ms-overflow-style: none; /* Hide scrollbar in IE and Edge */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.journey-carousel-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome, Safari and Opera */
}

/* Force cards to flex horizontally based on a 4-column layout */
.journey-carousel-track .journey-card {
  /* 25% width minus the flex gap (3 gaps of 2.5rem divided by 4 cards = 1.875rem) */
  flex: 0 0 calc(25% - 1.875rem); 
  scroll-snap-align: start;
}

/* Carousel Navigation Arrows */
.journey-carousel-wrapper .carousel-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.journey-carousel-wrapper .carousel-nav:hover {
  background: var(--gold);
  color: var(--white);
}

.journey-carousel-wrapper .carousel-nav.prev {
  left: -24px;
}

.journey-carousel-wrapper .carousel-nav.next {
  right: -24px;
}

.journey-carousel-wrapper:hover .carousel-nav {
  opacity: 1;
}

/* Responsive Scaling */
@media (max-width: 1100px) {
  /* Scale to 3 columns on medium-large screens */
  .journey-carousel-track .journey-card {
    flex: 0 0 calc(33.333% - 1.666rem);
  }
}

@media (max-width: 900px) {
  /* Scale to 2 columns on tablets */
  .journey-carousel-track .journey-card {
    flex: 0 0 calc(50% - 1.25rem);
  }
  
  /* Keep arrows visible on touch devices */
  .journey-carousel-wrapper .carousel-nav {
    opacity: 0.9;
  }
  /* Nudge arrows inwards to prevent horizontal scroll bleed */
  .journey-carousel-wrapper .carousel-nav.prev { left: 0px; }
  .journey-carousel-wrapper .carousel-nav.next { right: 0px; }
}

@media (max-width: 640px) {
  /* Scale to 1 column on mobile */
  .journey-carousel-track .journey-card {
    flex: 0 0 100%;
  }
}



/* ============ ABOUT PAGE SPECIFICS ============ */

/* Anchor offset for sticky subnav to not obscure headings */
.anchor-offset {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}

/* Ensure active subnav link is highlighted globally */
.subnav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Specific About Hero Background Override */
.about-hero {
  background:
    linear-gradient(180deg, rgba(14,42,45,0.3) 0%, rgba(14,42,45,0.2) 40%, rgba(14,42,45,0.85) 100%),
    url('') center/cover;
}

/* Story Chapters */
.chapters-section { background: var(--cream-dark); }
.chapters-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 4rem; }
@media (max-width: 900px) { .chapters-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.chapter { border-left: 2px solid var(--gold); padding: 0.5rem 0 0.5rem 1.75rem; }
.chapter-numeral { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold); margin-bottom: 0.75rem; }
.chapter h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--ink); margin-bottom: 1rem; line-height: 1.25; }
.chapter h3 em { font-style: italic; color: var(--gold); }
.chapter p { font-size: 1rem; line-height: 1.8; color: var(--ink-soft); }

/* Founder's Note */
.founder-section { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.founder-section .section-title { color: var(--cream); }
.founder-section::before {
  content: '"'; position: absolute; top: 2rem; right: 5rem; font-family: var(--serif);
  font-style: italic; font-size: 24rem; line-height: 1; color: var(--gold); opacity: 0.06; pointer-events: none;
}
.founder-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; position: relative; }
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; gap: 3rem; } }
.founder-portrait { position: relative; }
.founder-carousel { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; border: 1px solid rgba(195, 166, 46, 0.3); background: var(--ink-soft); }
.carousel-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; }
.carousel-slide.active { opacity: 1; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(14, 42, 45, 0.6);
  color: var(--cream); border: 1px solid rgba(195, 166, 46, 0.4); width: 44px; height: 44px;
  font-size: 0.9rem; cursor: pointer; transition: all 0.3s; font-family: var(--sans);
  display: flex; align-items: center; justify-content: center;
}
.carousel-arrow:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }
.carousel-dots { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.6rem; z-index: 2; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(250, 246, 235, 0.4); border: none; cursor: pointer; transition: all 0.3s; padding: 0; }
.carousel-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.founder-portrait-caption { margin-top: 1.5rem; font-family: var(--serif); font-style: italic; color: rgba(250,246,235,0.7); font-size: 1rem; line-height: 1.5; }
.founder-letter .section-label { color: var(--gold); }
.founder-greeting { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--gold-soft); margin-bottom: 2rem; }
.founder-letter p { font-size: 1.1rem; line-height: 1.95; color: rgba(250,246,235,0.88); margin-bottom: 1.5rem; }
.founder-letter p em { font-style: italic; color: var(--gold-soft); font-size: 1.15em; }
.founder-letter p strong { font-weight: 500; color: var(--cream); font-style: italic; font-family: var(--serif); }
.founder-pullquote {
  font-family: var(--serif); font-size: 1.75rem; font-style: italic; font-weight: 300; line-height: 1.4;
  color: var(--gold); padding: 1.5rem 0; border-left: 2px solid var(--gold); padding-left: 2rem; margin: 2.5rem 0;
}
.founder-signoff { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(195, 166, 46, 0.3); }
.signoff-name { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-soft); font-weight: 400; font-style: italic; margin-bottom: 0.25rem; }
.signoff-title { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.25em; color: rgba(250,246,235,0.65); text-transform: uppercase; font-weight: 400; }

/* Values Section */
.values-section { background: var(--cream); }
.values-intro { max-width: 720px; margin-bottom: 4rem; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value { padding: 3rem 2.5rem; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--white); transition: background 0.3s; }
.value:hover { background: var(--cream-dark); }
.value-numeral { font-family: var(--serif); font-size: 2.75rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.85rem; font-style: italic; }
.value-label { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; display: block; }
.value h3 { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; color: var(--ink); margin-bottom: 1rem; line-height: 1.25; }
.value h3 em { font-style: italic; color: var(--gold); }
.value p { font-size: 1rem; line-height: 1.8; color: var(--ink-soft); }

/* Manifesto */
.manifesto-section { background: var(--cream-dark); text-align: center; padding: 7rem 3rem; }
.manifesto-mark { font-family: var(--serif); font-size: 1.75rem; color: var(--gold); margin-bottom: 1.5rem; }
.manifesto-text { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.25rem); font-weight: 300; line-height: 1.5; color: var(--ink); max-width: 900px; margin: 0 auto 2rem; }
.manifesto-text em { font-style: italic; color: var(--gold); }
.manifesto-sub { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* Specific About CTA Override */
.about-cta {
  background: linear-gradient(rgba(14,42,45,0.82), rgba(14,42,45,0.92)), url('../resources/wildebeest.jpg') center/cover;
}



/* ============ FAQS PAGE SPECIFICS ============ */

/* Specific FAQ Hero Background */
.faq-hero {
  background:
    linear-gradient(180deg, rgba(14,42,45,0.3) 0%, rgba(14,42,45,0.2) 40%, rgba(14,42,45,0.85) 100%),
    url('') center/cover;
  height: 100vh; min-height: 540px;
}

.faq-subnav-inner { overflow-x: auto; }
.faq-subnav-inner .subnav-links a { white-space: nowrap; }
.faq-subnav-inner .subnav-cta { white-space: nowrap; }

/* Custom narrow container for FAQ body text */
.faq-container { max-width: 1100px; margin: 0 auto; }

/* Search Section */
.search-section { background: var(--cream-dark); padding: 4rem 3rem; text-align: center; }
.search-card { max-width: 720px; margin: 0 auto; }
.search-form { position: relative; margin-top: 2rem; }
.search-input {
  width: 100%; font-family: var(--serif); font-size: 1.15rem; color: var(--ink);
  border: 1px solid var(--rule); background: var(--white);
  padding: 1.25rem 1.5rem 1.25rem 3.5rem; outline: none; transition: border-color 0.3s;
}
.search-input:focus { border-color: var(--gold); }
.search-icon {
  position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border: 2px solid var(--gold); border-radius: 50%;
}
.search-icon::after {
  content: ''; position: absolute; top: 14px; left: 12px; width: 8px; height: 2px;
  background: var(--gold); transform: rotate(45deg);
}

/* Category Cards (TOC) */
.toc-section { background: var(--cream); }
.toc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.toc-card {
  background: var(--white); border: 1px solid var(--rule); padding: 2rem 1.75rem;
  text-decoration: none; color: inherit; transition: all 0.3s; display: block;
}
.toc-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.toc-numeral { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold); margin-bottom: 0.75rem; }
.toc-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.3; }
.toc-card p { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; }

/* FAQ Sections & Accordion */
.faq-section { border-top: 1px solid var(--rule); }
.faq-section:nth-child(even) { background: var(--cream-dark); }
.faq-header { margin-bottom: 3rem; max-width: 720px; }
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-question {
  width: 100%; background: transparent; border: none; padding: 1.75rem 0;
  text-align: left; cursor: pointer; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 2rem; font-family: var(--serif); transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-q-text { font-size: 1.3rem; font-weight: 500; color: inherit; line-height: 1.4; }
@media (max-width: 640px) { .faq-q-text { font-size: 1.1rem; } }
.faq-toggle { flex-shrink: 0; width: 24px; height: 24px; position: relative; margin-top: 0.4rem; }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; background: var(--gold); transition: transform 0.3s; }
.faq-toggle::before { top: 11px; left: 0; width: 24px; height: 1.5px; }
.faq-toggle::after { top: 0; left: 11px; width: 1.5px; height: 24px; }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 1000px; padding-bottom: 2rem; }
.faq-answer-inner { font-family: var(--serif); font-size: 1.05rem; line-height: 1.85; color: var(--ink-soft); padding-right: 4rem; max-width: 760px; }
@media (max-width: 640px) { .faq-answer-inner { padding-right: 0; } }
.faq-answer-inner p { margin-bottom: 1rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner ul { margin: 0.75rem 0 1rem 1.5rem; }
.faq-answer-inner ul li { margin-bottom: 0.5rem; list-style-type: none; position: relative; padding-left: 1.25rem; }
.faq-answer-inner ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* Contact Band Override */
.contact-band { background: var(--ink); color: var(--cream); text-align: center; padding: 5rem 3rem; }
.contact-band h2 { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 300; color: var(--cream); margin-bottom: 1rem; }
.contact-band h2 em { font-style: italic; color: var(--gold); }
.contact-band p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: rgba(250,246,235,0.85); max-width: 560px; margin: 0 auto 2.5rem; }
.contact-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact-btn {
  padding: 1rem 2.5rem; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; text-decoration: none; font-weight: 500; transition: all 0.3s;
}
.contact-btn-primary { background: var(--gold); color: var(--white); }
.contact-btn-primary:hover { background: var(--cream); color: var(--ink); }
.contact-btn-outline { background: transparent; color: var(--cream); border: 1px solid var(--cream); }
.contact-btn-outline:hover { background: var(--cream); color: var(--ink); }



/* ============ GIFT VOUCHERS PAGE ============ */

/* Gift Hero Overlay Adjustment */
.gift-hero {
  background: linear-gradient(180deg, rgba(14,42,45,0.3) 0%, rgba(14,42,45,0.2) 40%, rgba(14,42,45,0.85) 100%), url('') center/cover;
}

/* Denominations */
.denominations-section { background: var(--cream); }
.denominations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 4rem; }
.voucher { background: var(--white); border: 1px solid var(--rule); padding: 3rem 2.25rem; text-align: center; transition: all 0.4s; position: relative; overflow: hidden; }
.voucher:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 50px -25px rgba(14,42,45,0.25); }
.voucher.featured { background: var(--ink); color: var(--cream); border-color: var(--gold); }
.voucher.featured::before { content: 'Most gifted'; position: absolute; top: 1.25rem; right: -2.5rem; background: var(--gold); color: var(--ink); font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; padding: 0.4rem 3rem; transform: rotate(45deg); }
.voucher-tier { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1.5rem; }
.voucher-amount { font-family: var(--serif); font-size: 4rem; font-weight: 300; line-height: 1; margin-bottom: 0.5rem; }
.voucher-amount em { font-style: italic; color: var(--gold); font-weight: 400; }
.voucher-currency { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase; margin-bottom: 2rem; }
.voucher.featured .voucher-currency { color: rgba(250,246,235,0.6); }
.voucher-divider { width: 40px; height: 1px; background: var(--gold); margin: 0 auto 2rem; }
.voucher-includes { font-family: var(--serif); font-style: italic; font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.5rem; color: var(--ink-soft); }
.voucher.featured .voucher-includes { color: rgba(250,246,235,0.85); }
.voucher-btn { display: inline-block; padding: 0.95rem 2.25rem; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; text-decoration: none; font-weight: 500; background: transparent; color: var(--ink); border: 1px solid var(--ink); transition: all 0.3s; }
.voucher-btn:hover { background: var(--ink); color: var(--gold); }
.voucher.featured .voucher-btn { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.voucher.featured .voucher-btn:hover { background: transparent; color: var(--gold); }

/* Bespoke */
.bespoke-section { background: var(--cream-dark); text-align: center; }
.bespoke-card { max-width: 720px; margin: 0 auto; background: var(--white); padding: 4rem 3rem; border: 1px solid var(--rule); }
.bespoke-input-wrap { display: flex; justify-content: center; align-items: baseline; gap: 0.5rem; margin: 2rem 0; }
.bespoke-currency { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); font-style: italic; }
.bespoke-input { font-family: var(--serif); font-size: 3.5rem; font-weight: 300; color: var(--ink); border: none; border-bottom: 1px solid var(--rule); text-align: center; width: 240px; background: transparent; outline: none; padding: 0.5rem 0; transition: border-color 0.3s; }
.bespoke-input:focus { border-bottom-color: var(--gold); }
.bespoke-note { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }

/* How it works */
.how-section { background: var(--ink); color: var(--cream); }
.how-section .section-title { color: var(--cream); }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-top: 4rem; }
@media (max-width: 768px) { .how-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; } }
@media (max-width: 480px) { .how-grid { grid-template-columns: 1fr; } }
.how-step { position: relative; }
.how-numeral { font-family: var(--serif); font-size: 4rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 1.25rem; }
.how-step h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--cream); margin-bottom: 0.85rem; line-height: 1.3; }
.how-step p { font-size: 1rem; line-height: 1.75; color: rgba(250,246,235,0.78); }

/* Inclusions Generic Card (To avoid conflicts with list) */
.inclusion { border-left: 1px solid var(--gold); padding: 0.5rem 0 0.5rem 1.75rem; margin-bottom: 3rem;}
.inclusion h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--ink); margin-bottom: 0.75rem; line-height: 1.3; }
.inclusion p { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); }

/* Touches */
.touches-section { background: var(--cream); }
.touches-list { margin-top: 3rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 4rem; }
@media (max-width: 768px) { .touches-list { grid-template-columns: 1fr; gap: 1.5rem; } }
.touch { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--rule); }
.touch-numeral { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold); line-height: 1; padding-top: 0.2rem; flex-shrink: 0; min-width: 30px; }
.touch-text { font-family: var(--serif); font-size: 1.1rem; line-height: 1.55; color: var(--ink-soft); font-style: italic; font-weight: 400; }

/* FAQ Mini */
.faq-mini-section { background: var(--cream-dark); }
.faq-mini-list { margin-top: 3rem; }
.faq-mini-item { border-bottom: 1px solid var(--rule); padding: 1.75rem 0; }
.faq-mini-q { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--ink); margin-bottom: 0.85rem; line-height: 1.35; }
.faq-mini-a { font-size: 1rem; line-height: 1.8; color: var(--ink-soft); }

/* Gift CTA specific bg */
.gift-cta-section { background: linear-gradient(rgba(14,42,45,0.82), rgba(14,42,45,0.92)), url('../resources/banner5.jpg') center/cover; }


/* ============ FLOATING WHATSAPP BUTTON ============ */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background-color: #0E2A2D; /* Standard WhatsApp Green */
  color: #D4B94C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -5px rgba(14, 42, 45, 0.25);
  z-index: 900; /* Stays above content, but below the 999 nav and 2000 modals */
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, background-color 0.3s ease;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.floating-whatsapp:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(14, 42, 45, 0.3);
  background-color: #000; /* Slightly darker green for interaction */
}

/* Mobile Adjustments & Fixes */
@media (max-width: 640px) {
  .floating-whatsapp {
    /* Push it slightly higher to clear mobile browser toolbars and iPhone safe areas */
    bottom: max(2.5rem, env(safe-area-inset-bottom)); 
    right: 1.5rem;
    width: 50px;
    height: 50px;
    
    /* Force visibility and stack order */
    display: flex !important; 
    z-index: 9999 !important; 
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

#subscribeEmail:focus {
  border-color: var(--gold) !important;
}