
/* ═══════════════════════════════════════════════════════
   SECTIONS.CSS — All content sections
═══════════════════════════════════════════════════════ */

/* ─────────────────────────────────
   INTRO / BRAND STATEMENT
───────────────────────────────── */
.intro {
  margin-top: calc(-1 * var(--intro-overlap));
  padding: calc(120px + var(--intro-overlap)) 60px 100px;
  overflow: visible;
  position: relative;
  z-index: 2;
  /* Transparent at the top so hero shows through; ivory takes over below the blend zone */
  background: linear-gradient(
    to bottom,
    transparent 0,
    rgba(245, 240, 232, 0.18) calc(var(--intro-overlap) * 0.35),
    rgba(245, 240, 232, 0.52) calc(var(--intro-overlap) + var(--hero-blend-height) * 0.45),
    rgba(245, 240, 232, 0.82) calc(var(--intro-overlap) + var(--hero-blend-height) * 0.75),
    var(--ivory, #F5F0E8) calc(var(--intro-overlap) + var(--hero-blend-height)),
    var(--ivory, #F5F0E8) 100%
  );
}

.intro-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  overflow: visible;
}

.intro-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7.5vw, 104px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--obsidian, #1A1611);
  margin-bottom: var(--space-heading-to-sub, 18px);
}

.intro-headline em {
  font-style: italic;
  color: var(--gold, #C4A35A);
}

.intro-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px 60px;
  overflow: visible;
}

.intro-photo {
  position: relative;
  overflow: visible;
  padding: 12px;
  background: #FFFFFF;
  border: 7px solid var(--gold, #C4A35A);
  box-shadow:
    0 0 0 1px rgba(196, 163, 90, 0.25),
    0 6px 16px rgba(26, 22, 17, 0.10),
    0 28px 60px rgba(26, 22, 17, 0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.intro-photo:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(196, 163, 90, 0.3),
    0 8px 20px rgba(26, 22, 17, 0.12),
    0 36px 72px rgba(26, 22, 17, 0.22);
}

.intro-photo img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  mask-image: none;
  -webkit-mask-image: none;
  transform: none;
}

.intro-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--obsidian);
}

.intro-body--muted {
  opacity: 0.55;
}

.intro-divider {
  display: none;
}

.intro-cards-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-green, #2a5c45);
  font-weight: 500;
  margin-bottom: 20px;
}

.intro-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.intro-stat-card {
  background: rgba(255,255,255,0.55);
  border: 0.5px solid rgba(26, 22, 17, 0.09);
  border-radius: 6px;
  padding: 28px 16px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.intro-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 22, 17, 0.06);
}

.stat-card-icon {
  width: 22px;
  height: 22px;
  color: var(--color-green, #2a5c45);
  flex-shrink: 0;
}

.stat-card-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--obsidian);
}

.stat-card-key {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  line-height: 1.5;
}

/* ─────────────────────────────────
   ACCOMMODATION — split layout
───────────────────────────────── */
.accommodation {
  background: var(--ivory, #F5F0E8);
  padding: var(--section-pad-v) 0;
  overflow: visible;
  position: relative;
  z-index: 2;
}

/* Slim gold hairline above accommodation — quiet separator from .intro */
.accommodation::before {
  display: none;
}

.accommodation-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

/* LEFT: video panel — full bleed, no rounded frame */
.accommodation-video-wrap {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.accommodation-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top & bottom fade blending into ivory background */
.video-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -2px;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      #F5F0E8 0%,
      rgba(245, 240, 232, 0.85) 5%,
      rgba(245, 240, 232, 0.5) 10%,
      rgba(245, 240, 232, 0.15) 18%,
      transparent 28%,
      transparent 66%,
      rgba(245, 240, 232, 0.18) 76%,
      rgba(245, 240, 232, 0.48) 84%,
      rgba(245, 240, 232, 0.78) 91%,
      #F5F0E8 96%,
      #F5F0E8 100%
    );
}

/* RIGHT: info panel */
.accommodation-info {
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.accommodation-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--obsidian);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-heading-to-sub, 18px);
}

.accommodation-headline em {
  font-style: italic;
  color: var(--color-green, #2a5c45);
}

.accommodation-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #6A6057;
  margin-top: 0;
  margin-bottom: var(--space-sub-to-content, 52px);
  max-width: 540px;
}

.accommodation-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #6A6057;
  margin-bottom: 28px;
  max-width: 440px;
}

.feature-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.feature-pills li {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone, #9E8672);
  border: 1px solid rgba(158, 134, 114, 0.3);
  padding: 5px 12px;
  border-radius: 50px;
}

.card-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-green, #2a5c45);
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.card-price strong {
  color: var(--color-green, #2a5c45);
  font-weight: 700;
}

.accommodation-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.btn-book-stay {
  display: inline-block;
  padding: 11px 28px;
  background: var(--color-green, #2a5c45);
  color: #fff;
  border: 2px solid var(--color-green, #2a5c45);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.btn-book-stay:hover {
  background: #1d4232;
  border-color: #1d4232;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42, 92, 69, 0.35);
}

.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--obsidian);
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
}

.card-cta:hover {
  color: var(--gold, #C4A35A);
}

/* ─────────────────────────────────
   AMENITIES & SERVICES — editorial grid
───────────────────────────────── */
.amenities {
  background: var(--ivory, #F5F0E8);
  padding: 100px var(--section-pad-h) 140px;
  position: relative;
  z-index: 3;
}

.amenities-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.amenities-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: var(--space-sub-to-content, 52px);
}

.amenities-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--obsidian);
  margin-bottom: var(--space-heading-to-sub, 18px);
  letter-spacing: -0.02em;
}

.amenities-headline em {
  font-style: italic;
  color: var(--color-green, #2a5c45);
}

.amenities-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #6A6057;
  margin-top: 0;
  margin-bottom: var(--space-sub-to-content, 52px);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.amenities-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.amenity-category {
  background: rgba(255, 255, 255, 0.55);
  border: 0.5px solid rgba(26, 22, 17, 0.09);
  border-radius: 6px;
  padding: 32px 24px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amenity-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 22, 17, 0.06);
}

.amenity-category:first-child,
.amenity-category:last-child,
.amenity-category:not(:first-child) {
  padding: 32px 24px 28px;
  border-right: none;
}

.amenity-category-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: var(--color-green, #2a5c45);
}

.amenity-category-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.amenity-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--obsidian);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.amenity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.amenity-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--stone, #9E8672);
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid rgba(158, 134, 114, 0.1);
}

.amenity-list li:last-child { border-bottom: none; }

/* ─────────────────────────────────
   ACTIVITIES
───────────────────────────────── */
.activities {
  background: var(--ivory, #F5F0E8);
  padding: var(--section-pad-v) var(--section-pad-h);
  position: relative;
  z-index: 2;
}

.activities-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #6A6057;
  margin-top: 0;
  margin-bottom: var(--space-sub-to-content, 52px);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.activity-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 22, 17, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 22, 17, 0.1);
}

.activity-image-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.activity-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.activity-card:hover .activity-image {
  transform: scale(1.06);
}

.activity-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 17, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.activity-card:hover .activity-overlay {
  background: rgba(26, 22, 17, 0.45);
}

.activity-overlay .btn {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.activity-card:hover .activity-overlay .btn {
  opacity: 1;
  transform: translateY(0);
}

.activity-content {
  padding: 24px 28px 28px;
}

.activity-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--obsidian, #1A1611);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.activity-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #6A6057;
  margin: 0;
}

.activities-swipe-hint,
.amenities-swipe-hint {
  display: none;
}

/* ═══════════════════════════════════════════
   ENQUIRE — Cinematic full-bleed
═══════════════════════════════════════════ */

.enquire {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

/* Full-bleed background */
.enquire-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.enquire-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.enquire-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(26, 22, 17, 0.72) 0%,
    rgba(26, 22, 17, 0.55) 45%,
    rgba(26, 22, 17, 0.35) 100%
  );
}

/* Content grid over image */
.enquire-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  padding: 120px 80px 80px;
  gap: 60px;
}

/* Left: headline at bottom */
.enquire-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
}

.enquire-left .section-label {
  margin-bottom: 16px;
}

.enquire-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.95;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
}

.enquire-headline em {
  font-style: italic;
  color: var(--gold, #C4A35A);
}

.enquire-contact-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.enquire-contact-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.enquire-contact-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.enquire-contact-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

/* Right: form card */
.enquire-card {
  background: var(--ivory, #F5F0E8);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  max-width: 520px;
  width: 100%;
  margin-left: auto;
}

.enquire-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--obsidian, #1A1611);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.enquire-card-title em {
  font-style: italic;
  color: var(--gold, #C4A35A);
}

/* Form */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone, #9E8672);
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(158, 134, 114, 0.3);
  border-radius: 0;
  padding: 8px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--obsidian, #1A1611);
  outline: none;
  width: 100%;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold, #C4A35A);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(158, 134, 114, 0.45);
}

.form-group textarea {
  resize: none;
  height: 80px;
  line-height: 1.6;
}

.enquire-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--color-green, #2a5c45);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.enquire-submit:hover {
  background: #1d4130;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(42, 92, 69, 0.35);
}

.form-note {
  font-size: 12px;
  text-align: center;
  color: var(--stone, #9E8672);
  min-height: 18px;
}

.form-note.error { color: #c0392b; }

/* ── RESPONSIVE ── */
@media (max-width: 1023px) {
  .enquire-content {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 100px 48px 64px;
    gap: 48px;
  }
  .enquire-left {
    padding-bottom: 0;
  }
  .enquire-card {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .enquire-content { padding: 80px 24px 48px; gap: 40px; }
  .enquire-headline { font-size: 56px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .enquire-card { padding: 32px 24px; border-radius: 16px; }
  .enquire-contact-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .enquire-contact-sep { display: none; }
}


/* ─────────────────────────────────
   AIRBNB BUTTON + BOOKING PLATFORMS
───────────────────────────────── */
.btn-airbnb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--color-green, #2a5c45);
  color: var(--color-green, #2a5c45);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-airbnb:hover {
  background: var(--color-green, #2a5c45);
  border-color: var(--color-green, #2a5c45);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(42, 92, 69, 0.3);
}

/* ─────────────────────────────────
   FOOTER
───────────────────────────────── */
.footer {
  background: var(--color-green, #2a5c45);
  padding: 80px 60px 0;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2.2fr 0.6fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 40px;
  row-gap: 20px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col--brand {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-width: 0;
}

/* Flatten cols 2–4 so titles share row 1 and content shares row 2 */
.footer-col--partners,
.footer-col--nav,
.footer-col--contact {
  display: contents;
}

.footer-col--partners > .footer-col-title {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  text-align: center;
}

.footer-col--partners > .footer-partners-list {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  justify-self: center;
}

.footer-col--nav > .footer-col-title {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.footer-col--nav > ul {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
}

.footer-col--contact > .footer-col-title {
  grid-column: 4;
  grid-row: 1;
  justify-self: start;
}

.footer-col--contact > ul {
  grid-column: 4;
  grid-row: 2;
  justify-self: start;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(71%) sepia(39%) saturate(530%) hue-rotate(2deg) brightness(98%);
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  width: 100%;
  padding-bottom: 4px;
  margin-bottom: 4px;
}

.footer-logo-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  width: 100%;
  text-align: center;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 28px;
  white-space: pre-line;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold, #C4A35A);
}

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold, #C4A35A);
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.2;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li,
.footer-col ul a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--gold, #C4A35A);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Contact column — label + value pairs */
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-contact-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a,
.footer-contact-item span:not(.footer-contact-label) {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-cta {
  display: inline-block;
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 50px;
}

/* ── Footer partners column ── */
.footer-partners-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  flex-wrap: nowrap;
  margin-top: 4px;
}

.footer-partner-item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.footer-partner-item:hover {
  opacity: 1;
}

.footer-partner-img {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.footer-partner--zanzibar .footer-partner-img {
  height: 28px;
  max-width: 140px;
}

.footer-partner--safari .footer-partner-img {
  height: 24px;
  max-width: 120px;
}

.footer-partner--avid .footer-partner-img {
  height: 48px;
  max-width: 100px;
}

.footer-partner--baboholiday .footer-partner-img {
  height: 36px;
  max-width: 120px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 28px;
}

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
  margin: 0;
}

.footer-policy {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.footer-policy:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS — Multi-row drifting cards
═══════════════════════════════════════════ */

.testimonials {
  background: var(--color-green, #2a5c45);
  padding: 64px 0 52px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.testimonials .section-inner {
  padding: 0 clamp(24px, 5vw, 60px);
  max-width: none;
}

.testimonials .section-header {
  text-align: center;
  padding: 0;
  margin-bottom: 36px;
}

.testimonials .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.reviews-band {
  background: var(--color-green, #2a5c45);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reviews-row {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  flex-direction: row;
  width: max-content;
  padding: 8px 0;
}

.reviews-track .review-card {
  margin-right: 16px;
}

@keyframes drift-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes drift-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.reviews-track--left-55 {
  animation: drift-left 55s linear infinite;
}
.reviews-track--right-70 {
  animation: drift-left 70s linear infinite;
}
.reviews-track--left-45 {
  animation: drift-left 45s linear infinite;
}

.reviews-row:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  background: var(--ivory, #F5F0E8);
  border-radius: 14px;
  padding: 24px 28px;
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  border: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.review-stars {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold, #C4A35A);
  line-height: 1;
}

.review-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal, #2C2622);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(196, 163, 90, 0.2);
  margin: 0;
}

.review-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--obsidian, #1A1611);
}

.review-source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: #9E8672;
  white-space: nowrap;
}

.platform-icon {
  flex-shrink: 0;
}

.review-translated {
  display: none;
}

@media (max-width: 767px) {
  .testimonials { padding: 52px 0 44px; }
  .testimonials .section-header { margin-bottom: 24px; }
  .reviews-band { gap: 12px; }
  .review-card { width: 280px; padding: 20px 22px; }
  .review-body { font-size: 15px; -webkit-line-clamp: 3; }
  .reviews-row:last-child { display: none; }
}

/* ── LOCATION ── */
.location {
  background: var(--ivory, #F5F0E8);
  padding: var(--section-pad-v) 0 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.location-header {
  text-align: center;
  padding: 0 60px 64px;
}

.location-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--obsidian, #1A1611);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-heading-to-sub, 18px);
}

.location-headline em {
  font-style: italic;
  color: var(--gold, #C4A35A);
}

/* Map wrap — relative so footer can overlay */
.location-map-wrap {
  position: relative;
  width: 100%;
}

/* Map frame — full width, no radius, bleeds */
.location-map-frame {
  width: 100%;
  height: 560px;
  overflow: hidden;
  display: block;
}

.location-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

/* Stats bar — overlays bottom of map */
.location-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 60px;
  background: rgba(26, 22, 17, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.location-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 48px;
  text-align: center;
}

.location-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
}

.location-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.location-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.location-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold, #C4A35A);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 163, 90, 0.4);
  padding-bottom: 2px;
  margin-left: 48px;
  transition: color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.location-cta:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

/* ── STICKY BAR — Two CTAs ── */
.sticky-bar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.sticky-bar-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: none;
}
.sticky-bar-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}
.sticky-bar-btn--ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: white;
}
.sticky-bar-btn--solid {
  background: var(--color-green, #2a5c45);
  color: #fff;
  border: 1px solid var(--color-green, #2a5c45);
}
.sticky-bar-btn--solid:hover {
  background: #1d4232;
}
