/* Evara Trips static site */
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; }
main a { text-decoration: none; color: inherit; }
header a, footer a { cursor: pointer; text-decoration: none; }

img[src*="assets/images/logo/evaralogo.jpeg"] {
  border-radius: 50%;
  object-fit: cover;
}

/* Header — top of page (over dark/green hero) */
header.header-light .nav-link { color: rgba(247, 240, 227, 0.8) !important; }
header.header-light .nav-link:hover,
header.header-light .nav-link.active { color: #F7F0E3 !important; }
header.header-light .nav-logo-text { color: #F7F0E3 !important; }
header.header-light .nav-logo-sub { color: rgba(247, 240, 227, 0.6) !important; }
header.header-light .mobile-menu-btn { color: #F7F0E3 !important; }
header.header-light .mobile-menu-icon { filter: brightness(0) invert(0.95); }
header.scrolled .mobile-menu-icon { filter: brightness(0); opacity: 0.85; }

/* Arrow icons as images */
.arrow-icon { display: inline-block; vertical-align: middle; }
a .arrow-icon { opacity: 0.9; }

/* Flipped section wave images */
img.img-flip-y { transform: scaleY(-1); }

/* Hero overlay — shared gradient for home, property & gallery heroes.
   Darkens top (header legibility) and bottom (hero text/buttons) while
   staying light through the middle. Reliable regardless of Tailwind CDN. */
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* Premium gradient text — brand name & Sanskrit meaning (gold only, readable on cream) */
.text-gradient-brand {
  display: inline;
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  background: linear-gradient(118deg, #5C3D10 0%, #8B6914 42%, #A88060 78%, #8B6914 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-gradient-meaning {
  display: inline;
  font-family: Fraunces, Georgia, serif;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(125deg, #6B4E12 0%, #8B6914 45%, #A88060 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Property page — etymology block (inline in Our Story section) */
.property-story-etymology__line,
.property-story-etymology__closing {
  font-family: Nunito, system-ui, sans-serif;
  color: #5A3E28;
  line-height: 1.8;
}
.property-story-etymology__line {
  margin: 0 0 0.2rem;
  font-size: 14px;
}
.property-story-etymology__name {
  margin: 0 0 0.45rem;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
}
.property-story-etymology__meaning {
  margin: 0 0 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.property-story-etymology__meaning em {
  font-family: Nunito, system-ui, sans-serif;
  font-size: 0.9rem;
  font-style: italic;
  color: #1A5C38;
}
.property-story-etymology__meaning .text-gradient-meaning {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.3;
}
.property-story-etymology__closing {
  margin: 0;
  font-size: 14px;
}

/* Property page — A Glimpse of Evara photo grid */
.property-glimpse-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
}
.property-glimpse-item {
  position: relative;
  display: block;
  min-height: 10.5rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #EDE0C4;
}
.property-glimpse-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.property-glimpse-item:hover img {
  transform: scale(1.05);
}
.property-glimpse-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 32, 20, 0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.property-glimpse-item:hover .property-glimpse-item__overlay {
  opacity: 1;
}
.property-glimpse-item__label {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.75rem;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F7F0E3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.property-glimpse-item:hover .property-glimpse-item__label {
  opacity: 1;
  transform: translateY(0);
}
.property-glimpse-item--hero {
  grid-column: span 2;
  min-height: 15rem;
}
.property-glimpse-item--wide {
  grid-column: span 2;
  min-height: 11rem;
}
@media (min-width: 768px) {
  .property-glimpse-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 11.5rem;
    gap: 1rem;
  }
  .property-glimpse-item {
    min-height: 0;
  }
  .property-glimpse-item--hero {
    grid-column: 1 / span 6;
    grid-row: 1 / span 2;
  }
  .property-glimpse-item:nth-child(2) { grid-column: 7 / span 3; }
  .property-glimpse-item:nth-child(3) { grid-column: 10 / span 3; }
  .property-glimpse-item:nth-child(4) { grid-column: 7 / span 3; }
  .property-glimpse-item:nth-child(5) { grid-column: 10 / span 3; }
  .property-glimpse-item--wide {
    grid-column: 1 / span 12;
    grid-row: auto;
    min-height: 13rem;
  }
}

/* Header — scrolled state */
header.scrolled {
  background-color: rgba(247, 240, 227, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(42, 24, 16, 0.08);
}
header.scrolled .nav-logo-text { color: #2A1810 !important; }
header.scrolled .nav-logo-sub { color: rgba(42, 24, 16, 0.6) !important; }
header.scrolled .nav-link { color: rgba(42, 24, 16, 0.8) !important; }
header.scrolled .nav-link:hover,
header.scrolled .nav-link.active { color: #2A1810 !important; }
header.scrolled .mobile-menu-btn { color: #2A1810 !important; }

/* Locked header (single blog posts) — cream bar + dark nav text at all scroll positions.
   Must beat header.header-light light-text rules so menu never flips to cream text. */
header.header-locked,
body[data-blog-slug] > header.header-light {
  background-color: rgba(247, 240, 227, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(42, 24, 16, 0.08);
}
header.header-locked .nav-logo-text,
body[data-blog-slug] > header.header-light .nav-logo-text { color: #2A1810 !important; }
header.header-locked .nav-logo-sub,
body[data-blog-slug] > header.header-light .nav-logo-sub { color: rgba(42, 24, 16, 0.6) !important; }
header.header-locked .nav-link,
body[data-blog-slug] > header.header-light .nav-link { color: rgba(42, 24, 16, 0.8) !important; }
header.header-locked .nav-link:hover,
header.header-locked .nav-link.active,
body[data-blog-slug] > header.header-light .nav-link:hover,
body[data-blog-slug] > header.header-light .nav-link.active { color: #2A1810 !important; }
header.header-locked .mobile-menu-btn,
body[data-blog-slug] > header.header-light .mobile-menu-btn { color: #2A1810 !important; }
header.header-locked .mobile-menu-icon,
body[data-blog-slug] > header.header-light .mobile-menu-icon { filter: brightness(0); opacity: 0.85; }

/* Card paper texture overlay */
.card-texture {
  box-shadow: rgba(90, 55, 25, 0.12) 0 0 0 2px inset;
  background-image: url("../svg/card-texture.svg");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
}

/* Enquire buttons */
.btn-enquire,
a.btn-enquire,
button.btn-enquire {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
button.btn-enquire {
  cursor: pointer;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}
/* Homepage — outline enquire on dark section */
button.btn-enquire[class*="border-[#F7F0E3]"] {
  background: transparent;
}
/* Packages page — solid green enquire */
.package-card button.btn-enquire {
  width: 100%;
  padding: 0.75rem 0;
  border-radius: 9999px;
  background: #50C878;
  color: #F7F0E3;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  transition: background-color 0.15s ease;
}
.package-card button.btn-enquire:hover {
  background: #1A5C38;
}

/* Package enquiry — mobile sheet, desktop modal */
body.package-enquiry-open { overflow: hidden; }

.package-enquiry-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 32, 21, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: package-backdrop-in 0.25s ease;
}
@keyframes package-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.package-enquiry-backdrop[hidden],
.package-enquiry-sheet[hidden] {
  display: none !important;
}

/* Mobile — bottom sheet */
.package-enquiry-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  max-height: 90dvh;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: #F7F0E3;
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 -12px 40px rgba(42, 24, 16, 0.18);
  animation: package-sheet-in 0.35s ease;
}
@keyframes package-sheet-in {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* Desktop — centered modal */
@media (min-width: 768px) {
  .package-enquiry-sheet {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 50%;
    width: min(32rem, calc(100vw - 2.5rem));
    max-height: min(90vh, 52rem);
    border-radius: 1.25rem;
    box-shadow: 0 24px 64px rgba(42, 24, 16, 0.22);
    animation: package-modal-in 0.3s ease;
    transform: translate(-50%, -50%);
  }
  @keyframes package-modal-in {
    from {
      opacity: 0;
      transform: translate(-50%, -46%) scale(0.97);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }
  .package-enquiry-sheet__handle {
    display: none;
  }
  .package-enquiry-sheet__inner {
    padding: 1.75rem 2rem 2rem;
  }
}

.package-enquiry-sheet__header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  background: #F7F0E3;
  border-radius: 1.5rem 1.5rem 0 0;
}
.package-enquiry-sheet__handle {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: rgba(42, 24, 16, 0.15);
}
.package-enquiry-sheet__close {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #2A181050;
  color: #F7F0E3;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(42, 24, 16, 0.28);
  z-index: 6;
}
.package-enquiry-sheet__close:hover {
  background: #3a241a;
}
.package-enquiry-sheet__inner {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  width: 100%;
  padding: 0.25rem 1.5rem 2rem;
  max-width: 32rem;
  margin: 0 auto;
}
.package-enquiry-sheet__label {
  font-family: Nunito, system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #7A5C42;
  margin: 0.5rem 0 0.75rem;
}
.package-enquiry-sheet__title {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 300;
  color: #2A1810;
  margin: 0 0 0.75rem;
  line-height: 1.25;
  padding-right: 2rem;
}
.package-enquiry-sheet__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 10px;
}
.package-enquiry-sheet__type {
  color: #1A5C38;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.package-enquiry-sheet__duration {
  color: #A88060;
}
.package-enquiry-sheet__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}
.package-enquiry-sheet__tag {
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  border: 1px solid rgba(80, 200, 120, 0.35);
  font-family: Nunito, system-ui, sans-serif;
  font-size: 9px;
  color: #1A5C38;
  background: rgba(247, 240, 227, 0.8);
}

/* Tariff breakdown embedded inside the enquiry modal */
.package-enquiry-price {
  margin-bottom: 1.25rem;
}
.package-enquiry-price[hidden] {
  display: none;
}
.package-enquiry-price .price-details {
  box-shadow: none;
  background: #FFFDF7;
}
.package-enquiry-price .price-details .tour-details__tagline {
  font-size: 0.78rem;
  color: #5A3E28;
  line-height: 1.45;
  margin: 0.85rem 0 0;
}
.package-enquiry-price .price-details__tour-extra {
  border: none;
  background: transparent;
  padding: 0;
  margin-top: 0.85rem;
}

/* Caravan details cloned into the price-details modal/drawer — the sheet
   already supplies the card surface, so drop the inner border & padding. */
.price-details-sheet__body .caravan-details {
  border: none;
  background: transparent;
  padding: 0;
}

/* Caravan-specific detail block inside the enquiry modal */
.package-enquiry-details {
  margin-bottom: 1.25rem;
  font-family: Nunito, system-ui, sans-serif;
}
.package-enquiry-details[hidden] {
  display: none;
}
.caravan-details {
  border: 1px solid rgba(196, 168, 130, 0.35);
  border-radius: 1rem;
  background: #FFFDF7;
  padding: 1.1rem 1.15rem;
}
.caravan-details__rate {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px dashed rgba(196, 168, 130, 0.45);
}
.caravan-details__rate-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #7A5C42;
}
.caravan-details__rate-amount {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #1A5C38;
  line-height: 1.1;
}
.caravan-details__rate-unit {
  font-family: Nunito, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #A88060;
}
.caravan-details__tagline {
  font-size: 0.78rem;
  color: #5A3E28;
  line-height: 1.4;
  margin-top: 0.15rem;
}
.caravan-details__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  padding: 0.35rem 0;
  border: none;
  background: transparent;
  color: #1A5C38;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid rgba(26, 92, 56, 0.3);
  transition: color 0.25s, border-color 0.25s, gap 0.25s;
}
.caravan-details__toggle:hover {
  color: #D4A843;
  border-color: #D4A843;
  gap: 0.7rem;
}
.caravan-details__toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 0.3s ease;
}
.caravan-details__toggle.is-open svg {
  transform: rotate(180deg);
}
.caravan-details__collapse {
  margin-top: 0.4rem;
}
.caravan-details__collapse[hidden] {
  display: none;
}
.caravan-details__collapse > .caravan-details__block:first-child,
.caravan-details__collapse > .caravan-details__features:first-child {
  margin-top: 0.6rem;
  padding-top: 0;
  border-top: none;
}
.caravan-details__features {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.85rem;
}
.caravan-details__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.76rem;
  color: #2A1810;
  line-height: 1.3;
}
.caravan-details__features li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: #1A5C38;
}
.caravan-details__block {
  padding-top: 0.85rem;
  margin-top: 0.85rem;
  border-top: 1px solid rgba(196, 168, 130, 0.3);
}
.caravan-details__heading {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1A5C38;
  font-weight: 700;
  margin: 0 0 0.6rem;
}
.caravan-details__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.caravan-details__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #5A3E28;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}
.caravan-details__list li:last-child {
  margin-bottom: 0;
}
.caravan-details__list li svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  color: #1A5C38;
}
.caravan-details__list strong {
  color: #2A1810;
  font-weight: 700;
}
.caravan-details__defs {
  margin: 0;
}
.caravan-details__def {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px dotted rgba(196, 168, 130, 0.4);
}
.caravan-details__def:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.caravan-details__def dt {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2A1810;
}
.caravan-details__def dd {
  margin: 0;
  font-size: 0.78rem;
  color: #5A3E28;
  line-height: 1.4;
}
@media (max-width: 420px) {
  .caravan-details__def {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
}

.package-enquiry-form__label {
  display: block;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A88060;
  margin-bottom: 0.5rem;
}
.package-enquiry-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(196, 168, 130, 0.5);
  background: #F7F0E3;
  color: #2A1810;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 0.875rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.package-enquiry-form__input:focus {
  outline: none;
  border-color: #50C878;
}
.package-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.package-enquiry-form__submit {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 999px;
  background: #50C878;
  color: #F7F0E3;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.package-enquiry-form__submit:hover { background: #1A5C38; }
.package-enquiry-form__submit:disabled { opacity: 0.65; cursor: wait; }

/* Honeypot — visually hidden anti-spam field */
.package-enquiry-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Inline alert (validation / submit errors) */
.package-enquiry-alert {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.45;
}
.package-enquiry-alert--error {
  background: #fde8e8;
  border: 1px solid #f0a5a5;
  color: #9b1c1c;
}
.package-enquiry-alert--success {
  background: rgba(80, 200, 120, 0.15);
  border: 1px solid #50C878;
  color: #1A5C38;
}

/* Success panel shown after a successful enquiry */
.package-enquiry-success {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}
.package-enquiry-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.1rem;
  border-radius: 999px;
  background: #50C878;
  color: #F7F0E3;
  font-size: 28px;
  line-height: 56px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(80, 200, 120, 0.4);
}
.package-enquiry-success__text {
  color: #5A463A;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.75rem 0 1.5rem;
}
.package-enquiry-success__text strong { color: #1A5C38; }

/* ─────────────────────────────────────────────────────────────
   Price block (card) — "Starting at" + extra-guest + details
   ───────────────────────────────────────────────────────────── */
.pkg-price-wrap { position: relative; }

.pkg-price-label {
  font-family: Nunito, system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A88060;
  margin-bottom: 2px;
}
.pkg-price-label--dark { color: rgba(247, 240, 227, 0.55); }

/* Right-aligned column: extra-guest chip, reviews, then Price details */
.pkg-price-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
  flex-shrink: 0;
  max-width: 58%;
}
.pkg-price-aside .pkg-price-info { margin-top: 1px; }
.pkg-price-extra {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 10px;
  color: #1A5C38;
  background: rgba(80, 200, 120, 0.12);
  border: 1px solid rgba(80, 200, 120, 0.25);
  padding: 2px 8px;
  border-radius: 999px;
  line-height: 1.3;
}
.pkg-price-info {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #7A5C42;
  background: none;
  border: none;
  padding: 2px 2px;
  cursor: pointer;
  border-bottom: 1px dashed rgba(122, 92, 66, 0.5);
  transition: color 0.2s, border-color 0.2s;
}
.pkg-price-info:hover { color: #1A5C38; border-color: #50C878; }

/* Dark card variant (homepage featured) */
.pkg-price-wrap--dark .pkg-price-extra {
  color: #EFC060;
  background: rgba(212, 168, 67, 0.12);
  border-color: rgba(212, 168, 67, 0.3);
}
.pkg-price-wrap--dark .pkg-price-info {
  color: rgba(247, 240, 227, 0.7);
  border-bottom-color: rgba(247, 240, 227, 0.4);
}
.pkg-price-wrap--dark .pkg-price-info:hover { color: #EFC060; border-color: #D4A843; }

/* Hidden per-card data source — cloned into the hover popover & the sheet */
.pkg-price-pop { display: none; }

/* Desktop hover popover — appended to <body> by JS so it is never clipped
   by the card's overflow:hidden. */
.price-pop-float {
  position: absolute;
  z-index: 240;
  width: 17rem;
  max-width: 84vw;
  pointer-events: none;
  animation: price-pop-in 0.18s ease;
}
@keyframes price-pop-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Price-details content (shared by popover + modal/drawer) ── */
.price-details {
  background: #FFFDF7;
  border: 1px solid rgba(196, 168, 130, 0.4);
  border-radius: 1rem;
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: 0 16px 40px rgba(42, 24, 16, 0.16);
  text-align: left;
}
.price-details__label {
  font-family: Nunito, system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #A88060;
  margin: 0 0 4px;
}
.price-details__title {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #2A1810;
  margin: 0 0 10px;
  line-height: 1.25;
}
.price-details__main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(196, 168, 130, 0.3);
}
.price-details__amount {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1A5C38;
  line-height: 1;
}
.price-details__unit {
  font-family: Nunito, system-ui, sans-serif;
  font-size: 0.72rem;
  color: #A88060;
}
.price-details__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-details__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 0.8rem;
  color: #5A3E28;
  line-height: 1.4;
}
.price-details__list li svg { flex-shrink: 0; margin-top: 1px; color: #1A5C38; width: 15px; height: 15px; }
.price-details__list strong { color: #2A1810; font-weight: 700; }
.price-details__muted { color: #A88060; }
.price-details__foot {
  margin: 12px 0 0;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 0.68rem;
  color: #A88060;
  line-height: 1.4;
}

/* ── Responsive sheet: bottom drawer (mobile) / modal (desktop) ── */
body.price-details-open { overflow: hidden; }

.price-details-backdrop {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(13, 32, 21, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: package-backdrop-in 0.25s ease;
}
.price-details-backdrop[hidden],
.price-details-sheet[hidden] { display: none !important; }

.price-details-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 230;
  max-height: 90dvh;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: #F7F0E3;
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 -12px 40px rgba(42, 24, 16, 0.18);
  animation: package-sheet-in 0.35s ease;
}
.price-details-sheet__header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  background: #F7F0E3;
  border-radius: 1.5rem 1.5rem 0 0;
}
.price-details-sheet__handle {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: rgba(42, 24, 16, 0.15);
}
.price-details-sheet__close {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #2A181050;
  color: #F7F0E3;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(42, 24, 16, 0.28);
  z-index: 6;
}
.price-details-sheet__close:hover {
  background: #3a241a;
}
.price-details-sheet__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 0.25rem 1.25rem 1.75rem;
}
/* The cloned card popover already carries .price-details styling; flatten the
   extra elevation when shown inside the sheet so it reads as one panel. */
.price-details-sheet__body .price-details {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.25rem 0 0;
}
.price-details-sheet__body .price-details__amount { font-size: 1.9rem; }

@media (min-width: 768px) {
  .price-details-sheet {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 50%;
    width: min(26rem, calc(100vw - 2.5rem));
    max-height: min(90vh, 36rem);
    border-radius: 1.25rem;
    box-shadow: 0 24px 64px rgba(42, 24, 16, 0.22);
    transform: translate(-50%, -50%);
    animation: package-modal-in 0.3s ease;
  }
  .price-details-sheet__handle { display: none; }
  .price-details-sheet__body { padding: 1.75rem 1.9rem 1.9rem; }
}

.tour-details__overview {
  font-size: 0.78rem;
  color: #5A3E28;
  line-height: 1.5;
  margin: 0.5rem 0 0.75rem;
}
.tour-details__refnote {
  font-size: 0.68rem;
  color: #A88060;
  line-height: 1.45;
  margin-top: 0.75rem;
  font-style: italic;
}
.tour-details__itinerary li span {
  display: block;
  line-height: 1.55;
}

/* Testimonial dots */
#guest-testimonials .testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(13, 51, 32, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
}
#guest-testimonials .testimonial-dot.is-active {
  width: 24px;
  background: #0D3320;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(13, 31, 45, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: Nunito, system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F7F0E3;
}
.mobile-nav .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #F7F0E3;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}
.mobile-nav .cta-btn {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: #50C878;
  border-radius: 9999px;
  color: #F7F0E3;
}

main > section:first-child:not(.h-screen) {
  padding-top: 72px;
}

/* Home — property showcase (image fills parent height) */
.home-property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .home-property-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
  }
  .home-property-visual {
    min-height: 100%;
    align-self: stretch;
  }
}
.home-property-visual {
  position: relative;
  min-height: 420px;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #ede0c4;
  box-shadow:
    0 28px 56px -16px rgba(42, 24, 16, 0.22),
    0 0 0 1px rgba(196, 168, 130, 0.2) inset;
}
.home-story-visual__inner {
  position: relative;
  z-index: 2;
  min-height: 420px;
  height: 100%;
}
.home-property-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.home-story-visual .home-property-img {
  object-position: left center;
}
.home-story-visual__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 92, 56, 0.04) 0%,
    transparent 38%,
    rgba(13, 32, 20, 0.72) 100%
  );
  pointer-events: none;
}
.home-story-highlight {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.home-story-highlight__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(247, 240, 227, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: #1a5c38;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: Nunito, system-ui, sans-serif;
  box-shadow: 0 8px 22px rgba(42, 24, 16, 0.12);
}
.home-story-highlight__item svg {
  color: #d4a843;
  flex-shrink: 0;
}
.home-story-visual__caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
}
.home-story-visual__eyebrow {
  color: #d4a843;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  font-family: Nunito, system-ui, sans-serif;
}
.home-story-visual__title {
  color: #f7f0e3;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.15;
  font-family: Fraunces, Georgia, serif;
}
.home-story-visual__sub {
  margin-top: 0.55rem;
  max-width: 18rem;
  color: rgba(247, 240, 227, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
  font-family: Nunito, system-ui, sans-serif;
}
.home-property-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.25rem 0;
}
.home-property-content blockquote {
  border-left: 3px solid #D4A843;
  padding-left: 1.25rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: #5A3E28;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  font-family: Fraunces, Georgia, serif;
}

/* Sticky WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9999;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float img {
  filter: brightness(0) invert(1);
}
@media (max-width: 640px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}

/* ── Package listing — filter tabs (packages & stays pages) ─────────────── */
#package-filters .package-filter-btn.is-active {
  background: #1a5c38;
  border-color: #1a5c38;
  color: #f7f0e3;
  box-shadow: 0 4px 14px rgba(26, 92, 56, 0.22);
}
#package-filters .package-filter-btn.is-active:hover {
  background: #1a5c38;
  border-color: #1a5c38;
  color: #f7f0e3;
}

/* ── Enquire package page — gallery swiper & detail tabs ─────────────────── */
.enquire-page .enquire-gallery-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 26rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #ede0c4;
  box-shadow: 0 12px 32px rgba(42, 24, 16, 0.12);
}
.enquire-page .enquire-gallery-swiper {
  width: 100%;
  height: 100%;
}
.enquire-page .enquire-gallery-swiper .swiper-wrapper,
.enquire-page .enquire-gallery-swiper .swiper-slide {
  height: 100%;
}
.enquire-page .enquire-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__prev,
.enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__next {
  width: 2.25rem;
  height: 2.25rem;
  margin-top: -1.125rem;
  border-radius: 9999px;
  background: rgba(247, 240, 227, 0.94);
  color: #1a5c38;
  box-shadow: 0 2px 10px rgba(42, 24, 16, 0.2);
  opacity: 1;
}
.enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__prev {
  left: 0.7rem;
}
.enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__next {
  right: 0.7rem;
}
.enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__prev::after,
.enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__next::after {
  font-size: 0.8rem;
  font-weight: 700;
}
.enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__pagination {
  bottom: 0.85rem !important;
}
.enquire-page .enquire-gallery-swiper .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #f7f0e3;
  opacity: 0.7;
}
.enquire-page .enquire-gallery-swiper .swiper-pagination-bullet-active {
  background: #50c878;
  opacity: 1;
}

.enquire-page .enquire-package-tabs {
  margin-top: 0.5rem;
}
.enquire-page .enquire-package-tabs__nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.15rem;
  padding: 0.45rem;
  border: 1px solid rgba(196, 168, 130, 0.35);
  border-radius: 9999px;
  background: #f1e5cd;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.enquire-page .enquire-package-tabs__nav::-webkit-scrollbar { display: none; }
.enquire-page .enquire-package-tabs__btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.7rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  background: transparent;
  color: #7a5c42;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: Nunito, system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none;
}
.enquire-page .enquire-package-tabs__btn:hover {
  border-color: rgba(80, 200, 120, 0.45);
  background: rgba(247, 240, 227, 0.75);
  color: #1a5c38;
}
.enquire-page .enquire-package-tabs__btn.is-active {
  background: #1a5c38;
  border-color: #1a5c38;
  color: #f7f0e3;
  box-shadow: 0 4px 14px rgba(26, 92, 56, 0.22);
}
.enquire-page .enquire-package-tabs__panels {
  display: block;
}
.enquire-page .enquire-package-tabs__panel {
  display: none;
  background: #fffdf8;
  border: 1px solid rgba(196, 168, 130, 0.35);
  border-radius: 1rem;
  padding: 1.35rem 1.2rem;
  box-shadow: 0 8px 28px rgba(42, 24, 16, 0.06);
}
.enquire-page .enquire-package-tabs__panel.is-active {
  display: block;
}
.enquire-page .enquire-package-tabs__panel[hidden] {
  display: none !important;
}
.enquire-page .enquire-tab__content.caravan-details {
  border: none;
  background: transparent;
  padding: 0;
}
.enquire-page .enquire-tab__content .caravan-details__block {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(196, 168, 130, 0.28);
}
.enquire-page .enquire-tab__content .caravan-details__block:first-child,
.enquire-page .enquire-tab__content > .caravan-details__features:first-child,
.enquire-page .enquire-tab__content > .enquire-tab__tagline:first-child + .enquire-tab__text {
  margin-top: 0;
}
.enquire-page .enquire-tab__content > .caravan-details__block:first-child,
.enquire-page .enquire-tab__content > .enquire-tab__tagline:first-child,
.enquire-page .enquire-tab__content > .enquire-tab__text:first-child,
.enquire-page .enquire-tab__content > .enquire-tab__itinerary:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.enquire-page .enquire-tab__tagline {
  font-size: 1rem;
  color: #1a5c38;
  font-weight: 600;
  margin: 0 0 0.85rem;
  line-height: 1.55;
}
.enquire-page .enquire-tab__text,
.enquire-page .enquire-tab__route {
  font-size: 0.92rem;
  color: #5a3e28;
  line-height: 1.7;
  margin: 0 0 1.1rem;
}
.enquire-page .enquire-tab__content .caravan-details__features {
  margin-bottom: 1rem;
}
.enquire-page .enquire-tab__content .caravan-details__features {
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .enquire-page .enquire-tab__content .caravan-details__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.enquire-page .enquire-tab__content .caravan-details__list li {
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.55rem;
}
.enquire-page .enquire-tab__content .caravan-details__heading {
  font-size: 0.68rem;
  margin-bottom: 0.75rem;
}
.enquire-page .enquire-tab__content .caravan-details__def {
  grid-template-columns: 1fr;
  gap: 0.2rem;
}
@media (min-width: 640px) {
  .enquire-page .enquire-tab__content .caravan-details__def {
    grid-template-columns: 8.5rem 1fr;
    gap: 0.5rem 0.85rem;
  }
}
.enquire-page .enquire-tab__itinerary li {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(196, 168, 130, 0.35);
}
.enquire-page .enquire-tab__itinerary li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.enquire-page .enquire-package-standard {
  background: #fffdf8;
  border: 1px solid rgba(196, 168, 130, 0.35);
  border-radius: 1rem;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 8px 28px rgba(42, 24, 16, 0.06);
}
.enquire-page .enquire-package-standard .caravan-details {
  border: none;
  background: transparent;
  padding: 0;
}
.enquire-page .enquire-price-details .price-details {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
}
@media (max-width: 640px) {
  .enquire-page .enquire-gallery-wrap {
    aspect-ratio: 16 / 11;
    max-height: none;
  }
  .enquire-page .enquire-package-tabs__nav {
    gap: 0.45rem;
    padding: 0.4rem;
    margin-bottom: 1rem;
  }
  .enquire-page .enquire-package-tabs__btn {
    flex: 0 0 auto;
    padding: 0.58rem 0.9rem;
    font-size: 0.62rem;
  }
  .enquire-page .enquire-package-tabs__panel {
    padding: 1.1rem 1rem;
    border-radius: 0.9rem;
  }
  .enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__prev,
  .enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__next {
    width: 2rem;
    height: 2rem;
    margin-top: -1rem;
    background: rgba(247, 240, 227, 0.98);
  }
}
@media (min-width: 1024px) {
  .enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__prev,
  .enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__next {
    width: 2.6rem;
    height: 2.6rem;
    margin-top: -1.3rem;
    background: #f7f0e3;
  }
  /* .enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__prev {
    left: -1.35rem;
  }
  .enquire-page .enquire-gallery-swiper .enquire-gallery-swiper__next {
    right: -1.35rem;
  } */
}

/* ── Stay enquiry cards — Airbnb listing image swiper ───────────────────── */
.stay-swiper {
  width: 100%;
  height: 100%;
}
.stay-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.stay-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stay-swiper .swiper-button-prev,
.stay-swiper .swiper-button-next {
  width: 28px;
  height: 28px;
  margin-top: -14px;
  border-radius: 9999px;
  background: rgba(247, 240, 227, 0.88);
  color: #1a5c38;
  box-shadow: 0 2px 8px rgba(42, 24, 16, 0.18);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.package-card:hover .stay-swiper .swiper-button-prev,
.package-card:hover .stay-swiper .swiper-button-next {
  opacity: 1;
}
.stay-swiper .swiper-button-prev:hover,
.stay-swiper .swiper-button-next:hover {
  background: #f7f0e3;
}
.stay-swiper .swiper-button-prev::after,
.stay-swiper .swiper-button-next::after {
  font-size: 11px;
  font-weight: 700;
}
.stay-swiper .swiper-pagination-bullet {
  background: #f7f0e3;
  opacity: 0.6;
}
.stay-swiper .swiper-pagination-bullet-active {
  background: #50c878;
  opacity: 1;
}
@media (max-width: 640px) {
  .stay-swiper .swiper-button-prev,
  .stay-swiper .swiper-button-next {
    display: none;
  }
}
