/* =========================================================
   Nigel Archer Safaris — site stylesheet
   ========================================================= */
:root {
  --bg: #FAF8F3;
  --bg-alt: #F3EEE2;
  --ink: #1E2922;
  --ink-soft: #3A4A40;
  --muted: #5A635C;
  --rule: #D9D4C7;
  --rule-dark: #B8B0A0;
  --gold: #B47C3E;
  --gold-dark: #8E5F2C;
  --forest: #2A3D2E;
  --forest-deep: #1A261D;
  --red: #8B3A2A;
  --card: #FFFFFF;
  --shadow-sm: 0 2px 6px rgba(30, 41, 34, 0.06);
  --shadow-md: 0 10px 30px rgba(30, 41, 34, 0.10);
  --shadow-lg: 0 20px 60px rgba(30, 41, 34, 0.18);
  --radius: 4px;
  --radius-lg: 10px;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(.2,.6,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest-deep);
  color: #fff;
  padding: 12px 18px;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { left: 8px; top: 8px; }

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--forest); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--sans); font-weight: 600; }

p { margin: 0 0 1em; }
.lede { font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.45; color: var(--ink-soft); font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin: 0 0 1rem;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

section { padding: clamp(48px, 8vw, 110px) 0; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 1280px) {
  /* Drop backdrop-filter on mobile so position:fixed descendants escape the header's containing block */
  .site-header { backdrop-filter: none; background: var(--bg); }
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;        /* never let the nav squash the logo */
}
.brand img { height: 78px; width: auto; display: block; flex-shrink: 0; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.primary-nav a, .nav-cta {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 10px;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
}
.primary-nav a:hover { background: var(--bg-alt); color: var(--forest); }
.primary-nav a[aria-current="page"] { color: var(--gold-dark); }
.nav-cta {
  background: var(--forest);
  color: #fff !important;
  margin-left: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
}
.nav-cta:hover { background: var(--gold); color: #fff; transform: translateY(-1px); }

.mobile-nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid var(--rule);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--ink);
}
.mobile-nav-toggle:hover { background: var(--bg-alt); }
.mobile-nav-toggle .icon { display: inline-block; width: 18px; height: 2px; background: currentColor; position: relative; vertical-align: middle; }
.mobile-nav-toggle .icon::before, .mobile-nav-toggle .icon::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor;
}
.mobile-nav-toggle .icon::before { top: -6px; }
.mobile-nav-toggle .icon::after  { top: 6px; }

.mobile-primary-links { display: none; }

@media (max-width: 1280px) {
  .primary-nav { display: none; }
  .primary-nav.open {
    display: flex;
    position: fixed;
    left: 0; right: 0;
    top: var(--header-h, 92px);
    bottom: 0;
    flex-direction: column;
    background: var(--bg);
    border-top: 1px solid var(--rule);
    padding: 16px 24px 96px;
    box-shadow: var(--shadow-md);
    overflow-y: auto;
    z-index: 70;
    gap: 0;
  }
  .primary-nav.open a, .primary-nav.open .nav-cta {
    width: 100%;
    padding: 14px 10px;
    font-size: 1rem;
    border-bottom: 1px solid var(--rule);
  }
  .primary-nav.open .nav-cta { margin-top: 10px; border-radius: var(--radius); border: none; text-align: center; }
  .mobile-nav-toggle { display: inline-flex; align-items: center; gap: 10px; position: relative; z-index: 80; }
  .mobile-primary-links { display: flex; gap: 8px; font-size: 0.82rem; }
  .mobile-primary-links a { padding: 6px 10px; color: var(--forest); text-decoration: none; border: 1px solid var(--rule); border-radius: 20px; }
  .mobile-primary-links a:hover { background: var(--bg-alt); }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 680px) {
  .mobile-primary-links { display: none; }
  .brand img { height: 58px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(520px, 85vh, 820px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.55) 100%);
  z-index: -1;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 90px;
  width: 100%;
}
.hero h1 {
  color: #fff;
  max-width: 14ch;
  margin-bottom: 18px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero .lede {
  color: #F3EEE2;
  max-width: 52ch;
  font-style: normal;
}
.hero .eyebrow { color: #E6C47D; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); color: #fff; }
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-dark { background: var(--forest); color: #fff; }
.btn-dark:hover { background: var(--forest-deep); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

/* ---------- Intro / Features ---------- */
.section-head { max-width: 780px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { color: var(--gold-dark); }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}
.feature {
  padding: 30px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.feature .icon {
  width: 44px; height: 44px;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.feature h3 { margin-bottom: 10px; }

/* ---------- Split cards (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img, .split-media video {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  aspect-ratio: 4/3; object-fit: cover;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
}

/* ---------- Camp cards ---------- */
.camp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.camp-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.camp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.camp-card-media { aspect-ratio: 3/2; overflow: hidden; }
.camp-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.camp-card:hover .camp-card-media img { transform: scale(1.04); }
.camp-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.camp-card-body h3 { margin-bottom: 8px; }
.camp-card-body p { flex: 1; color: var(--muted); }
.camp-card-body .btn { align-self: flex-start; margin-top: 14px; }

/* ---------- Gallery grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-flow: dense;
  gap: 8px;
}
.gallery-grid a { display: block; position: relative; overflow: hidden; border-radius: 4px; background: var(--bg-alt); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform .5s var(--ease); }
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .tall img, .gallery-grid .wide img { aspect-ratio: auto; }
.gallery-grid .wide img { aspect-ratio: 2/1; }
.gallery-grid .tall img { aspect-ratio: 1/2; }
.gallery-grid a:hover img { transform: scale(1.05); }
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 2; }
  .gallery-grid .tall { grid-row: auto; }
  .gallery-grid .tall img { aspect-ratio: 1/1; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 11, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 86vh; width: auto; height: auto; border-radius: 4px; box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }

/* ---------- Reviews slider ---------- */
.reviews-section {
  background: var(--forest-deep);
  color: #F3EEE2;
  position: relative;
  overflow: hidden;
}
.reviews-section .eyebrow { color: #E6C47D; }
.reviews-section h2 { color: #fff; }
.reviews-section p { color: #E6E1D0; }

.reviews-slider {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
}
.reviews-track {
  display: flex;
  overflow: hidden;
}
.review {
  flex: 0 0 100%;
  padding: 20px 40px;
  text-align: center;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.review.active { opacity: 1; }
.review .stars { color: #F4C24A; font-size: 1.2rem; letter-spacing: 0.18em; margin-bottom: 20px; }
.review blockquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-style: italic;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 24px;
  quotes: "\201C""\201D";
}
.review blockquote::before { content: open-quote; font-size: 2em; line-height: 0; position: relative; top: 0.25em; margin-right: 0.1em; color: #E6C47D; }
.review blockquote::after { content: close-quote; font-size: 2em; line-height: 0; position: relative; top: 0.25em; margin-left: 0.1em; color: #E6C47D; }
.review cite { font-style: normal; font-size: 0.9rem; color: #E6E1D0; letter-spacing: 0.06em; }
.review cite strong { display: block; font-weight: 600; margin-bottom: 2px; color: #fff; font-size: 1rem; }
.review cite .source { display: inline-block; margin-top: 4px; padding: 2px 10px; border: 1px solid rgba(255,255,255,0.25); border-radius: 20px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }

.reviews-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.reviews-dots { display: flex; gap: 8px; }
.reviews-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
}
.reviews-dots button.active { background: #E6C47D; }
.reviews-arrow {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}
.reviews-arrow:hover { background: rgba(255,255,255,0.18); }

/* ---------- Trust / accreditations ---------- */
.accreditations { padding: 40px 0; background: #FFFFFF; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.accreditations-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px 60px; }
.accreditations img { max-height: 70px; width: auto; opacity: 0.78; filter: grayscale(40%); transition: opacity .2s, filter .2s; }
.accreditations img:hover { opacity: 1; filter: grayscale(0%); }

/* ---------- Reels strip (vertical "from the field" clips) ---------- */
.field-reels { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg-alt); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.field-reels .section-head { margin-bottom: 28px; }
.field-reels-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 24px; -webkit-overflow-scrolling: touch; scrollbar-color: var(--rule-dark) transparent; }
.field-reels-track::-webkit-scrollbar { height: 6px; }
.field-reels-track::-webkit-scrollbar-thumb { background: var(--rule-dark); border-radius: 6px; }
.field-reels-track::-webkit-scrollbar-track { background: transparent; }
.field-reel { flex: 0 0 230px; aspect-ratio: 9/16; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); background: var(--ink); scroll-snap-align: start; position: relative; }
.field-reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.field-reel-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 14px 12px; background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0) 100%); color: #FAF8F3; font-size: 0.88rem; font-family: var(--sans); font-weight: 500; letter-spacing: 0.01em; }
@media (max-width: 800px) {
  .field-reel { flex: 0 0 64vw; max-width: 280px; }
}

/* ---------- CTA / Enquiry ---------- */
.enquiry-band {
  background: var(--forest);
  color: #fff;
  padding: clamp(56px, 8vw, 90px) 0;
}
.enquiry-band h2 { color: #fff; }
.enquiry-band .lede { color: #E6E1D0; font-style: normal; }
.enquiry-band .eyebrow { color: #E6C47D; }

.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 820px) { .enquiry-grid { grid-template-columns: 1fr; gap: 36px; } }

.specialist-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-top: 20px;
}
.specialist-card-head { display: flex; gap: 16px; align-items: center; margin-bottom: 14px; }
.specialist-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid #E6C47D; }
.specialist-card-head strong { color: #fff; font-size: 1.1rem; display: block; }
.specialist-card-head span { color: #E6E1D0; font-size: 0.88rem; }
.specialist-card p { color: #E6E1D0; }
.specialist-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.specialist-links a {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; text-decoration: none;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  font-size: 0.88rem;
}
.specialist-links a:hover { background: rgba(255,255,255,0.08); border-color: #E6C47D; color: #E6C47D; }

/* ---------- Forms ---------- */
.enquiry-tabs { display: flex; gap: 0; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.25); }
.enquiry-tabs button {
  flex: 1;
  background: transparent;
  border: 0;
  color: #E6E1D0;
  padding: 14px 12px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.enquiry-tabs button[aria-selected="true"] { color: #fff; border-bottom-color: #E6C47D; }

form label { display: block; color: #E6E1D0; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; margin: 14px 0 6px; }
form input, form select, form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--sans);
  font-size: 1rem;
}
form input::placeholder, form textarea::placeholder { color: rgba(255,255,255,0.55); }
form input:focus, form select:focus, form textarea:focus {
  outline: 2px solid #E6C47D; outline-offset: 2px;
  background: rgba(255,255,255,0.1);
}
form textarea { min-height: 120px; resize: vertical; }
form .submit-row { margin-top: 20px; }
form .form-note { font-size: 0.85rem; color: #E6E1D0; margin-top: 12px; }

.form-success {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(230,196,125,0.5);
  padding: 20px;
  border-radius: var(--radius);
  color: #fff;
}

/* ---------- Guide cards ---------- */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .guides-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 560px) {
  .guides-grid { grid-template-columns: 1fr; }
}
.guide-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.guide-card img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.guide-card-body { padding: 20px 22px 24px; }
.guide-card-body h3 { margin-bottom: 4px; }
.guide-card-body .role { color: var(--gold-dark); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 12px; }
.guide-card-body p { color: var(--muted); font-size: 0.95rem; }

/* ---------- FAQ accordion ---------- */
.home-faq {
  padding: clamp(56px, 8vw, 90px) 0;
  background: var(--bg);
}
.home-faq .section-head { margin-bottom: 24px; }
.faq-list details {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.faq-list summary {
  font-family: var(--serif);
  font-size: 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform .2s var(--ease);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list .answer { padding-top: 14px; color: var(--ink-soft); }

/* ---------- Journal / blog ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 36px;
}
.post-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card-media { aspect-ratio: 16/10; overflow: hidden; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card-media img { transform: scale(1.04); }
.post-card-body { padding: 22px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.post-card-body .meta { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); margin-bottom: 8px; font-weight: 600; }
.post-card-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.post-card-body p { color: var(--muted); flex: 1; }
.post-card-body a.read-more { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; color: var(--forest); text-decoration: none; font-weight: 600; }
.post-card-body a.read-more:hover { color: var(--gold-dark); }

.post-hero {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.post-hero h1 { max-width: 20ch; margin: 14px auto 18px; }
.post-hero .meta { color: var(--muted); font-size: 0.9rem; }
.post-featured-image { margin: 40px auto; max-width: 1200px; padding: 0 24px; }
.post-featured-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.post-body {
  max-width: 720px; margin: 0 auto; padding: 40px 24px 80px;
}
.post-body p { font-size: 1.1rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.2em; }
.post-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.8rem;
  float: left;
  line-height: 1;
  padding: 4px 12px 0 0;
  color: var(--gold-dark);
}
.post-body h2 {
  margin-top: 2em;
  font-size: 1.8rem;
}
.post-body h3 { margin-top: 1.5em; }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 2em 0;
  padding: 0.3em 0 0.3em 20px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink-soft);
}
.post-body img { margin: 2em 0; border-radius: var(--radius-lg); }
.post-body figure { margin: 2em 0; }
.post-body figcaption { font-size: 0.85rem; color: var(--muted); margin-top: 8px; text-align: center; }

.author-box {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin-top: 50px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-box img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.author-box h4 { margin: 0 0 4px; font-family: var(--serif); font-size: 1.2rem; text-transform: none; letter-spacing: 0; }
.author-box p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 500px) { .author-box { flex-direction: column; gap: 16px; } }

/* ---------- Activity cards ---------- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 640px) {
  .activities-grid { grid-template-columns: 1fr; }
}
.activity-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  color: #fff;
}
.activity-card img, .activity-card video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.activity-card:hover img, .activity-card:hover video { transform: scale(1.05); }
.activity-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
}
.activity-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 26px;
  z-index: 1;
}
.activity-card-body h3 { color: #fff; margin-bottom: 6px; }
.activity-card-body p { color: #F3EEE2; font-size: 0.95rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: #D9D4C7;
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; font-family: var(--sans); font-weight: 600; }
.site-footer a { color: #D9D4C7; text-decoration: none; }
.site-footer a:hover { color: #E6C47D; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer .footer-brand img { height: 70px; margin-bottom: 18px; filter: brightness(1.4); }
.site-footer .footer-brand p { color: #A9A89B; font-size: 0.92rem; }
.social-links { display: flex; gap: 12px; margin-top: 14px; }
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.social-links a:hover { background: rgba(230,196,125,0.12); border-color: #E6C47D; }
.social-links svg { width: 18px; height: 18px; }
.footer-contact li { display: flex; gap: 10px; }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: #E6C47D; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: #A9A89B;
}

/* ---------- Breadcrumbs & page hero ---------- */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
  z-index: -1;
}
.page-hero-inner { padding: 70px 24px; width: 100%; max-width: 1200px; margin: 0 auto; }
.page-hero h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.breadcrumbs { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.breadcrumbs a { color: rgba(255,255,255,0.85); text-decoration: none; }
.breadcrumbs a:hover { color: #E6C47D; }

/* ---------- Video wrappers (quality preservation) ---------- */
.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
}
.video-frame video { width: 100%; height: auto; display: block; }

/* ---------- Misc ---------- */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--bg-alt);
  color: var(--forest);
  border: 1px solid var(--rule);
  margin-right: 6px;
  margin-bottom: 6px;
}

.region-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 24px;
}
.amenity-list li {
  padding-left: 26px;
  position: relative;
  color: var(--ink-soft);
}
.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.pill-nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 30px 0 50px; }
.pill-nav a {
  padding: 8px 16px;
  border: 1px solid var(--rule);
  border-radius: 30px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  background: #fff;
}
.pill-nav a:hover, .pill-nav a[aria-current="page"] { background: var(--forest); color: #fff; border-color: var(--forest); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Print */
@media print {
  .site-header, .site-footer, .enquiry-band, .mobile-nav-toggle, .hero-media, .hero::after, .whatsapp-bubble { display: none; }
  body { background: #fff; color: #000; }
}

/* -------- v4 additions -------- */

/* Screen-reader-only text */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Honeypot (Netlify anti-spam) */
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Floating WhatsApp bubble */
.whatsapp-bubble {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; padding: 12px 18px;
  border-radius: 999px; text-decoration: none; font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.whatsapp-bubble:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.28); color: #fff; }
.whatsapp-bubble svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-bubble span { font-size: 0.95rem; }
@media (max-width: 640px) {
  .whatsapp-bubble { right: 14px; bottom: 14px; padding: 11px 14px; }
  .whatsapp-bubble span { display: none; }
  .whatsapp-bubble svg { width: 24px; height: 24px; }
}

/* Newsletter band in footer */
.newsletter-band {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
  padding: 30px 0 40px; margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.newsletter-band h3 { color: #fff; font-family: var(--serif); font-size: 1.6rem; margin: 4px 0 10px; }
.newsletter-band p { color: #D9D4C7; font-size: 0.95rem; line-height: 1.55; margin: 0; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1 1 240px; padding: 12px 14px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06); color: #fff; border-radius: 6px; font-size: 0.95rem;
}
.newsletter-form input[type="email"]::placeholder { color: #B6B09E; }
.newsletter-form .btn { flex: 0 0 auto; }
@media (max-width: 800px) {
  .newsletter-band { grid-template-columns: 1fr; gap: 20px; }
}

/* Literary quote block */
.literary-quote { padding: 70px 0; background: #F7F3E8; }
.literary-quote blockquote { margin: 0; text-align: center; }
.literary-quote blockquote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem); line-height: 1.45;
  color: var(--forest); margin: 0 0 16px;
}
.literary-quote cite {
  display: block; font-style: normal; color: var(--muted);
  font-family: var(--sans); font-size: 0.95rem; letter-spacing: 0.02em;
}

/* Pull quote inside content */
.pull-quote {
  border-left: 4px solid var(--ochre);
  padding: 18px 24px; margin: 30px 0;
  background: rgba(230,196,125,0.08);
}
.pull-quote p { font-family: var(--serif); font-style: italic; font-size: 1.2rem; margin: 0 0 10px; }
.pull-quote cite { font-style: normal; color: var(--muted); font-size: 0.9rem; }

/* Press strip */
.press-strip { padding: 50px 0; background: #fff; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.press-logos {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 30px 48px;
}
.press-logos li { display: flex; align-items: center; gap: 12px; }
.press-name {
  font-family: var(--serif); font-style: italic;
  font-size: 1.35rem; color: var(--forest); letter-spacing: 0.02em;
}
.press-read {
  font-size: 0.85rem; color: var(--ochre);
  text-decoration: none; font-weight: 600;
}
.press-read:hover { text-decoration: underline; }

/* Sample itineraries grid */
.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .itinerary-grid { grid-template-columns: 1fr; gap: 28px; }
}
.itinerary-card {
  background: #fff; border: 1px solid var(--rule); border-radius: 10px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.itinerary-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.itinerary-card-media { aspect-ratio: 4/3; overflow: hidden; background: #eee; }
.itinerary-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.itinerary-card-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.itinerary-card-body h3 { font-family: var(--serif); font-size: 1.4rem; margin: 0; color: var(--forest); }
.itinerary-card-body .eyebrow { margin: 0; }
.itinerary-legs {
  list-style: none; padding: 0; margin: 4px 0 auto;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.92rem; color: var(--ink);
}
.itinerary-legs li { padding-left: 16px; position: relative; }
.itinerary-legs li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; background: var(--ochre); border-radius: 50%;
}
.itinerary-card .btn { align-self: flex-start; margin-top: 10px; }

/* Included / not-included split */
.included-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  max-width: 980px; margin: 0 auto;
}
@media (max-width: 760px) { .included-grid { grid-template-columns: 1fr; } }
.included-col { background: #fff; border: 1px solid var(--rule); border-radius: 10px; padding: 26px; }
.included-col h3 { font-family: var(--serif); font-size: 1.3rem; margin: 0 0 16px; }
.included-col h3.included::before { content: '✓'; color: #2A6F3E; margin-right: 8px; font-weight: 700; }
.included-col h3.not-included::before { content: '+'; color: var(--ochre); margin-right: 8px; font-weight: 700; }
.included-list, .not-included-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.included-list li, .not-included-list li {
  padding-left: 22px; position: relative; font-size: 0.95rem; line-height: 1.5;
}
.included-list li::before { content: '✓'; position: absolute; left: 0; color: #2A6F3E; font-weight: 700; }
.not-included-list li::before { content: '+'; position: absolute; left: 0; color: var(--ochre); font-weight: 700; }

/* Map embed */
.map-embed { margin: 0 auto; max-width: 1100px; }
.map-embed iframe { display: block; }

/* =========================================================
   v5 — Visual polish layer (motion, depth, cinematics)
   Pure enhancement: no content or layout-structure changes.
   ========================================================= */

:root {
  --ochre: #C98A3B; /* was referenced but never defined */
  --gold-light: #E6C47D;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

::selection { background: rgba(180, 124, 62, 0.28); color: var(--ink); }

h1, h2, h3 { text-wrap: balance; }

/* Anchor targets shouldn't hide under the sticky header */
[id] { scroll-margin-top: 110px; }

/* ---------- Display typography: more drama ---------- */
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }

/* Gold hairline ornament under centred section headings */
.section-head h2::after {
  content: "";
  display: block;
  width: 56px; height: 2px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* ---------- Header: condense on scroll ---------- */
.site-header { transition: box-shadow .35s var(--ease), background .35s var(--ease); }
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(30, 41, 34, 0.10); }
.brand img { transition: height .35s var(--ease); }
.site-header.is-scrolled .brand img { height: 58px; }
@media (max-width: 680px) {
  .site-header.is-scrolled .brand img { height: 48px; }
}

/* Nav links: animated gold underline instead of block hover */
@media (min-width: 1281px) {
  .primary-nav a:not(.nav-cta) { position: relative; }
  .primary-nav a:not(.nav-cta):hover { background: transparent; color: var(--forest); }
  .primary-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 10px; right: 10px; bottom: 3px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s var(--ease-out);
  }
  .primary-nav a:not(.nav-cta):hover::after,
  .primary-nav a[aria-current="page"]:not(.nav-cta)::after { transform: scaleX(1); }
}
.nav-cta { transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
.nav-cta:hover { box-shadow: 0 8px 20px rgba(180, 124, 62, 0.35); }

/* ---------- Hero cinematics ---------- */
/* Slow Ken Burns drift on still hero imagery (videos move on their own) */
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-media img,
.page-hero-media img {
  animation: kenBurns 18s var(--ease) 0.4s forwards;
  will-change: transform;
}

/* Filmic grain over hero media for a richer, less "flat web" feel */
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Deeper, more cinematic hero grade with a soft vignette */
.hero::after {
  background:
    radial-gradient(120% 90% at 70% 20%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.22) 45%, rgba(0,0,0,0.6) 100%);
}

/* Hero copy entrance — staggered rise on load */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.hero-inner > *, .page-hero-inner > * {
  animation: riseIn .9s var(--ease-out) backwards;
}
.hero-inner > :nth-child(1), .page-hero-inner > :nth-child(1) { animation-delay: .15s; }
.hero-inner > :nth-child(2), .page-hero-inner > :nth-child(2) { animation-delay: .3s; }
.hero-inner > :nth-child(3), .page-hero-inner > :nth-child(3) { animation-delay: .45s; }
.hero-inner > :nth-child(4), .page-hero-inner > :nth-child(4) { animation-delay: .6s; }

/* Poster-to-video crossfade: JS copies the poster onto the media wrapper as a
   backdrop, then fades the video in only once it is actually playing — no more
   hard cut between the poster frame and the first video frame. */
.hero-media video.video-fade,
.page-hero-media video.video-fade {
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-media video.video-fade.is-playing,
.page-hero-media video.video-fade.is-playing {
  opacity: 1;
}

/* ---------- Scroll-reveal system (elements get data-reveal from JS) ---------- */
body.anim [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity .9s var(--ease-out),
    transform .9s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
body.anim [data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ---------- Buttons: sheen sweep + lift ---------- */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .7s var(--ease);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(130%); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(180, 124, 62, 0.38);
}
.btn-dark:hover, .btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(30, 41, 34, 0.22);
}
.btn-ghost:hover { transform: translateY(-2px); }

/* ---------- Cards: more depth, gold accents ---------- */
.feature {
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s var(--ease-out);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rule-dark);
}
.feature:hover::before { transform: scaleX(1); }
.feature .icon { transition: transform .35s var(--ease-out); }
.feature:hover .icon { transform: scale(1.12) rotate(-3deg); }

.camp-card:hover, .guide-card:hover, .post-card:hover, .itinerary-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rule-dark);
}

/* ---------- Activity cards: caption rises, image breathes ---------- */
.activity-card {
  box-shadow: var(--shadow-sm);
  transition: box-shadow .45s var(--ease);
}
.activity-card:hover { box-shadow: var(--shadow-lg); }
.activity-card::after { transition: opacity .45s var(--ease); }
.activity-card-body {
  transform: translateY(8px);
  transition: transform .45s var(--ease-out);
}
.activity-card:hover .activity-card-body { transform: none; }
.activity-card-body p {
  opacity: 0.8;
  transition: opacity .45s var(--ease);
}
.activity-card:hover .activity-card-body p { opacity: 1; }

/* ---------- Gallery: quiet darken + zoom ---------- */
.gallery-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 38, 29, 0);
  transition: background .4s var(--ease);
}
.gallery-grid a:hover::after { background: rgba(26, 38, 29, 0.16); }

/* ---------- Reviews: stage lighting + watermark + true crossfade ---------- */
.reviews-section {
  background:
    radial-gradient(120% 90% at 50% 0%, #25392C 0%, var(--forest-deep) 65%);
}
.reviews-section .container { position: relative; }
.reviews-section .container::before {
  content: "\201C";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(12rem, 24vw, 20rem);
  line-height: 1;
  color: rgba(230, 196, 125, 0.07);
  pointer-events: none;
}
.reviews-track { display: grid; }
.review {
  grid-area: 1 / 1;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .7s var(--ease), visibility .7s, transform .7s var(--ease-out);
}
.review.active {
  visibility: visible;
  transform: none;
}
.reviews-dots button { transition: background .25s var(--ease), transform .25s var(--ease); }
.reviews-dots button.active { transform: scale(1.3); }
.reviews-arrow { transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); }
.reviews-arrow:hover { border-color: var(--gold-light); transform: translateY(-1px); }

/* ---------- FAQ: smooth open + marker spin ---------- */
html { interpolate-size: allow-keywords; }
.faq-list details::details-content {
  opacity: 0;
  height: 0;
  overflow: clip;
  transition: opacity .45s var(--ease), height .45s var(--ease), content-visibility .45s allow-discrete;
}
.faq-list details[open]::details-content {
  opacity: 1;
  height: auto;
}
.faq-list summary { transition: color .25s var(--ease); }
.faq-list summary:hover { color: var(--gold-dark); }
.faq-list details[open] summary::after { transform: rotate(180deg); }

/* ---------- Lightbox: fade & settle ---------- */
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoom { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.lightbox.open { animation: lbFade .3s var(--ease) both; }
.lightbox.open figure { animation: lbZoom .35s var(--ease-out) both; }

/* ---------- Field reels: lift on hover ---------- */
.field-reel { transition: transform .4s var(--ease-out), box-shadow .4s var(--ease); }
.field-reel:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ---------- Footer micro-interactions ---------- */
.site-footer ul a { transition: color .2s var(--ease), padding-left .25s var(--ease-out); }
.site-footer .footer-grid ul a:hover { padding-left: 5px; }

/* ---------- WhatsApp bubble: a few gentle pulses, then rest ---------- */
@keyframes waPulse {
  0%   { box-shadow: 0 8px 24px rgba(0,0,0,0.22), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 8px 24px rgba(0,0,0,0.22), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(0,0,0,0.22), 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-bubble { animation: waPulse 2.8s var(--ease) 2.5s 3; }

/* ---------- Accreditation logos: settle in ---------- */
.accreditations img { transition: opacity .3s, filter .3s, transform .3s var(--ease-out); }
.accreditations img:hover { transform: translateY(-3px); }

/* ---------- Specialist card / enquiry polish ---------- */
.specialist-card { transition: border-color .3s var(--ease), background .3s var(--ease); }
.specialist-card:hover { border-color: rgba(230, 196, 125, 0.55); background: rgba(255,255,255,0.07); }
.specialist-card img { transition: transform .35s var(--ease-out); }
.specialist-card:hover img { transform: scale(1.06); }

/* Respect reduced motion across the new layer */
@media (prefers-reduced-motion: reduce) {
  .hero-media img, .page-hero-media img { animation: none; }
  .hero-inner > *, .page-hero-inner > * { animation: none; }
  body.anim [data-reveal] { opacity: 1; transform: none; transition: none; }
  .whatsapp-bubble { animation: none; }
}

