/*
Theme Name:  Nectar Safaris
Theme URI:   https://nectarsafaris.com
Author:      Nectar Safaris
Author URI:  https://nectarsafaris.com
Description: Custom WordPress theme for Nectar Safaris — luxury Tanzania safari company.
             Design faithfully ported from React/Tailwind/shadcn source (Lovable.ai spec §1–7).
Version:     1.7.8
License:     Private
Text Domain: nectar-safaris
Tags:        safari, travel, luxury, custom-theme
*/

/* ============================================================
   §1  DESIGN TOKENS — exact values from tailwind.config.ts
   ============================================================ */
:root {
  /* Brand gold — Tailwind config hex wins over HSL utility */
  --gold:              #D4AF37;
  --gold-dark:         #9E7E2D;
  --gold-light:        #F4E9C1;

  /* Page surfaces */
  --cream:             #FEFBF6;   /* actual page bg everywhere */
  --cream-stone:       #F7F5F3;   /* alternating section bg */
  --cream-light:       #FFFFFF;

  /* Dark surfaces */
  --dark:              #121212;
  --dark-100:          #1A1A1A;
  --dark-200:          #282828;   /* footer bg */
  --dark-300:          #3F3F3F;   /* form inputs on dark */

  /* Earth palette */
  --earth-green:       #2D5016;
  --earth-green-light: #4A7C59;
  --earth-sage:        #9CAF88;
  --earth-sage-light:  #B8C5A6;
  --earth-terracotta:  #A0522D;

  /* Shadcn semantic */
  --background:        #FFFFFF;
  --foreground:        #020817;
  --muted-fg:          #64748B;
  --border-color:      #E2E8F0;
  --input-border:      #E2E8F0;
  --ring:              #020817;
  --destructive:       #EF4444;

  /* Greyscale */
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Semantic */
  --green-400: #4ADE80;
  --green-500: #22C55E;
  --green-600: #16A34A;
  --blue-50:   #EFF6FF;
  --blue-500:  #3B82F6;
  --blue-600:  #2563EB;
  --whatsapp:  #25D366;
  --whatsapp-hover: #128C7E;
  --tripadvisor: #34E0A1;

  /* Fonts */
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Type scale — Tailwind defaults */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing — Tailwind defaults */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Shadows — Tailwind exact values */
  --shadow-sm:  0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow:     0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md:  0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:  0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:  0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-gold: 0 20px 25px -5px rgba(212,175,55,0.10), 0 8px 10px -6px rgba(212,175,55,0.10);

  /* Border radius — Tailwind exact values */
  --rounded-sm:   0.125rem;   /* 2px */
  --rounded:      0.25rem;    /* 4px */
  --rounded-md:   0.375rem;   /* 6px */
  --rounded-lg:   0.5rem;     /* 8px */
  --rounded-xl:   0.75rem;    /* 12px */
  --rounded-2xl:  1rem;       /* 16px */
  --rounded-full: 9999px;

  /* Transitions */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-150: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-200: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-300: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-500: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-700: 700ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-content: 10;
  --z-fab:     40;
  --z-nav:     50;

  /* Container */
  --container-max: 1400px;
  --container-pad: 2rem;
}

/* ============================================================
   §7.14  BASE — from src/index.css
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #111827;
  background-color: #FEFBF6;   /* #FEFBF6 */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
}

/* All headings use Playfair Display (§1.2) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

p  { margin: 0 0 0.75rem; }
p:last-child { margin-bottom: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a  { color: inherit; text-decoration: none; transition: color 150ms cubic-bezier(0.4,0,0.2,1); }
img, video { display: block; max-width: 100%; height: auto; }
svg { display: inline-block; vertical-align: middle; overflow: hidden; flex-shrink: 0; }
button, input, textarea, select { font: inherit; border: none; background: none; outline: none; }

/* §7.11 focus ring */
:focus-visible { outline: 2px solid #D4AF37; outline-offset: 2px; }

/* §7.13 custom utilities */
.gold-gradient {
  background: linear-gradient(135deg, #D4AF37 0%, #F4E9C1 50%, #9E7E2D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7)); }

/* §7.3 line-clamp */
.line-clamp-2 { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.line-clamp-3 { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.line-clamp-4 { display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden; }

/* ============================================================
   §1.9  CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.container--narrow  { max-width: 48rem; }   /* max-w-3xl */
.container--article { max-width: 56rem; }   /* max-w-4xl */
.container--wide    { max-width: 80rem; }   /* max-w-7xl */

/* ============================================================
   SECTION SEPARATORS (1px rgba gold line between homepage sections)
   ============================================================ */
.section-separator {
  display: block;
  height: 1px;
  background: rgba(212,175,55,0.2);
  border: none;
  margin: 0;
}

/* ============================================================
   §2.4  SECTION HEADING PATTERN
   eyebrow (h2 Inter uppercase) + title (h3 Playfair) + description
   ============================================================ */
.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }

/* Eyebrow — Inter 14px uppercase tracking-widest */
.section-eyebrow {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4AF37;
  margin-bottom: 1rem;
}
.section-eyebrow--sage  { color: #9CAF88; }   /* Signature Journeys, Accommodations, Sustainability */
.section-eyebrow--white { color: #F4E9C1; }   /* on dark bg */

/* Title — Playfair 36px / md 48px */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-title--white { color: #fff; }
.section-title .text-gold { color: #D4AF37; }

/* Description — Inter 16px gray-600 max-w-2xl centred */
.section-desc {
  font-size: 1rem;
  color: #4B5563;
  max-width: 42rem;
  line-height: 1.625;
}
.section-header--center .section-desc { margin-left: auto; margin-right: auto; }

/* Gold divider bar — 80px × 4px solid gold (not gradient per §2.4) */
.gold-divider {
  width: 5rem;
  height: 4px;
  background: #D4AF37;
  border: none;
  margin: 0 0 1.5rem;
  display: block;
}
.gold-divider--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   §2.5  BUTTONS — zero CSS variables, all hard-coded
   ============================================================ */

/* Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  min-height: 44px;
  padding: 0 1.25rem;
  transition: background-color 150ms ease,
              color 150ms ease,
              box-shadow 150ms ease,
              border-color 150ms ease,
              transform 150ms ease;
}
.btn:focus-visible { outline: 2px solid #D4AF37; outline-offset: 2px; }
.btn:disabled, .btn[disabled] { opacity: 0.5; pointer-events: none; }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; pointer-events: none; }

/* ── Sizes ── */
.btn--sm  { height: 2.25rem; min-height: 2.25rem; padding: 0 0.75rem;  font-size: 0.8125rem; }
.btn--md  { height: 2.5rem;  min-height: 2.5rem;  padding: 0 1rem; }
.btn--lg  { height: 3rem;    min-height: 3rem;     padding: 0 2rem;     font-size: 1rem; }
.btn--icon{ height: 2.5rem;  width: 2.5rem;        padding: 0;          border-radius: 9999px; min-height: 0; }
.btn--full { width: 100%; justify-content: center; }
.btn--pill { border-radius: 9999px; }

/* ── Gold — primary CTA ── */
.btn--gold {
  background: #9E7E2D;
  color: #ffffff;
  border-color: #9E7E2D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.08);
}
.btn--gold:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.12);
}
.btn--gold:active { background: #B8960E; }

/* ── Gold outline (on dark surfaces) ── */
.btn--gold-outline {
  background: transparent;
  color: #F4E9C1;
  border-color: #F4E9C1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.btn--gold-outline:hover { background: #F4E9C1; color: #1A1A2E; border-color: #F4E9C1; }

/* ── Primary = alias for gold ── */
.btn--primary {
  background: #9E7E2D;
  color: #ffffff;
  border-color: #9E7E2D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.08);
}
.btn--primary:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.12);
}
.btn--primary:active { background: #B8960E; }

/* ── Outline (on light surfaces) ── */
.btn--outline {
  background: #ffffff;
  color: #374151;
  border-color: #D1D5DB;
}
.btn--outline:hover {
  border-color: #D4AF37;
  color: #9E7E2D;
  background: rgba(212,175,55,0.05);
}

/* ── White outline (on image/dark backgrounds) ── */
.btn--outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.65);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* ── Read More / View All ── */
.btn--read-more {
  background: transparent;
  color: #9E7E2D;
  border-color: #9E7E2D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
}
.btn--read-more:hover { background: #9E7E2D; color: #ffffff; border-color: #9E7E2D; }

/* ── Ghost ── */
.btn--ghost { background: transparent; color: #374151; border-color: transparent; }
.btn--ghost:hover { background: #F3F4F6; color: #111827; }

/* ── Dark ── */
.btn--dark { background: #111827; color: #ffffff; border-color: #111827; }
.btn--dark:hover { background: #1F2937; border-color: #1F2937; color: #ffffff; }

/* ── WhatsApp ── */
.btn--whatsapp { background: #25D366; color: #ffffff; border-color: #25D366; }
.btn--whatsapp:hover { background: #128C7E; border-color: #128C7E; color: #ffffff; }

/* ── Hero CTA ── */
.btn--hero {
  border-radius: 0.25rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  min-height: 48px;
}
@media (min-width: 768px) { .btn--hero { padding: 1rem 2rem; font-size: 1.125rem; } }
.btn--hero:hover { transform: scale(1.04); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35); }

/* ── Duplicate-definition cleanup ── */
.btn--rounded-sm   { border-radius: 0.125rem; }
.btn--rounded-full { border-radius: 9999px; }

/* ============================================================
   §2.6  CARDS
   ============================================================ */

/* Base shadcn card */
.card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.08);
}
.card__header  { padding: 1.5rem 1.5rem 0; }
.card__body    { padding: 1.5rem; }
.card__footer  { padding: 0 1.5rem 1.5rem; display: flex; align-items: center; }

/* Destination / Lodge card hover */
.card--dest {
  height: 100%;
  transition: all 300ms cubic-bezier(0.4,0,0.2,1);
}
.card--dest:hover {
  background: #F7F5F3;
  box-shadow: 0 4px 14px 0 rgba(212,175,55,0.3);
}
.card--dest .card__img img { transition: transform 500ms cubic-bezier(0.4,0,0.2,1); }
.card--dest:hover .card__img img { transform: scale(1.05); }
.card__img { position: relative; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Aspect ratio helpers */
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-4-3  { aspect-ratio: 4/3; }
.aspect-1-1  { aspect-ratio: 1/1; }

/* Package card hover lift */
.card--package {
  background: #fff;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  transition: all 300ms cubic-bezier(0.4,0,0.2,1);
}
.card--package:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}
.card--package .card__img { height: 14rem; } /* h-56 = 224px */
.card--package .card__img img { transition: transform 500ms cubic-bezier(0.4,0,0.2,1); }
.card--package:hover .card__img img { transform: scale(1.05); }
.card--package .card__body { padding: 1.5rem; }
.card--package__title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 500; color: #111827; }
.card--package__duration { font-size: 0.875rem; color: #374151; font-weight: 500; margin-bottom: 0.5rem; }
.card--package__desc { font-size: 0.875rem; color: #374151; margin-bottom: 1.5rem; }
.card--package__footer { display: flex; justify-content: space-between; align-items: center; }
.card--package__price { color: #9E7E2D; font-weight: 600; font-family: 'Playfair Display', serif; }

/* Highlight pill inside package card */
.highlight-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: #FEFBF6;
  color: #1F2937;
  border-radius: 0.25rem;
  border: 1px solid #D1D5DB;
  font-weight: 500;
}

/* Amenity chip inside lodge card */
.amenity-chip {
  display: inline-flex;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: rgba(212,175,55,0.1);
  color: #D4AF37;
  border-radius: 0.375rem;
  border: 1px solid rgba(212,175,55,0.2);
  font-weight: 500;
}

/* ============================================================
   SIGNATURE JOURNEY CARD (§3.1.C — full-bleed overlay card)
   ============================================================ */
.journey-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
  height: 500px;
  display: block;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: transform 500ms cubic-bezier(0.4,0,0.2,1);
}
.journey-card:hover { transform: translateY(-0.5rem); }

.journey-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.journey-card:hover .journey-card__img { transform: scale(1.1); }

.journey-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.journey-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
@media (min-width: 768px) { .journey-card__content { padding: 2rem; } }

.journey-card__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F4E9C1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  margin-bottom: 0.5rem;
  font-weight: 500;
  display: block;
}
.journey-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
  line-height: 1.25;
}
@media (min-width: 768px) { .journey-card__title { font-size: 1.875rem; } }
.journey-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  margin-bottom: 0.75rem;
}
.journey-card__price {
  color: #F4E9C1;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  margin-bottom: 0.75rem;
  display: block;
}
/* "Explore" CTA button — hidden until hover, rises up */
.journey-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: #9E7E2D;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0.25rem;
  transform: translateY(2.5rem);
  opacity: 0;
  transition: transform 300ms cubic-bezier(0.4,0,0.2,1), opacity 300ms cubic-bezier(0.4,0,0.2,1), background 150ms;
  align-self: flex-start;
}
.journey-card__cta svg { width: 14px; height: 14px; }
.journey-card__cta:hover { background: #D4AF37; }
.journey-card:hover .journey-card__cta {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   §3.1.F  WHY CHOOSE US CARDS
   bg-cream-stone section, white cards
   ============================================================ */
.why-section { padding: 5rem 0; background: #F7F5F3; }
.why-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4,1fr); } }

.why-card {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  transition: box-shadow 300ms cubic-bezier(0.4,0,0.2,1);
}
.why-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.why-card__icon {
  width: 4rem; height: 4rem;
  background: rgba(212,175,55,0.1);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: #D4AF37;
}
.why-card__icon svg { width: 2rem; height: 2rem; }
.why-card__title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #111827; margin-bottom: 0.75rem; }
.why-card__text  { font-size: 0.875rem; color: #4B5563; line-height: 1.625; }

/* ============================================================
   §3.1.G  TESTIMONIAL CARDS
   bg-cream-stone, 4px gold left border
   ============================================================ */
.testimonials-section { padding: 5rem 0; background: #fff; }
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

.testimonial-card {
  padding: 1.5rem;
  background: #F7F5F3;
  border-radius: 0.5rem;
  border-left: 4px solid #D4AF37;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 300ms cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }

.testimonial-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.testimonial-card__stars { display: flex; gap: 2px; color: #D4AF37; }
.testimonial-card__stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.testimonial-card__source { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.5rem; border-radius: 0.375rem; }
.testimonial-card__source--ta { background: rgba(52,224,161,0.1); color: #34E0A1; }
.testimonial-card__source--g  { background: #EFF6FF; color: #2563EB; }

.testimonial-card__quote { color: #D4AF37; margin-bottom: 1rem; }
.testimonial-card__quote svg { width: 1.25rem; height: 1.25rem; }

.testimonial-card__text {
  font-size: 1rem;
  color: #374151;
  font-style: italic;
  line-height: 1.625;
  flex: 1;
  margin-bottom: 1rem;
}

.testimonial-card__author {
  border-top: 1px solid #E5E7EB;
  padding-top: 1rem;
  margin-top: auto;
}
.testimonial-card__name { font-family: 'Playfair Display', serif; font-size: 0.875rem; font-weight: 600; color: #111827; }
.testimonial-card__location { font-size: 0.75rem; color: #4B5563; }

/* ============================================================
   §3.1.A  FEATURED PARTNERS STRIP
   ============================================================ */
.partners-section { padding: 3rem 0; background: #F7F5F3; }
.partners-label {
  text-align: center;
  font-size: 0.875rem;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.partners-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) { .partners-row { flex-wrap: nowrap; } }
.partners-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: 10rem;
  transition: opacity 300ms cubic-bezier(0.4,0,0.2,1);
}
@media (min-width: 768px) { .partners-row a { height: 6rem; width: 12rem; } }
.partners-row a:hover { opacity: 0.8; }
.partners-row img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* ============================================================
   §3.1.I  SUSTAINABILITY SECTION
   ============================================================ */
.sustainability-section { padding: 5rem 0; background: rgba(156,175,136,0.1); }
.sustainability-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .sustainability-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .sustainability-grid { grid-template-columns: repeat(4,1fr); } }

.sustainability-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.08);
  transition: box-shadow 300ms cubic-bezier(0.4,0,0.2,1);
}
.sustainability-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.sustainability-card__icon {
  width: 4rem; height: 4rem;
  background: rgba(156,175,136,0.2);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: #9CAF88;
}
.sustainability-card__icon svg { width: 2rem; height: 2rem; }
.sustainability-card__title { font-family: 'Playfair Display', serif; font-size: 1.125rem; color: #111827; margin-bottom: 0.5rem; }
.sustainability-card__text  { font-size: 0.875rem; color: #4B5563; }

/* ============================================================
   §2.7  ACCORDION
   ============================================================ */
.accordion { display: flex; flex-direction: column; gap: 1rem; }

.accordion__item {
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.08);
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  background: transparent;
  border: none;
  text-align: left;
  transition: background-color 150ms cubic-bezier(0.4,0,0.2,1);
}
.accordion__trigger:hover { background: #F7F5F3; }

.accordion__chevron {
  width: 1rem; height: 1rem;
  flex-shrink: 0;
  transition: transform 200ms cubic-bezier(0,0,0.2,1);
  color: #6B7280;
}
.accordion__item.open .accordion__chevron { transform: rotate(180deg); }

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms cubic-bezier(0,0,0.2,1);
}
.accordion__content--inner {
  padding: 0 1.5rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.625;
}

/* ============================================================
   §2.9  FORMS
   ============================================================ */
.form-group  { margin-bottom: 1.25rem; }
.form-label  { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; margin-bottom: 0.5rem; line-height: 1; }

.form-input,
.form-textarea,
.form-select {
  display: block;
  width: 100%;
  height: 2.5rem;
  border-radius: 0.375rem;
  border: 1px solid #D1D5DB;
  background: #fff;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;   /* 16px on mobile prevents iOS zoom */
  font-family: 'Inter', system-ui, sans-serif;
  color: #111827;
  transition: border-color 150ms cubic-bezier(0.4,0,0.2,1), box-shadow 150ms cubic-bezier(0.4,0,0.2,1);
}
@media (min-width: 768px) { .form-input, .form-textarea, .form-select { font-size: 0.875rem; } }
.form-input::placeholder, .form-textarea::placeholder { color: #6B7280; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #D4AF37;
}
.form-textarea { height: auto; min-height: 5rem; resize: vertical; }

/* Dark variant (enquiry dialog) */
.form-input--dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #ffffff;
  height: 2.5rem;
}
.form-input--dark::placeholder { color: rgba(255,255,255,0.4); }
.form-input--dark:focus {
  border-color: #D4AF37;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
  outline: none;
}
.form-input--dark option { background: #1C1C1C; color: #ffffff; }

.form-error   { font-size: 0.875rem; color: #EF4444; margin-top: 0.25rem; display: none; }
.form-error.visible { display: block; }
.form-success { padding: 0.75rem 1rem; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); border-radius: 0.375rem; color: #4ADE80; font-size: 0.875rem; display: none; }
.form-success.visible { display: block; }

/* ============================================================
   §2.10  TRUST BADGES — hero variant (pill with backdrop-blur)
   ============================================================ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .trust-badges { gap: 1.5rem; margin-top: 2rem; } }

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: background 300ms cubic-bezier(0.4,0,0.2,1);
}
.trust-badge-pill:hover { background: rgba(255,255,255,0.2); }
.trust-badge-pill__icon  { width: 2rem; height: 2rem; flex-shrink: 0; color: #fff; }
.trust-badge-pill__rating{ font-size: 0.875rem; font-weight: 600; color: #fff; }
.trust-badge-pill__count { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.trust-badge-pill__stars {
  display: flex; gap: 2px;
  font-size: 0.75rem; color: #D4AF37; letter-spacing: 1px;
}

/* Compact badge (navbar inline, no bg pill) */
.trust-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  transition: opacity 150ms cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.trust-badge-inline:hover { opacity: 0.8; }
.trust-badge-inline__rating { font-weight: 500; }
.trust-badge-inline__count  { color: #6B7280; }
.trust-badges-sep { color: #6B7280; }

/* ============================================================
   §2.11  PAGE HERO (70vh, no overlay, text-shadow readability)
   ============================================================ */
.page-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
/* NO overlay — text-shadow only per §2.11 */

.page-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 4rem;   /* clear navbar mobile */
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}
@media (min-width: 768px) { .page-hero__content { padding-top: 0; } }

.page-hero__inner { max-width: 56rem; margin: 0 auto; }

.page-hero__eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4AF37;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  filter: drop-shadow(0 10px 8px rgba(0,0,0,0.04));
}
@media (min-width: 768px) { .page-hero__eyebrow { font-size: 0.875rem; margin-bottom: 1.5rem; } }

.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
  filter: drop-shadow(0 10px 8px rgba(0,0,0,0.04));
}
@media (min-width: 768px) { .page-hero__title { font-size: 3rem; margin-bottom: 1.5rem; } }
@media (min-width: 1024px){ .page-hero__title { font-size: 3.75rem; } }

.page-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  line-height: 1.625;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  filter: drop-shadow(0 10px 8px rgba(0,0,0,0.04));
  padding: 0 0.5rem;
}
@media (min-width: 768px) { .page-hero__subtitle { font-size: 1.25rem; margin-bottom: 2rem; } }

/* ============================================================
   §4.1  HOME HERO (100vh, no overlay, text-shadow readability)
   ============================================================ */
.home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero__bg { position: absolute; inset: 0; }
.home-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
/* NO overlay per spec */

.home-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  padding: 5rem 0.5rem 2rem;   /* pt-20 clears fixed navbar mobile */
}
@media (min-width: 768px) { .home-hero__content { padding: 0 0.5rem; } }

.home-hero__inner { max-width: 64rem; margin: 0 auto; }

.home-hero__label {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.home-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
  filter: drop-shadow(0 10px 8px rgba(0,0,0,0.04));
}
.home-hero__title em { font-style: italic; color: #D4AF37; }
@media (min-width: 768px) { .home-hero__title { font-size: 3rem; margin-bottom: 1.5rem; } }
@media (min-width: 1024px){ .home-hero__title { font-size: 4.5rem; } }

.home-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  max-width: 48rem;
  margin: 0 auto 2rem;
  line-height: 1.625;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  padding: 0 0.5rem;
}
@media (min-width: 768px) { .home-hero__subtitle { font-size: 1.25rem; margin-bottom: 3rem; } }
@media (min-width: 1024px){ .home-hero__subtitle { font-size: 1.5rem; } }

.home-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 768px) { .home-hero__actions { gap: 1.5rem; } }

/* ============================================================
   §2.12  BREADCRUMB
   ============================================================ */
/* Breadcrumb — matches nectar_breadcrumb() output: nav.breadcrumb-nav > .container > ol.breadcrumb__list */
.breadcrumb-nav {
    background: #ffffff;
    border-bottom: 1px solid #F3F4F6;
    padding: 0.625rem 0;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none !important;
    list-style-type: none !important;
    counter-reset: none;
    margin: 0;
    padding: 0;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    list-style: none !important;
    list-style-type: none !important;
}

.breadcrumb__item::before,
.breadcrumb__item::marker { display: none !important; content: none !important; }

.breadcrumb__link {
    font-size: 0.8125rem;
    color: #6B7280;
    text-decoration: none;
    transition: color 150ms;
    white-space: nowrap;
}
.breadcrumb__link:hover { color: #D4AF37; }

.breadcrumb__current {
    font-size: 0.8125rem;
    color: #111827;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
    display: inline-block;
}

/* Separator li — chevron SVG */
.breadcrumb__sep {
    display: flex;
    align-items: center;
    padding: 0 0.375rem;
    list-style: none !important;
}
.breadcrumb__sep svg {
    width: 0.875rem;
    height: 0.875rem;
    color: #D1D5DB;
    display: block;
}

/* Fallback for old .breadcrumb class (if still used anywhere) */
.breadcrumb { padding: 0.75rem 0; }
.breadcrumb-wrap { padding: 0.75rem 0; }

/* ============================================================
   §2.3  FLOATING ACTION BUTTONS
   ============================================================ */
.fab-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 0.75rem;
}

.fab-toggle {
  width: 3.5rem; height: 3.5rem;
  border-radius: 9999px;
  background: #9E7E2D;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  border: none;
  transition: transform 300ms cubic-bezier(0.4,0,0.2,1), background-color 300ms cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
.fab-toggle:hover { background: #D4AF37; }
.fab-toggle.is-open { transform: rotate(45deg); }
.fab-toggle svg { width: 1.5rem; height: 1.5rem; }

.fab-options {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.4,0,0.2,1), transform 300ms cubic-bezier(0.4,0,0.2,1);
}
.fab-options.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }

.fab-pill {
  height: 3rem;
  padding: 0 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.fab-pill svg { width: 1.25rem; height: 1.25rem; }
.fab-pill--whatsapp { background: #25D366; color: #fff; }
.fab-pill--whatsapp:hover { background: #128C7E; }
.fab-pill--call { background: #fff; color: #D4AF37; border: 1px solid #D1D5DB; }
.fab-pill--call:hover { background: #F9FAFB; }
.fab-pill--enquire { background: #9E7E2D; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; }
.fab-pill--enquire:hover { background: #D4AF37; }

/* Pulsing dot */
.pulse-dot {
  position: relative;
  display: inline-flex;
  width: 0.5rem; height: 0.5rem; flex-shrink: 0;
}
.pulse-dot__ring {
  position: absolute; inset: 0;
  border-radius: 9999px;
  background: #fff; opacity: 0.75;
  animation: ping 1s cubic-bezier(0,0,0.2,1) infinite;
}
.pulse-dot__core {
  position: relative;
  width: 0.5rem; height: 0.5rem;
  border-radius: 9999px;
  background: #fff;
}

/* Single FAB pill (WhatsApp only mode) */
.fab-single {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 40;
  height: 3.5rem;
  padding: 0 1.5rem;
  border-radius: 9999px;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  text-decoration: none;
  font-weight: 500;
  transition: background 300ms cubic-bezier(0.4,0,0.2,1);
}
.fab-single:hover { background: #128C7E; color: #fff; }
.fab-single svg { width: 1.5rem; height: 1.5rem; }
.fab-single__label { display: none; }
@media (min-width: 640px) { .fab-single__label { display: inline; } }

/* ============================================================
   §2.8  MODAL / ENQUIRY DIALOG
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}
.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 1.75rem;
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
  transform: scale(0.95) translateY(-1.5rem);
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
  position: relative;
}
.modal-overlay.is-active .modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
@media (max-width: 480px) {
  .modal { border-radius: 0.75rem 0.75rem 0 0; max-width: 100%; }
  .modal-overlay { align-items: flex-end; padding: 0; }
}

/* Dark variant — spec §2.8 */
.modal--dark {
  background: #1C1C1C;
  border-color: rgba(158,126,45,0.3);
  color: #ffffff;
}

.modal__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255,255,255,0.1);
  border-radius: 0.25rem;
  cursor: pointer;
  color: #ffffff;
  transition: background 150ms;
  padding: 0;
}
.modal--dark .modal__close { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.modal--dark .modal__close:hover { background: rgba(255,255,255,0.2); color: #ffffff; }
.modal__close:hover { background: #F3F4F6; }
.modal__close svg { width: 1rem; height: 1rem; }

/* ============================================================
   §3.4  ITINERARY TIMELINE
   ============================================================ */
.itinerary { display: flex; flex-direction: column; gap: 1.5rem; }

.itinerary__day {
  border-left: 2px solid #9E7E2D;
  padding-left: 1.5rem;
  position: relative;
}
.itinerary__day-dot {
  position: absolute;
  left: -0.5625rem;   /* -9px straddles the border */
  top: 0;
  width: 1rem; height: 1rem;
  border-radius: 9999px;
  background: #9E7E2D;
  /* no gradient, no shadow per §4.4 */
}
.itinerary__day-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #111827;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.itinerary__day-desc {
  font-size: 1rem;
  color: #374151;
  line-height: 1.625;
  margin-bottom: 0.75rem;
}
.itinerary__day-meta { display: flex; flex-wrap: wrap; gap: 1rem; }
.itinerary__day-meta-label { font-size: 0.875rem; font-weight: 600; color: #9E7E2D; }
.itinerary__day-meta-value { font-size: 0.875rem; color: #374151; }

/* ============================================================
   §3.8  LODGE GALLERY
   ============================================================ */
.gallery-main {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #F3F4F6;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms cubic-bezier(0.4,0,0.2,1); }
.gallery-main:hover img { transform: scale(1.05); }
.gallery-main__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.2); color: #fff;
  border: none; cursor: pointer; border-radius: 50%;
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 150ms cubic-bezier(0.4,0,0.2,1), background 150ms cubic-bezier(0.4,0,0.2,1);
}
.gallery-main:hover .gallery-main__nav { opacity: 1; }
.gallery-main__nav:hover { background: rgba(0,0,0,0.4); }
.gallery-main__nav--prev { left: 1rem; }
.gallery-main__nav--next { right: 1rem; }
.gallery-main__counter {
  position: absolute; bottom: 1rem; right: 1rem;
  background: rgba(0,0,0,0.5); color: #fff;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  font-size: 0.875rem;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}
@media (min-width: 768px) { .gallery-thumbs { grid-template-columns: repeat(6,1fr); } }
.gallery-thumb {
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid #E5E7EB;
  cursor: pointer;
  transition: all 200ms;
}
.gallery-thumb:hover { transform: scale(1.05); border-color: #D1D5DB; }
.gallery-thumb.is-active { border-color: #D4AF37; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   §3.1.E  LODGE CATEGORY BADGES
   ============================================================ */
.badge-luxury   { background: #D4AF37; color: #fff; }
.badge-midrange { background: #3B82F6; color: #fff; }
.badge-budget   { background: #22C55E; color: #fff; }

.badge {
  display: inline-flex; align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem; font-weight: 500;
  border-radius: 0.375rem;
  line-height: 1;
}
.badge--secondary { background: #F1F5F9; color: #0F172A; }
.badge--outline   { background: transparent; border: 1px solid #E2E8F0; }

/* ============================================================
   §3.15  TRIP DESIGNER
   ============================================================ */
.trip-designer-section { padding: 3rem 0; background: #FEFBF6; }
.trip-designer-wrap    { max-width: 48rem; margin: 0 auto; }

.trip-progress { margin-bottom: 2.5rem; }
.trip-progress__labels {
  display: flex; justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.75rem; font-weight: 500;
}
.trip-progress__label         { color: #6B7280; }
.trip-progress__label.is-active { color: #D4AF37; font-weight: 600; }

.trip-progress__track {
  height: 0.5rem;
  background: #F1F5F9;
  border-radius: 9999px;
  overflow: hidden;
}
.trip-progress__fill {
  height: 100%;
  background: #D4AF37;
  border-radius: 9999px;
  transition: width 300ms cubic-bezier(0.4,0,0.2,1);
}

.trip-step {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border: 1px solid #F7F5F3;
}
@media (min-width: 640px) { .trip-step { padding: 2rem; } }

.trip-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #D4AF37;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}

.trip-option-card {
  cursor: pointer;
  border: 2px solid #E5E7EB;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  transition: border-color 150ms cubic-bezier(0.4,0,0.2,1), background 150ms cubic-bezier(0.4,0,0.2,1);
}
.trip-option-card.is-selected { border-color: #D4AF37; background: #F7F5F3; }
.trip-option-card__icon { color: #D4AF37; width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.trip-option-card__label { font-size: 1.125rem; font-weight: 500; color: #111827; }
.trip-option-card__desc  { font-size: 0.875rem; color: #4B5563; margin-top: 0.25rem; }

.trip-summary {
  background: #F7F5F3;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #E5E7EB;
}
.trip-summary__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.trip-summary__heading { font-size: 1.125rem; font-weight: 500; color: #111827; }
.trip-summary__price { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #D4AF37; font-weight: 600; }
.trip-summary__row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 0.375rem 0; }
.trip-summary__label { color: #4B5563; }
.trip-summary__value { color: #111827; font-weight: 500; }

.trip-nav { display: flex; justify-content: space-between; align-items: center; }

/* ============================================================
   §3.12  FAQ TABS
   ============================================================ */
.faq-tabs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #F7F5F3;
  padding: 0.25rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  gap: 0.25rem;
}
@media (min-width: 768px) { .faq-tabs-list { grid-template-columns: repeat(4,1fr); } }

/* ============================================================
   §2.12  PROSE (blog / legal pages)
   ============================================================ */
.prose {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.625;
}
.prose h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #111827; margin: 1.5em 0 0.5em; }
.prose h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #111827; margin: 1.25em 0 0.5em; }
.prose h4 { font-family: 'Playfair Display', serif; font-size: 1.125rem; color: #111827; margin: 1em 0 0.25em; }
.prose p  { margin-bottom: 0.75rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { list-style: disc; margin-bottom: 0.25rem; }
.prose ol li { list-style: decimal; margin-bottom: 0.25rem; }
.prose a  { color: #9E7E2D; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: #D4AF37; }
.prose strong { font-weight: 600; color: #111827; }
.prose blockquote { border-left: 4px solid #D4AF37; padding: 1rem 1.5rem; margin: 1.5rem 0; background: rgba(212,175,55,0.05); font-style: italic; color: #4B5563; }
.prose img { border-radius: 0.5rem; margin: 1.5rem 0; }
.prose--lg { font-size: 1.25rem; }

/* ============================================================
   §5  ANIMATIONS / KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(1rem); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes ping {
  0%       { transform: scale(1); opacity: 1; }
  75%, 100%{ transform: scale(2); opacity: 0; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes pulse-skeleton {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* Scroll-triggered animation classes (§2.14) */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(2rem);    /* translateY(32px) = translate-y-8 */
  transition: opacity 1000ms cubic-bezier(0.4,0,0.2,1), transform 1000ms cubic-bezier(0.4,0,0.2,1);
}
.fade-in-scroll.is-visible { opacity: 1; transform: translateY(0); }
.fade-in-scroll--d1 { transition-delay: 100ms; }
.fade-in-scroll--d2 { transition-delay: 200ms; }
.fade-in-scroll--d3 { transition-delay: 300ms; }

.slide-in-scroll {
  opacity: 0;
  transform: translateX(-3rem);   /* translateX(-48px) = -translate-x-12 */
  transition: opacity 1000ms cubic-bezier(0.4,0,0.2,1), transform 1000ms cubic-bezier(0.4,0,0.2,1);
}
.slide-in-scroll.is-visible { opacity: 1; transform: translateX(0); }

/* Utility animation classes */
.animate-fade-in     { animation: fadeIn    0.6s cubic-bezier(0,0,0.2,1) forwards; }
.animate-fade-in-up  { animation: fadeInUp  0.6s cubic-bezier(0,0,0.2,1) forwards; }
.animate-shimmer     { animation: shimmer   1.5s ease-in-out infinite; }
.animate-pulse-gold  { animation: pulse-gold 2s infinite; }
.animate-float       { animation: float     6s ease-in-out infinite; }
.animate-spin        { animation: spin      1s linear infinite; }
.animate-ping        { animation: ping      1s cubic-bezier(0,0,0.2,1) infinite; }
.animate-pulse       { animation: pulse-skeleton 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.animate-d1 { animation-delay: 0.1s; }
.animate-d2 { animation-delay: 0.2s; }
.animate-d3 { animation-delay: 0.3s; }

/* ============================================================
   §6  RESPONSIVE GRID HELPERS
   ============================================================ */
.grid-auto-2 { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
.grid-auto-3 { display: grid; gap: 2rem; grid-template-columns: repeat(3, 1fr); }
.grid-auto-4 { display: grid; gap: 2rem; grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1023px) {
  .grid-auto-3, .grid-auto-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .grid-auto-2, .grid-auto-3, .grid-auto-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITY HELPERS
   ============================================================ */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.no-print    { }   /* content controlled via @media print below */

/* ============================================================
   §7.1  PRINT
   ============================================================ */
@media print {
  .no-print { display: none !important; }
}

/* ============================================================
   BACKWARD COMPATIBILITY ALIASES
   Old variable names → new names (for package.css, lodge.css etc.)
   ============================================================ */
:root {
  /* Old space vars → new */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Old color names */
  --color-gold:        #D4AF37;
  --color-gold-dark:   #9E7E2D;
  --color-gold-light:  #F4E9C1;
  --color-navy:        #121212;
  --color-green:       #2D5016;
  --color-grey-50:     #F9FAFB;
  --color-grey-100:    #F3F4F6;
  --color-grey-200:    #E5E7EB;
  --color-grey-300:    #D1D5DB;
  --color-grey-400:    #9CA3AF;
  --color-grey-500:    #6B7280;
  --color-grey-600:    #4B5563;
  --color-grey-700:    #374151;
  --color-grey-800:    #1F2937;
  --color-grey-900:    #111827;
  --color-white:       #ffffff;
  --color-cream:       #FEFBF6;
  --color-cream-stone: #F7F5F3;
  --color-gold-pale:   rgba(212,175,55,0.1);

  /* Old radius names */
  --radius-sm:   0.25rem;
  --radius-md:   0.375rem;
  --radius-lg:   0.5rem;
  --radius-xl:   0.75rem;
  --radius-2xl:  1rem;
  --radius-full: 9999px;

  /* Old text var names */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Old shadow names */
  --shadow-sm:  0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md:  0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:  0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:  0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Old transition names */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Font families (old names) */
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Section padding (old) */
  --section-padding: 5rem;

  /* Container (old) */
  --container-max-width: 80rem;
}

/* ============================================================
   MISSING CLASSES — used in templates, fixed here
   ============================================================ */

/* Section padding utility */
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--grey { background: #F7F5F3; }
.section--white { background: #ffffff; }
.section--cream { background: #FEFBF6; }

/* Section label (old name used in many templates) */
.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4AF37;
  margin-bottom: 1rem;
}

/* Margin utilities used in templates */
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-12 { margin-bottom: 3rem; }

/* Fade-in delay variants used in why-choose-us */
.fade-in-delay-1 { transition-delay: 100ms; }
.fade-in-delay-2 { transition-delay: 200ms; }
.fade-in-delay-3 { transition-delay: 300ms; }

/* ── WHY CHOOSE US SECTION ── */
.why-choose-us {
  padding: 5rem 0;
  background: #F7F5F3;
}

/* The grid class used in the template */
.why-choose-us__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .why-choose-us__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-choose-us__grid { grid-template-columns: repeat(4, 1fr); } }

/* ── PACKAGES GRID ── */
.packages-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── FEATURED PACKAGES section wrapper ── */
.featured-packages { padding: 5rem 0; background: #FEFBF6; }

/* ── ABOUT PREVIEW GRID ── */
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-preview__grid { grid-template-columns: repeat(2, 1fr); } }

/* ── GRID HELPERS (grid-3, grid-4 used in page templates) ── */
.grid-3 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* ── DRAWER MENU — fix bullets from wp_nav_menu output ── */
/* wp_nav_menu outputs <ul class="drawer__menu"> */
.drawer__menu,
.drawer__menu ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.drawer__menu li {
  list-style: none !important;
}
.drawer__menu li a {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #121212;
  text-decoration: none;
  padding: 0.25rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 300ms;
}
.drawer__menu li a:hover,
.drawer__menu li.current-menu-item > a,
.drawer__menu li.current_page_item > a { color: #9E7E2D; }

/* Sub-menu in drawer */
.drawer__menu .sub-menu {
  list-style: none !important;
  padding-left: 1rem;
  margin: 0;
}
.drawer__menu .sub-menu li a {
  font-size: 0.95rem;
  color: #4B5563;
  min-height: 36px;
}

/* ── FOOTER LINKS — fix bullets from wp_nav_menu output ── */
.footer__links,
.footer__links ul,
.footer__links li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

/* ── TRUST BADGE inline (simple text version used in hero) ── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.trust-badge svg { width: 1rem; height: 1rem; color: #D4AF37; }

/* ── HOME HERO TRUST row ── */
.home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ── GOLD DIVIDER alias (old class name) ── */
.gold-divider--center { margin-left: auto; margin-right: auto; }

/* ── PAGE HERO label ── */
.page-hero__label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4AF37;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
@media (min-width: 768px) { .page-hero__label { font-size: 0.875rem; margin-bottom: 1.5rem; } }

/* ── MAP CONTAINER ── */
.map-container { border-radius: 0.5rem; overflow: hidden; background: #E5E7EB; }
.map-container--tall { height: 300px; }

/* ── ABOUT PREVIEW STATS ── */
.about-preview__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .about-preview__stats { grid-template-columns: repeat(4, 1fr); } }

/* ── NAV body padding — stops content hiding under fixed navbar ── */
body { padding-top: 0; }
/* Pages add their own hero with enough top padding. */
/* Non-hero pages need this class on their first section: */
.page-content-top { padding-top: 80px; }

/* ── ABOUT PREVIEW badge ── */
.about-preview__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  min-width: 140px;
}
.about-preview__badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #D4AF37;
  line-height: 1;
  font-weight: 700;
}
.about-preview__badge-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9E7E2D;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ── SUSTAINABILITY SECTION class used in template ── */
.sustainability-section {
  padding: 5rem 0;
  background: rgba(156,175,136,0.1);
}
.sustainability-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .sustainability-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .sustainability-grid { grid-template-columns: repeat(4,1fr); } }
.sustainability-grid--no-image { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }

/* sustainability image */
.sustainability-img { width: 100%; height: 24rem; object-fit: cover; border-radius: 0.5rem; display: block; }

/* ── HOME CTA SECTION ── */
.home-cta {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #1A1A2E 0%, #282828 100%);
  position: relative;
  text-align: center;
}

/* ── FEATURE CARD (About Values) ── */
.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(212,175,55,0.1);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: all 300ms;
}
.feature-card:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); border-color: rgba(212,175,55,0.2); }
.feature-card__icon {
  width: 4rem; height: 4rem;
  background: rgba(212,175,55,0.1);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: #D4AF37;
}
.feature-card__icon svg { width: 2rem; height: 2rem; }
.feature-card__title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #D4AF37; margin-bottom: 0.75rem; }
.feature-card__text  { font-size: 1rem; color: #374151; line-height: 1.625; }

/* ── TESTIMONIALS section bg ── */
.testimonials-section { padding: 5rem 0; background: #ffffff; }

/* ── CARD hover fix — ensure hover works on block links ── */
a.card--dest,
a.card--package,
a.journey-card,
a.destination-card { display: block; }

/* ── Sticky body offset for fixed navbar ── */
.has-fixed-navbar { margin-top: 0; }

/* ── ABOUT PREVIEW IMG WRAP needs position relative for badge ── */
.about-preview__img-wrap { position: relative; }

/* ── Section header (old class) ── */
.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }

/* ── BREADCRUMB WRAPPER ── */
.breadcrumb-wrap { padding: 0.75rem 0; }

/* ============================================================
   NUCLEAR BULLET RESET — WordPress nav menus
   wp_nav_menu always outputs <ul><li> — kill all bullets globally
   in any nav context. Specific styles layered on top.
   ============================================================ */
nav ul, nav ol,
nav ul li, nav ol li,
.drawer__menu, .drawer__menu li,
.footer__links, .footer__links li,
.mobile-menu__list, .mobile-menu__list li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}

/* ============================================================
   DESTINATION SINGLE PAGE — §3.6
   ============================================================ */

/* 3-column grid: left col-span-2 + right col-span-1 */
.dest-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .dest-layout { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
}

.dest-layout__main {}

/* Sidebar sticky */
.dest-layout__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .dest-layout__sidebar { position: sticky; top: 5.5rem; }
}

/* Description prose */
.dest-prose {
    font-size: 1.0625rem;
    color: #374151;
    line-height: 1.75;
}
.dest-prose p { margin-bottom: 1rem; }
.dest-prose p:last-child { margin-bottom: 0; }

/* Section headings */
.dest-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    color: #111827;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

/* Highlights / Activities grid — 2-col, gold bullet dots */
.dest-highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}
@media (min-width: 640px) {
    .dest-highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

.dest-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
}

/* Gold dot bullet — spec §3.6: w-2 h-2 rounded-full bg-gold mt-2 */
.dest-bullet {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #D4AF37;
    flex-shrink: 0;
    margin-top: 0.375rem;   /* vertical-align with first line of text */
}

/* Photo gallery grid */
.dest-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
@media (max-width: 639px) {
    .dest-gallery { grid-template-columns: repeat(2, 1fr); }
}
.dest-gallery__item {
    aspect-ratio: 4/3;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #E5E7EB;
}
.dest-gallery__item--main {
    grid-column: span 2;
    aspect-ratio: 16/9;
}
.dest-gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms cubic-bezier(0.4,0,0.2,1);
}
.dest-gallery__item:hover img { transform: scale(1.05); }

/* Sidebar cards (spec §3.6: bg-white p-6 rounded-lg shadow-lg border border-gray-200) */
.dest-sidebar-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.dest-sidebar-card--cta {
    background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(212,175,55,0.1));
    border-color: rgba(212,175,55,0.2);
}

.dest-sidebar-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

/* Related package row (spec §3.6: flex gap-4 items-center p-3 rounded-lg border hover:border-gold/40) */
.dest-pkg-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #F3F4F6;
    text-decoration: none;
    transition: border-color 150ms, background 150ms;
    color: inherit;
}
.dest-pkg-row:hover {
    border-color: rgba(212,175,55,0.4);
    background: rgba(254,251,246,0.5);
}
.dest-pkg-row img {
    width: 80px;
    height: 56px;
    object-fit: cover;
    border-radius: 0.375rem;
    flex-shrink: 0;
    display: block;
}
.dest-pkg-row__title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    line-height: 1.4;
    margin: 0 0 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dest-pkg-row__meta {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin: 0;
}

/* PageHero used for destination — ensure bg-image works */
.page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================================
   LODGE SINGLE PAGE — §3.8
   ============================================================ */
.lodge-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .lodge-layout { grid-template-columns: minmax(0,2fr) minmax(0,1fr); }
}

.lodge-layout__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .lodge-layout__sidebar { position: sticky; top: 5.5rem; }
}

/* Content cards */
.lodge-card-block {
    background: #fff;
    border: 1px solid #F3F4F6;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    margin-bottom: 1.5rem;
}
.lodge-card-block:last-child { margin-bottom: 0; }

.lodge-block-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

/* Suite block */
.lodge-suite {
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1.5rem;
    background: rgba(249,250,251,0.3);
    transition: border-color 150ms;
}
.lodge-suite:hover { border-color: rgba(212,175,55,0.3); }

/* Gallery */
.lodge-gallery-main {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #E5E7EB;
    margin-bottom: 0.75rem;
}
.lodge-gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms;
}
.lodge-gallery-counter {
    position: absolute;
    bottom: 1rem; right: 1rem;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}
.lodge-gallery-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    color: #fff;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 150ms, background 150ms;
}
.lodge-gallery-main:hover .lodge-gallery-nav { opacity: 1; }
.lodge-gallery-nav:hover { background: rgba(0,0,0,0.4); }
.lodge-gallery-nav--prev { left: 1rem; }
.lodge-gallery-nav--next { right: 1rem; }

.lodge-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
@media (min-width: 640px) { .lodge-gallery-thumbs { grid-template-columns: repeat(6, 1fr); } }
.lodge-gallery-thumb {
    aspect-ratio: 16/9;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid #E5E7EB;
    transition: all 200ms;
}
.lodge-gallery-thumb.is-active { border-color: #D4AF37; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }
.lodge-gallery-thumb:hover { transform: scale(1.05); }
.lodge-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Sidebar cards */
.lodge-sidebar-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.lodge-sidebar-card--cta {
    background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(212,175,55,0.1));
    border-color: rgba(212,175,55,0.2);
}
.lodge-sidebar-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1rem;
}

/* ============================================================
   ARCHIVE PAGE HERO — all archive pages use page-hero with bg-image
   ============================================================ */
.page-hero__overlay {
    display: none; /* NO overlay — spec says text-shadow only */
}

/* ============================================================
   BLOG ARCHIVE
   ============================================================ */
.blog-archive { padding: 4rem 0 5rem; }
.blog-archive__header { text-align: center; margin-bottom: 3rem; }
.blog-archive__filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.blog-archive__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .blog-archive__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px){ .blog-archive__grid { grid-template-columns: repeat(3,1fr); } }

/* Newsletter block at bottom of blog archive */
.blog-newsletter {
    margin-top: 4rem;
    background: #F9FAFB;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}
.blog-newsletter__title { font-family:'Playfair Display',serif; font-size:1.5rem; color:#111827; margin-bottom:0.75rem; }
.blog-newsletter__desc  { font-size:1rem; color:#4B5563; margin-bottom:1.5rem; }

/* ============================================================
   DESTINATIONS ARCHIVE
   ============================================================ */
.destinations-archive { padding: 4rem 0 5rem; }
.destinations-region  { margin-bottom: 4rem; }

/* ============================================================
   LODGES ARCHIVE grid fix
   ============================================================ */
.lodges-archive { padding: 4rem 0 5rem; }
.lodges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1023px) { .lodges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .lodges-grid { grid-template-columns: 1fr; } }


/* ============================================================
   HERO SCROLL BUTTON + TRUST BADGE PILLS (§2.10)
   ============================================================ */

/* Scroll indicator at bottom of hero */
.home-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 9999px;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    animation: float 2s ease-in-out infinite;
    transition: background 300ms;
}
.home-hero__scroll:hover { background: rgba(255,255,255,0.25); }
.home-hero__scroll svg   { width: 20px; height: 20px; }

/* Trust badge pill — spec §2.10: backdrop-blur, white/10 bg */
.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: background 300ms;
    cursor: pointer;
}
.trust-badge-pill:hover { background: rgba(255,255,255,0.2); }

.trust-badge-pill__icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    color: #ffffff;
}

.trust-badge-pill__rating {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.trust-badge-pill__count {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    margin-top: 1px;
}

/* about-preview grid: 2 col on lg, image on right */
@media (min-width: 1024px) {
    .about-preview__grid {
        grid-template-columns: repeat(2,1fr) !important;
    }
}

/* lodges-grid on homepage needs 3 col */
@media (min-width: 1024px) {
    .lodges-grid { grid-template-columns: repeat(3,1fr); }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .lodges-grid { grid-template-columns: repeat(2,1fr); }
}

/* grid-3 on md should be 2 cols */
@media (min-width: 768px) and (max-width: 1023px) {
    .grid-3 { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   FILTER BAR — global (used on lodges, packages, blog archives)
   Moved here from package.css so it loads on every archive page
   ============================================================ */
.packages-filter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding: 1rem 1.25rem;
    background: #F9FAFB;
    border-radius: 0.75rem;
    border: 1px solid #E5E7EB;
}
.packages-filter__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4B5563;
    margin-right: 0.5rem;
}
.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1.5px solid #E5E7EB;
    background: #ffffff;
    color: #4B5563;
    cursor: pointer;
    transition: background 150ms, border-color 150ms, color 150ms;
    min-height: 36px;
}
.filter-btn:hover,
.filter-btn.active {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #ffffff;
}

/* ============================================================
   RESPONSIVE OVERRIDES — Mobile-first, device-complete
   Breakpoints: xs<480, sm<640, md<768, lg<1024
   ============================================================ */

/* ── Global: reduce section padding on mobile ── */
@media (max-width: 767px) {
  section[style*="padding:5rem"],
  section[style*="padding:4rem"],
  section[style*="padding:6rem"] {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

/* ── Container: tighter padding on xs ── */
@media (max-width: 479px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
}

/* ── Hero: shrink title on small screens ── */
@media (max-width: 479px) {
  .home-hero__title  { font-size: 2rem; line-height: 1.2; }
  .home-hero__subtitle { font-size: 0.9375rem; }
  .home-hero__actions { flex-direction: column; align-items: stretch; }
  .home-hero__actions .btn { width: 100%; justify-content: center; }
  .page-hero__title  { font-size: 1.75rem; }
  .page-hero__subtitle { font-size: 0.875rem; }
  .page-hero__inner .btn { width: 100%; justify-content: center; }
}
@media (min-width: 480px) and (max-width: 767px) {
  .home-hero__title  { font-size: 2.5rem; }
  .page-hero__title  { font-size: 2.25rem; }
}

/* ── Section titles: smaller on mobile ── */
@media (max-width: 767px) {
  .section-title     { font-size: 1.875rem; }
  .section-eyebrow   { font-size: 0.8125rem; }
}

/* ── Trust badges: stack on xs ── */
@media (max-width: 479px) {
  .trust-badges { flex-direction: column; align-items: center; gap: 0.75rem; }
  .trust-badge-pill { width: 100%; max-width: 260px; justify-content: center; }
}

/* ── About preview: stats grid 2-col on mobile ── */
@media (max-width: 639px) {
  .about-preview__stats { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── Front-page about section: text + image stack ── */
@media (max-width: 1023px) {
  .about-preview__grid { grid-template-columns: 1fr !important; }
  .about-preview__grid .slide-in-scroll { display: none; } /* hide image on tablet portrait */
}
@media (max-width: 639px) {
  .about-preview__grid > div:last-child { display: none; } /* hide image on mobile */
}

/* ── Destination section heading ── */
@media (max-width: 767px) {
  .dest-section-title { font-size: 1.5rem; }
}

/* ── Packages grid: 1-col on mobile ── */
@media (max-width: 767px) {
  .packages-grid { grid-template-columns: 1fr !important; }
}

/* ── Lodges grid: 1-col on mobile ── */
@media (max-width: 639px) {
  .lodges-grid { grid-template-columns: 1fr !important; }
}

/* ── Journey cards (destinations): full-width on mobile ── */
@media (max-width: 767px) {
  .grid-3 { grid-template-columns: 1fr !important; }
  .journey-card { height: 380px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid-3 { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── Why Choose Us: 1-col on mobile ── */
@media (max-width: 767px) {
  .why-choose-us__grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr !important; }
}

/* ── Testimonials: 1-col on mobile ── */
@media (max-width: 767px) {
  .testimonials-grid { grid-template-columns: 1fr !important; }
}

/* ── Blog archive grid ── */
@media (max-width: 767px) {
  .blog-archive__grid { grid-template-columns: 1fr !important; }
  .blog-archive__filter { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
}

/* ── Filter bar: scroll on mobile ── */
@media (max-width: 767px) {
  .packages-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0.75rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .packages-filter::-webkit-scrollbar { display: none; }
  .packages-filter__label { white-space: nowrap; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; }
}

/* ── Destination detail: dest-layout sidebar stacks below content ── */
@media (max-width: 1023px) {
  .dest-layout { grid-template-columns: 1fr !important; }
  .dest-layout__sidebar { position: static !important; }
  /* Reorder: show sidebar after content */
  .dest-layout__main   { order: 1; }
  .dest-layout__sidebar { order: 2; }
  /* Sidebar cards: horizontal scroll row on tablet */
  .dest-layout__sidebar { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
}
@media (max-width: 639px) {
  .dest-layout__sidebar { display: flex; flex-direction: column; }
}

/* ── Destination highlights grid: 1-col on xs ── */
@media (max-width: 479px) {
  .dest-highlights-grid { grid-template-columns: 1fr !important; }
}

/* ── Destination gallery: 2-col on mobile ── */
@media (max-width: 639px) {
  .dest-gallery { grid-template-columns: repeat(2,1fr) !important; }
  .dest-gallery__item--main { grid-column: span 2; }
}

/* ── Lodge single: stack on mobile ── */
@media (max-width: 1023px) {
  .lodge-layout { grid-template-columns: 1fr !important; }
  .lodge-layout__sidebar { position: static !important; }
  .lodge-layout__main   { order: 1; }
  .lodge-layout__sidebar { order: 2; }
}

/* ── Lodge single: amenities grid 1-col on xs ── */
@media (max-width: 479px) {
  /* target inline 2-col grids in lodge page */
  .lodge-card-block [style*="grid-template-columns:repeat(2,1fr)"],
  .lodge-card-block [style*="grid-template-columns: repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Enquiry modal: full screen on xs, name fields stack ── */
@media (max-width: 479px) {
  .modal { padding: 1.25rem; }
  .modal .modal__close { right: 0.75rem; top: 0.75rem; }
  /* Name fields: stack on xs */
  .modal form > div[style*="grid-template-columns:1fr 1fr"],
  .modal form > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Sustainability 4-col → 2-col → 1-col ── */
@media (max-width: 1023px) {
  .sustainability-section [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}
@media (max-width: 479px) {
  .sustainability-section [style*="grid-template-columns:repeat(4,1fr)"],
  .sustainability-section [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Homepage: single.php blog 2-col sidebar layout ── */
@media (max-width: 1023px) {
  .single-post-layout { grid-template-columns: 1fr !important; }
  .single-post-sidebar { display: none; }  /* hide sidebar on tablet/mobile */
}

/* ── Page contact 2-col → 1-col ── */
@media (max-width: 1023px) {
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* ── Footer columns: 2-col on tablet, 1-col on mobile ── */
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: repeat(2,1fr) !important; gap: 2rem !important; }
}
@media (max-width: 479px) {
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* ── Breadcrumb: truncate long labels on mobile ── */
@media (max-width: 479px) {
  .breadcrumb__current { max-width: 140px; }
}

/* ── Packages archive: filter wraps on mobile ── */
@media (max-width: 639px) {
  .packages-filter { flex-direction: row; overflow-x: auto; flex-wrap: nowrap; }
}

/* ── Blog newsletter: stack input and button on mobile ── */
@media (max-width: 479px) {
  .blog-newsletter form { flex-direction: column; }
  .blog-newsletter form input { border-radius: 0.375rem !important; border-right: 1px solid #D1D5DB !important; margin-bottom: 0.5rem; }
  .blog-newsletter form button { border-radius: 0.375rem !important; width: 100%; }
}

/* ── Typography: prevent overflow on xs ── */
@media (max-width: 479px) {
  h1, h2, h3 { word-break: break-word; overflow-wrap: break-word; }
  .container { overflow-x: hidden; }
}

/* ── CTA sections: stack buttons on mobile ── */
@media (max-width: 479px) {
  .home-cta .btn,
  [style*="justify-content:center"] > .btn {
    width: 100% !important;
  }
}

/* ── Page hero CTAs: stack on mobile ── */
@media (max-width: 639px) {
  .page-hero__inner > div[style*="display:flex"] {
    flex-direction: column;
    align-items: center;
  }
  .page-hero__inner .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── Floating WhatsApp button: smaller on mobile ── */
@media (max-width: 479px) {
  .fab-single { bottom: 1rem; right: 1rem; padding: 0.75rem; }
  .fab-single__label { display: none !important; }
}


/* ── Footer grid responsive ── */
@media (max-width: 767px) {
  .footer__grid { grid-template-columns: repeat(2,1fr) !important; gap: 2rem !important; }
}
@media (max-width: 479px) {
  .footer__grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   LOAD MORE / INFINITE SCROLL
   ============================================================ */

/* Wrapper — centred below the grid */
.load-more-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-bottom: 1rem;
}

/* Button — inherits .btn .btn--read-more from the button system */
.load-more-btn {
    min-width: 180px;
    transition: all 200ms ease;
}
.load-more-btn:hover {
    transform: translateY(-2px);
}

/* Three-dot spinner */
.load-more-spinner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.5rem;
}
.load-more-spinner__dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
    background: #D4AF37;
    animation: lm-dot-bounce 1.2s ease-in-out infinite;
}
.load-more-spinner__dot:nth-child(1) { animation-delay: 0s; }
.load-more-spinner__dot:nth-child(2) { animation-delay: 0.2s; }
.load-more-spinner__dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes lm-dot-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40%            { transform: scale(1);   opacity: 1; }
}

/* "All items loaded" message */
.load-more-done {
    font-size: 0.875rem;
    color: #9CA3AF;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.load-more-done::before,
.load-more-done::after {
    content: '';
    display: block;
    height: 1px;
    width: 3rem;
    background: #E5E7EB;
}

/* Card entrance animation — new cards fade+slide in when appended */
.load-more-card--entering {
    opacity: 0;
    transform: translateY(1.5rem);
}
/* Card settles — transition applied via CSS so it runs smoothly */
[data-filters],
.lodge-card,
.package-card,
.journey-card {
    transition: opacity 400ms ease, transform 400ms ease;
}
.load-more-card--entering [data-filters],
.load-more-card--entering .lodge-card,
.load-more-card--entering .package-card,
.load-more-card--entering .journey-card {
    opacity: 0;
    transform: translateY(1.5rem);
}


/* ============================================================
   FAQ TABS — spec §3.11 — centred underline tab pattern
   ============================================================ */

/* Tab bar — centred, scrolls on mobile */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #E5E7EB;
}
@media (max-width: 767px) {
    .faq-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .faq-tabs::-webkit-scrollbar { display: none; }
}

/* Individual tab button */
.faq-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 150ms, border-color 150ms;
}
.faq-tab:hover {
    color: #9E7E2D;
    border-bottom-color: rgba(212,175,55,0.4);
}
.faq-tab.is-active {
    color: #9E7E2D;
    border-bottom-color: #D4AF37;
    font-weight: 600;
}

/* Count badge */
.faq-tab__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.375rem;
    height: 1.375rem;
    padding: 0 0.25rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    background: #F3F4F6;
    color: #6B7280;
    transition: background 150ms, color 150ms;
}
.faq-tab.is-active .faq-tab__count {
    background: rgba(212,175,55,0.15);
    color: #9E7E2D;
}

/* Panel visibility */
.faq-panel { display: none; }
.faq-panel.is-active { display: block; }

/* Panel heading */
.faq-panel__header { margin-bottom: 1.5rem; }
.faq-panel__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.625rem;
    color: #111827;
    margin-bottom: 0.375rem;
}
.faq-panel__desc { font-size: 1rem; color: #6B7280; margin: 0; }

/* Accordion inside panels */
.faq-accordion { max-width: 720px; }
.faq-accordion .accordion__content--inner.prose { font-size: 1rem; color: #374151; line-height: 1.75; }
.faq-accordion .accordion__content--inner.prose p  { margin-bottom: 0.875rem; }
.faq-accordion .accordion__content--inner.prose ul { padding-left: 1.25rem; margin-bottom: 0.875rem; }
.faq-accordion .accordion__content--inner.prose li { margin-bottom: 0.375rem; }
.faq-accordion .accordion__content--inner.prose a  { color: #D4AF37; text-decoration: underline; }


/* ============================================================
   ABOUT PAGE — spec §3.2
   ============================================================ */

/* §3.2.B Story — 3-col grid */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .about-story-grid { grid-template-columns: minmax(0,2fr) minmax(0,1fr); }
}

.about-story__prose .prose p:first-child {
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
    line-height: 1.65;
}
.about-story__prose .prose p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

/* Gold stats card — right column */
.about-story__stats-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.about-stat-row {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(212,175,55,0.15);
}
.about-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.about-stat-row:first-child { padding-top: 0; }
.about-stat-row__num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #D4AF37;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.about-stat-row__label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9E7E2D;
    font-weight: 500;
}

/* §3.2.C Value cards */
.about-value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(212,175,55,0.1);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    transition: box-shadow 300ms, border-color 300ms;
}
.about-value-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    border-color: rgba(212,175,55,0.2);
}
.about-value-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #D4AF37;
    margin-bottom: 0.75rem;
    transition: color 150ms;
}
.about-value-card:hover .about-value-card__title { color: #9E7E2D; }
.about-value-card__text { color: #374151; line-height: 1.625; font-size: 1rem; margin: 0; }

/* §3.2.D Commitment cards — 2-col grid */
.about-commitments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .about-commitments-grid { grid-template-columns: repeat(2, 1fr); }
}

.about-commit-card {
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 0.75rem;
    transition: border-color 300ms;
    overflow: hidden;
}
.about-commit-card:hover { border-color: rgba(212,175,55,0.3); }
.about-commit-card__inner {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.about-commit-card__icon-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: background 300ms;
}
.about-commit-card:hover .about-commit-card__icon-wrap {
    background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(212,175,55,0.2));
}
.about-commit-card__icon { display: block; }
.about-commit-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.75rem;
    transition: color 150ms;
}
.about-commit-card:hover .about-commit-card__title { color: #9E7E2D; }
.about-commit-card__desc { color: #4B5563; line-height: 1.625; font-size: 1rem; margin: 0; }

/* Responsive: hide stats card on mobile, stack below story */
@media (max-width: 1023px) {
    .about-story__stats-card {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 0;
    }
    .about-stat-row {
        padding: 1rem;
        border-bottom: none;
        border-right: 1px solid rgba(212,175,55,0.15);
        border-bottom: 1px solid rgba(212,175,55,0.15);
    }
    .about-stat-row:nth-child(2n) { border-right: none; }
}
@media (max-width: 479px) {
    .about-story__stats-card { grid-template-columns: 1fr; }
    .about-stat-row { border-right: none; }
    .about-commit-card__inner { flex-direction: column; gap: 1rem; }
}

/* Mission / Vision / Values — 3 equal cards */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 767px) {
    .mvv-grid { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .mvv-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   TRAVEL INFORMATION PAGE — spec §3.14
   Each section: Playfair title + gold rule + 2-col grid
   ============================================================ */
.travel-section {
    margin-bottom: 5rem;
}
.travel-section:last-of-type { margin-bottom: 2rem; }

.travel-section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.875rem, 4vw, 3rem);
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* 80×4px gold rule */
.travel-section__divider {
    width: 5rem;
    height: 4px;
    background: #D4AF37;
    margin-bottom: 2rem;
    border-radius: 2px;
}

/* 2-col grid */
.travel-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 1024px) {
    .travel-section__grid { grid-template-columns: 1fr 1fr; }
}

/* Left: intro paragraphs */
.travel-section__intro p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.travel-section__intro p:last-child { margin-bottom: 0; }

/* Right: gold-border card */
.travel-section__card {
    background: #ffffff;
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    height: 100%;
}
.travel-section__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

/* Bullet list */
.travel-section__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.travel-section__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 1.125rem;
    color: #111827;
    line-height: 1.5;
}
.travel-section__bullet-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #D4AF37;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* ============================================================
   LEAFLET MAP — fix container height + gold attribution style
   ============================================================ */
.nectar-map {
    z-index: 0;       /* keep below modal overlay (z-index:1000) */
}
.nectar-map .leaflet-container {
    height: 100%;
    width: 100%;
    border-radius: inherit;
    font-family: 'Inter', system-ui, sans-serif;
}
.nectar-map .leaflet-control-attribution {
    font-size: 0.6875rem;
    background: rgba(255,255,255,0.8);
}
/* Leaflet popup — gold accent */
.nectar-map .leaflet-popup-content-wrapper {
    border-radius: 0.5rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    padding: 0;
}
.nectar-map .leaflet-popup-content {
    margin: 0.75rem 1rem;
    font-size: 0.9375rem;
}
.nectar-map .leaflet-popup-tip { background: #ffffff; }

/* ============================================================
   TRIP DESIGNER — Custom Date Range Picker
   ============================================================ */

/* Display row: two date fields + arrow */
.td-datepicker { margin-bottom:1.5rem; position:relative; }
.td-datepicker__display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.td-datepicker__arrow { flex-shrink:0; }

.td-datepicker__field {
    flex: 1;
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.125rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 0.625rem;
    cursor: pointer;
    background: #fff;
    transition: border-color 200ms, box-shadow 200ms;
    user-select: none;
}
.td-datepicker__field:hover { border-color: #D4AF37; }
.td-datepicker__field.is-active { border-color: #D4AF37; box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.td-datepicker__field.has-value svg { color: #D4AF37; }
.td-datepicker__label {
    display: block;
    font-size: 0.75rem;
    color: #9CA3AF;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.125rem;
}
.td-datepicker__value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
}
.td-datepicker__field.has-value .td-datepicker__value { color: #111827; }

/* Calendar dropdown */
.td-calendar {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 0.875rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    z-index: 200;
    padding: 1.25rem;
    animation: td-cal-in 150ms ease;
}
@keyframes td-cal-in { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

/* Month nav row */
.td-calendar__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.td-calendar__nav-btn {
    width: 2rem; height: 2rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 0.375rem;
    background: #fff;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 150ms, color 150ms;
}
.td-calendar__nav-btn:hover { border-color: #D4AF37; color: #D4AF37; }
.td-calendar__month-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #111827;
}

/* Day-of-week header */
.td-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 0.375rem;
}
.td-calendar__weekdays span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9CA3AF;
    padding: 0.25rem 0;
}

/* Day grid */
.td-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.td-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #374151;
    border-radius: 0.375rem;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: background 120ms, color 120ms;
    font-weight: 400;
}
.td-cal-day:hover:not(.disabled):not(.empty) { background: rgba(212,175,55,0.1); color: #9E7E2D; }
.td-cal-day.today { font-weight: 700; color: #D4AF37; }
.td-cal-day.selected { background: #D4AF37; color: #fff; font-weight: 600; border-radius: 0.375rem; }
.td-cal-day.in-range { background: rgba(212,175,55,0.12); color: #9E7E2D; border-radius: 0; }
.td-cal-day.range-start { background: #D4AF37; color: #fff; border-radius: 0.375rem 0 0 0.375rem; }
.td-cal-day.range-end   { background: #D4AF37; color: #fff; border-radius: 0 0.375rem 0.375rem 0; }
.td-cal-day.disabled { color: #D1D5DB; cursor: not-allowed; }
.td-cal-day.empty { cursor: default; }

/* Footer */
.td-calendar__footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.75rem;
    border-top: 1px solid #F3F4F6;
    margin-top: 0.75rem;
}
.td-calendar__clear {
    font-size: 0.8125rem;
    color: #9CA3AF;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}
.td-calendar__clear:hover { color: #D4AF37; }

/* Mobile: calendar full-width */
@media (max-width: 639px) {
    .td-datepicker__display { flex-direction: column; }
    .td-datepicker__field { width: 100%; min-width:0; }
    .td-datepicker__arrow { transform: rotate(90deg); }
    .td-calendar { position: fixed; left: 1rem; right: 1rem; top: 50%; transform: translateY(-50%); bottom: auto; }
}

/* ============================================================
   SINGLE BLOG POST — spec §3.10
   ============================================================ */

/* ── Hero ── */
.single-hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}
.single-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.80) 0%,
        rgba(0,0,0,0.40) 50%,
        rgba(0,0,0,0.10) 100%);
}
.single-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 56rem;
    padding: 0 1.5rem 3.5rem;
    text-align: center;
}
.single-hero__cat {
    display: inline-block;
    padding: 0.25rem 0.875rem;
    background: #D4AF37;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 9999px;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: background 150ms;
}
.single-hero__cat:hover { background: #9E7E2D; }
.single-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.875rem, 4vw, 3.25rem);
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}
.single-hero__excerpt {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
.single-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}
.single-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.single-hero__meta-sep { color: rgba(255,255,255,0.4); }

/* ── Body layout: article + sidebar ── */
.single-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 1023px) {
    .single-body { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── Back link ── */
.single-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9E7E2D;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 150ms;
}
.single-back-link:hover { color: #D4AF37; }

/* ── Blog prose — full-width rich formatting ── */
.prose--blog {
    font-size: 1.0625rem;
    color: #374151;
    line-height: 1.8;
}
.prose--blog p              { margin-bottom: 1.375rem; }
.prose--blog p:last-child   { margin-bottom: 0; }
.prose--blog h2             { font-family: 'Playfair Display', serif; font-size: 1.625rem; color: #111827; margin: 2.5rem 0 0.875rem; line-height: 1.25; }
.prose--blog h3             { font-family: 'Playfair Display', serif; font-size: 1.3125rem; color: #111827; margin: 2rem 0 0.75rem; }
.prose--blog h4             { font-size: 1.0625rem; font-weight: 700; color: #111827; margin: 1.5rem 0 0.5rem; }
.prose--blog strong         { font-weight: 700; color: #111827; }
.prose--blog em             { font-style: italic; }
.prose--blog a              { color: #9E7E2D; text-decoration: underline; text-underline-offset: 3px; transition: color 150ms; }
.prose--blog a:hover        { color: #D4AF37; }
.prose--blog ul, .prose--blog ol { padding-left: 1.75rem; margin-bottom: 1.375rem; }
.prose--blog ul li          { list-style: disc; margin-bottom: 0.5rem; }
.prose--blog ol li          { list-style: decimal; margin-bottom: 0.5rem; }
.prose--blog blockquote     { border-left: 4px solid #D4AF37; margin: 2rem 0; padding: 0.75rem 1.5rem; background: rgba(212,175,55,0.05); color: #4B5563; font-style: italic; }
.prose--blog blockquote p   { margin-bottom: 0; }
.prose--blog hr             { border: none; border-top: 1px solid #E5E7EB; margin: 2.5rem 0; }
.prose--blog img            { max-width: 100%; border-radius: 0.5rem; margin: 1.5rem 0; }

/* ── Tables in blog prose ── */
.prose--blog table          { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.9375rem; }
.prose--blog thead          { background: #1A1A2E; color: #F4E9C1; }
.prose--blog thead th       { padding: 0.875rem 1rem; text-align: left; font-weight: 600; font-size: 0.875rem; }
.prose--blog tbody tr       { border-bottom: 1px solid #E5E7EB; }
.prose--blog tbody tr:nth-child(even) { background: #F9FAFB; }
.prose--blog tbody tr:hover { background: rgba(212,175,55,0.05); }
.prose--blog td             { padding: 0.75rem 1rem; vertical-align: top; color: #374151; }
.prose--blog td strong      { color: #111827; }
@media (max-width: 639px) {
    .prose--blog table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── Tags ── */
.single-tags { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #E5E7EB; }
.single-tags__label { font-size: 1.125rem; font-weight: 600; color: #111827; margin-bottom: 0.75rem; }
.single-tags__list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.badge--outline {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 9999px;
    font-size: 0.8125rem;
    color: #374151;
    text-decoration: none;
    transition: border-color 150ms, color 150ms;
}
.badge--outline:hover { border-color: #D4AF37; color: #9E7E2D; }

/* ── Related dest / pkg strip ── */
.single-related-strip {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(254,251,246,0.8);
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
}
@media (min-width: 480px) { .single-related-strip { flex-direction: row; } }
.single-related-strip__item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex: 1;
    text-decoration: none;
    transition: opacity 150ms;
}
.single-related-strip__item:hover { opacity: 0.8; }
.single-related-strip__thumb {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 0.375rem;
    flex-shrink: 0;
}
.single-related-strip__type  { display: block; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.06em; color: #9CA3AF; margin-bottom: 0.125rem; }
.single-related-strip__title { display: block; font-size: 0.9375rem; font-weight: 600; color: #111827; line-height: 1.3; }

/* ── Post CTA box ── */
.single-cta-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(212,175,55,0.07);
    border-radius: 0.75rem;
    border: 1px solid rgba(184,134,11,.15);
    text-align: center;
}
.single-cta-box__title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #1A1A2E; margin-bottom: 0.5rem; }
.single-cta-box__text  { color: #4B5563; margin-bottom: 1.25rem; font-size: 1rem; }

/* ── Sidebar ── */
.single-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.25rem; }
@media (max-width: 1023px) { .single-sidebar { position: static; } }

.single-sidebar__card {
    background: #F9FAFB;
    border-radius: 0.75rem;
    padding: 1.5rem;
}
.single-sidebar__card-title { font-family: 'Playfair Display', serif; font-size: 1.125rem; color: #1A1A2E; margin-bottom: 0.625rem; }
.single-sidebar__card p { font-size: 0.875rem; color: #4B5563; line-height: 1.65; margin: 0; }
.single-sidebar__more-link { font-size: 0.875rem; color: #D4AF37; font-weight: 600; display: inline-block; margin-top: 0.75rem; text-decoration: none; }
.single-sidebar__more-link:hover { color: #9E7E2D; }

.single-sidebar__enquire {
    background: #1A1A2E;
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: #fff;
}
.single-sidebar__enquire-title { font-family: 'Playfair Display', serif; font-size: 1.125rem; color: #F4E9C1; margin-bottom: 0.5rem; }
.single-sidebar__enquire p { font-size: 0.8125rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }

.single-sidebar__related { }
.single-sidebar__related-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.07em; color: #9CA3AF; font-weight: 600; margin-bottom: 0.5rem; }
.single-sidebar__related-link { display: block; border-radius: 0.5rem; overflow: hidden; text-decoration: none; border: 1px solid #E5E7EB; }
.single-sidebar__related-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.single-sidebar__related-title { display: block; font-size: 0.875rem; font-weight: 600; color: #111827; padding: 0.75rem 1rem; }

.single-sidebar__package {
    background: #1A1A2E;
    border-radius: 0.75rem;
    padding: 1.25rem;
    color: white;
}
.single-sidebar__package-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #F4E9C1; margin-bottom: 0.375rem; }
.single-sidebar__package-title { font-family: 'Playfair Display', serif; font-size: 1.0625rem; margin-bottom: 0.875rem; color: #fff; }

/* ── Blog prose additions: figure, code, pre ── */
.prose--blog figure         { margin: 2rem 0; }
.prose--blog figcaption     { font-size: 0.8125rem; color: #9CA3AF; text-align: center; margin-top: 0.5rem; }
.prose--blog pre            { background: #1E293B; color: #E2E8F0; padding: 1.25rem 1.5rem; border-radius: 0.5rem; overflow-x: auto; font-size: 0.875rem; line-height: 1.65; margin: 1.75rem 0; }
.prose--blog code           { background: #F1F5F9; color: #9E7E2D; padding: 0.125rem 0.375rem; border-radius: 0.25rem; font-size: 0.875em; }
.prose--blog pre code       { background: none; color: inherit; padding: 0; font-size: inherit; }

/* ── Table responsive wrapper: WP wraps tables in <figure class="wp-block-table"> ── */
.prose--blog .wp-block-table         { overflow-x: auto; margin: 2rem 0; }
.prose--blog .wp-block-table table   { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 0.9375rem; }
.prose--blog .wp-block-table thead   { background: #1A1A2E; color: #F4E9C1; }
.prose--blog .wp-block-table th      { padding: 0.875rem 1rem; text-align: left; font-weight: 600; font-size: 0.875rem; }
.prose--blog .wp-block-table tbody tr { border-bottom: 1px solid #E5E7EB; }
.prose--blog .wp-block-table tbody tr:nth-child(even) { background: #F9FAFB; }
.prose--blog .wp-block-table tbody tr:hover { background: rgba(212,175,55,0.04); }
.prose--blog .wp-block-table td      { padding: 0.75rem 1rem; vertical-align: top; color: #374151; }
.prose--blog .wp-block-table td strong { color: #111827; }

/* ── Single post hero — page-hero variant with soft overlay ── */
.single-post-hero { position: relative; }
.single-post-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}
.single-post-hero .page-hero__content { z-index: 10; }
.single-post-hero .single-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
.single-post-hero .single-hero__cat {
    display: inline-block;
    padding: 0.25rem 0.875rem;
    background: #D4AF37;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 9999px;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: background 150ms;
}
.single-post-hero .single-hero__cat:hover { background: #9E7E2D; }
