/* ============================================
   SLM SAFARIS — SHARED STYLESHEET
   ============================================ */

:root {
  --emerald-deep: #0d2818;
  --emerald: #173a26;
  --emerald-mid: #1f4d33;
  --emerald-light: #2d6647;
  --gold: #c9a961;
  --gold-bright: #e3c684;
  --gold-deep: #8a6f33;
  --bone: #f4eee0;
  --bone-warm: #e8dec6;
  --ivory: #fbf8f0;
  --charcoal: #1a1a17;
  --shadow: rgba(13, 40, 24, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== NAV ===== */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}
nav.site-nav.scrolled,
nav.site-nav.solid {
  background: rgba(251, 248, 240, 0.96);
  backdrop-filter: blur(20px);
  padding: 14px 56px;
  border-bottom: 1px solid rgba(13, 40, 24, 0.08);
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--bone);
  text-transform: uppercase;
  text-decoration: none;
}
.logo span {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.05em;
}
nav.site-nav.scrolled .logo,
nav.site-nav.solid .logo { color: var(--emerald-deep); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--bone);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
}
nav.site-nav.scrolled .nav-links a,
nav.site-nav.solid .nav-links a { color: var(--emerald-deep); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 22px;
  color: var(--gold) !important;
  transition: all 0.4s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--emerald-deep) !important; }
.nav-cta::after { display: none; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bone);
  cursor: pointer;
  font-size: 22px;
}
nav.site-nav.scrolled .menu-toggle,
nav.site-nav.solid .menu-toggle { color: var(--emerald-deep); }

/* ===== PAGE HERO (fullscreen, editorial) ===== */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--emerald-deep);
}
.page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,40,24,0.55) 0%, rgba(13,40,24,0.3) 40%, rgba(13,40,24,0.88) 100%),
              radial-gradient(ellipse at 70% 30%, rgba(201,169,97,0.15), transparent 60%);
}
.page-hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.08 0 0 0 0 0.04 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.45;
  mix-blend-mode: overlay;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 100px;
  color: var(--bone);
  max-width: 1500px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 1.2s 0.3s forwards;
}
.breadcrumb::before { content: ''; width: 60px; height: 1px; background: var(--gold); }
.breadcrumb a { color: rgba(244,238,224,0.7); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span.sep { color: rgba(244,238,224,0.4); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(50px, 8.5vw, 124px);
  line-height: 0.96;
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: 1100px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1.2s 0.5s forwards;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.page-hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 1.2s 0.8s forwards;
}
.page-hero p.lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: var(--bone-warm);
  max-width: 540px;
  line-height: 1.5;
}
.page-hero-coords {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-warm);
  text-align: right;
  line-height: 2;
  border-left: 1px solid var(--gold);
  padding-left: 22px;
}
.page-hero-coords em {
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
  font-size: 16px;
}
.page-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--bone-warm);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1.5s 1.5s forwards;
  z-index: 2;
}
.page-hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.4); transform-origin: top; opacity: 0.3; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 110px 56px;
  position: relative;
}
.section-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.section-narrow { max-width: 1080px; margin: 0 auto; }
.section-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold-deep); }
.section-label.center { justify-content: center; }
h2.h-display {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 300;
  color: var(--emerald-deep);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
h2.h-display em { font-style: italic; color: var(--gold-deep); }

/* ===== AT-A-GLANCE FACTS BAR ===== */
.facts-bar {
  background: var(--ivory);
  padding: 70px 56px;
  border-bottom: 1px solid rgba(13, 40, 24, 0.08);
}
.facts-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
.fact { padding: 0; }
.fact h5 {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  font-weight: 500;
  font-family: var(--font-body);
}
.fact h5::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 12px;
}
.fact p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--emerald-deep);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.fact p em { font-style: italic; color: var(--gold-deep); font-weight: 300; }

/* ===== INTRO PROSE BLOCK ===== */
.prose-block {
  background: var(--ivory);
  padding: 140px 56px;
}
.prose-block .section-narrow {
  max-width: 980px;
  margin: 0 auto;
}
.prose-block .lead-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--emerald);
  line-height: 1.35;
  margin-bottom: 50px;
  max-width: 880px;
  letter-spacing: -0.005em;
}
.prose-block p {
  font-size: 17px;
  color: rgba(26, 26, 23, 0.75);
  margin-bottom: 24px;
  max-width: 760px;
  font-weight: 300;
  line-height: 1.85;
}
.prose-block p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: var(--gold-deep);
  float: left;
  line-height: 0.9;
  padding-right: 12px;
  padding-top: 8px;
  font-style: italic;
}

/* ===== ITINERARY (DAY BY DAY) ===== */
.itinerary {
  background: var(--bone);
  padding: 130px 56px;
}
.itinerary-inner { max-width: 1100px; margin: 0 auto; }
.itinerary-header { margin-bottom: 70px; text-align: center; }
.day-list { list-style: none; }
.day {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 50px;
  padding: 40px 0;
  border-top: 1px solid rgba(13, 40, 24, 0.12);
  align-items: start;
}
.day:last-child { border-bottom: 1px solid rgba(13, 40, 24, 0.12); }
.day-number {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
}
.day-number .num {
  display: block;
  font-size: 48px;
  font-weight: 400;
  color: var(--emerald-deep);
  line-height: 1;
  margin-bottom: 4px;
  font-style: normal;
}
.day-number .lab {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.day-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--emerald-deep);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.day-content .day-loc {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.day-content p {
  font-size: 15.5px;
  color: rgba(26, 26, 23, 0.72);
  line-height: 1.75;
  font-weight: 300;
  max-width: 720px;
}

/* ===== ACCOMMODATION GRID ===== */
.accom {
  background: var(--ivory);
  padding: 130px 56px;
}
.accom-inner { max-width: 1300px; margin: 0 auto; }
.accom-header { text-align: center; margin-bottom: 70px; }
.accom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.accom-card {
  background: var(--bone);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
}
.accom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px var(--shadow);
}
.accom-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.accom-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,40,24,0.3) 100%);
}
.accom-body { padding: 30px 28px; }
.accom-body .nights {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-deep);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.accom-body h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--emerald-deep);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.accom-body ul { list-style: none; }
.accom-body li {
  font-size: 14px;
  color: rgba(26, 26, 23, 0.7);
  padding: 4px 0 4px 18px;
  position: relative;
  font-weight: 300;
}
.accom-body li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.4;
}

/* ===== INCLUDED / EXCLUDED ===== */
.inclusions {
  background: var(--emerald-deep);
  color: var(--bone);
  padding: 130px 56px;
  position: relative;
}
.inclusions::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.66 0 0 0 0 0.38 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.inc-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.inc-header { text-align: center; margin-bottom: 70px; }
.inc-header h2 { color: var(--bone); }
.inc-header h2 em { color: var(--gold); }
.inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.inc-col h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,169,97,0.2);
}
.inc-col h4 em { font-style: italic; }
.inc-col ul { list-style: none; }
.inc-col li {
  font-size: 15px;
  color: var(--bone-warm);
  padding: 10px 0 10px 28px;
  position: relative;
  line-height: 1.6;
  font-weight: 300;
  border-bottom: 1px solid rgba(201,169,97,0.08);
}
.inc-col li::before {
  position: absolute;
  left: 0;
  top: 11px;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
}
.inc-col.included li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 500;
  font-style: normal;
}
.inc-col.excluded li::before {
  content: '×';
  color: rgba(232, 222, 198, 0.4);
  font-size: 22px;
  top: 8px;
}

/* ===== BEST TIME TO VISIT ===== */
.season {
  background: var(--bone);
  padding: 130px 56px;
}
.season-inner { max-width: 1300px; margin: 0 auto; }
.season-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 70px; align-items: end; }
.season-header p {
  font-size: 16px;
  color: rgba(26, 26, 23, 0.7);
  line-height: 1.8;
  font-weight: 300;
  max-width: 460px;
}
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: rgba(13,40,24,0.08);
}
.season-card {
  background: var(--ivory);
  padding: 40px 28px;
  transition: all 0.4s ease;
}
.season-card:hover {
  background: var(--emerald-deep);
  color: var(--bone);
}
.season-card:hover h5,
.season-card:hover .season-months { color: var(--gold); }
.season-card:hover p { color: var(--bone-warm); }
.season-months {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  transition: color 0.4s ease;
}
.season-card h5 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--emerald-deep);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  transition: color 0.4s ease;
}
.season-card p {
  font-size: 14px;
  color: rgba(26, 26, 23, 0.7);
  line-height: 1.7;
  font-weight: 300;
  transition: color 0.4s ease;
}

/* ===== PHOTO GALLERY ===== */
.gallery {
  background: var(--ivory);
  padding: 130px 56px;
}
.gallery-inner { max-width: 1500px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 70px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 40, 24, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 30px; right: 40px;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  transition: all 0.3s ease;
}
.lightbox-close:hover { background: var(--gold); color: var(--emerald-deep); }

/* ===== ENQUIRY FORM ===== */
.enquiry {
  background: var(--emerald);
  color: var(--bone);
  padding: 130px 56px;
  position: relative;
}
.enquiry-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.enquiry-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 300;
  color: var(--bone);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.enquiry-text h2 em { font-style: italic; color: var(--gold); }
.enquiry-text p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--bone-warm);
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 300;
}
.enquiry-text .contact-quick {
  font-size: 14px;
  color: var(--bone-warm);
  line-height: 2;
  font-weight: 300;
  border-top: 1px solid rgba(201,169,97,0.2);
  padding-top: 24px;
}
.enquiry-text .contact-quick strong {
  color: var(--gold);
  font-weight: 400;
  display: inline-block;
  width: 80px;
  letter-spacing: 0.05em;
}
.enquiry-text .contact-quick a { color: var(--bone); text-decoration: none; transition: color 0.3s; }
.enquiry-text .contact-quick a:hover { color: var(--gold); }

.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { position: relative; }
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,169,97,0.3);
  padding: 10px 0;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--gold); }
.field select option { background: var(--emerald-deep); color: var(--bone); }
.field textarea { resize: vertical; min-height: 90px; }
.form button {
  margin-top: 14px;
  align-self: flex-start;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--emerald-deep);
  border: 1px solid var(--gold);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: var(--font-body);
}
.form button:hover { background: transparent; color: var(--gold); }

/* ===== CTA ===== */
.cta-block {
  background: var(--ivory);
  padding: 130px 56px;
  text-align: center;
}
.cta-inner { max-width: 760px; margin: 0 auto; }
.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--emerald-deep);
  line-height: 1.02;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.cta-block h2 em { font-style: italic; color: var(--gold-deep); }
.cta-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  color: var(--emerald);
  margin-bottom: 38px;
  font-weight: 300;
}
.btn {
  display: inline-block;
  padding: 18px 42px;
  background: var(--emerald-deep);
  color: var(--bone);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  border: 1px solid var(--emerald-deep);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  font-weight: 400;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--emerald-deep); border-color: var(--gold); }
.btn:hover::before { transform: translateX(0); }
.btn-secondary {
  display: inline-block;
  padding: 18px 42px;
  background: transparent;
  color: var(--emerald-deep);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  border: 1px solid var(--emerald-deep);
  transition: all 0.4s ease;
  font-weight: 400;
  margin-left: 14px;
}
.btn-secondary:hover { background: var(--emerald-deep); color: var(--bone); }

/* ===== FOOTER ===== */
footer.site-footer {
  background: #0a1810;
  color: var(--bone-warm);
  padding: 90px 56px 36px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 70px;
}
.footer-brand .logo {
  color: var(--bone);
  margin-bottom: 22px;
  display: inline-block;
}
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--bone-warm);
  line-height: 1.6;
  max-width: 380px;
  font-weight: 300;
  margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 11px;
  transition: all 0.3s ease;
}
.footer-socials a:hover { background: var(--gold); color: var(--emerald-deep); }
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--bone-warm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 14px; color: var(--bone-warm); line-height: 1.7; font-weight: 300; }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 238, 224, 0.5);
}
.footer-bottom em {
  color: var(--gold);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav.site-nav { padding: 18px 24px; }
  nav.site-nav.scrolled, nav.site-nav.solid { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 26px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(13, 40, 24, 0.08);
  }
  .nav-links.open a { color: var(--emerald-deep); }
  .menu-toggle { display: block; }
  .section, .itinerary, .accom, .inclusions, .season, .gallery, .enquiry, .cta-block, .facts-bar, .prose-block, footer.site-footer { padding-left: 24px; padding-right: 24px; }
  .page-hero-content { padding: 0 24px 60px; }
  .page-hero-meta { flex-direction: column; align-items: flex-start; }
  .page-hero-coords { border-left: none; padding-left: 0; text-align: left; border-top: 1px solid var(--gold); padding-top: 16px; }
  .facts-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .day { grid-template-columns: 1fr; gap: 14px; padding: 30px 0; }
  .day-number { display: flex; align-items: baseline; gap: 12px; }
  .day-number .num { font-size: 36px; }
  .accom-grid { grid-template-columns: 1fr; gap: 24px; }
  .inc-grid { grid-template-columns: 1fr; gap: 50px; }
  .season-header { grid-template-columns: 1fr; gap: 30px; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
  .enquiry-inner { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .btn-secondary { margin-left: 0; margin-top: 14px; }
  .prose-block { padding: 90px 24px; }
  .prose-block p:first-of-type::first-letter { font-size: 48px; }
}
