/* ============================================================
   Lady Bellaïs — Premium Tourism Website
   Clean Luxury Caribbean Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@1,400;1,500&display=swap');

/* =====================
   CSS Variables
   ===================== */
:root {
  --burgundy:        #7A1C1C;
  --burgundy-dark:   #5C1414;
  --burgundy-pale:   #F5EAEA;
  --ocean:           #0C5F73;
  --ocean-mid:       #1A8BA8;
  --ocean-light:     #5BB8CC;
  --ocean-pale:      #E0F4F8;
  --cream:           #FAF8F3;
  --sand:            #EDE3CF;
  --sand-dark:       #D4C4A5;
  --wood:            #8B6347;
  --dark:            #1A1714;
  --mid:             #4A4540;
  --light:           #8A8480;
  --white:           #FFFFFF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --nav-h: 76px;
  --radius: 0px; /* intentionally flat — luxury aesthetic */

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* =====================
   Reset & Base
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
svg { display: block; overflow: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* =====================
   Layout
   ===================== */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1280px) { .container { padding: 0 3.5rem; } }

.section { padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }

/* =====================
   Typography
   ===================== */
.label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .label { display: block; margin-bottom: 0.875rem; }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.55); }
.section-header.light .label { color: var(--ocean-light); }

/* =====================
   Buttons
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease-out),
              color 0.25s var(--ease-out),
              transform 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-burgundy { background: var(--burgundy); color: var(--white); }
.btn-burgundy:hover { background: var(--burgundy-dark); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-ocean { background: var(--ocean); color: var(--white); }
.btn-ocean:hover { background: var(--ocean-mid); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.btn-whatsapp:hover { background: #1EBD5B; }
.btn-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

/* =====================
   Navbar
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  transition: background 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out);
}
@media (min-width: 768px) { .navbar { padding: 0 2.5rem; } }

.navbar.transparent { background: transparent; }
.navbar.solid {
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26,23,20,0.07);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo .brand-name {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.35s;
}
.nav-logo .brand-sub {
  font-size: 0.525rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.35s;
  margin-top: 1px;
}
.navbar.transparent .nav-logo .brand-name { color: var(--white); }
.navbar.transparent .nav-logo .brand-sub  { color: rgba(255,255,255,0.5); }
.navbar.solid .nav-logo .brand-name { color: var(--burgundy); }
.navbar.solid .nav-logo .brand-sub  { color: var(--light); }

/* Nav links */
.nav-center {
  display: none;
  gap: 2.25rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1024px) { .nav-center { display: flex; } }

.nav-center a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}
.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}
.nav-center a:hover::after { width: 100%; }
.navbar.transparent .nav-center a { color: rgba(255,255,255,0.8); }
.navbar.transparent .nav-center a:hover { color: var(--white); }
.navbar.solid .nav-center a { color: var(--mid); }
.navbar.solid .nav-center a:hover { color: var(--dark); }

/* Nav right */
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-book {
  display: none;
  padding: 0.625rem 1.5rem;
  font-size: 0.7rem;
}
@media (min-width: 768px) { .nav-book { display: inline-flex; } }

.navbar.transparent .nav-book {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.navbar.transparent .nav-book:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.75);
  transform: none;
}
.navbar.solid .nav-book { background: var(--burgundy); color: var(--white); border: 1.5px solid var(--burgundy); }
.navbar.solid .nav-book:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); transform: none; }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.navbar.transparent .nav-hamburger span { background: rgba(255,255,255,0.85); }
.navbar.solid .nav-hamburger span { background: var(--dark); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--dark);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--burgundy); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid);
  padding: 8px;
  line-height: 1;
}
.mobile-menu-close svg { width: 24px; height: 24px; }

/* =====================
   Hero
   ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.webp');
  background-size: cover;
  background-position: center 35%;
  will-change: transform;
  transition: transform 8s var(--ease-out);
  transform: scale(1.05);
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.08) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.62) 75%,
    rgba(10,10,10,0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 1.5rem 4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    max-width: 720px;
    padding: 0 2.5rem 5rem;
  }
}
@media (min-width: 1280px) {
  .hero-content {
    padding: 0 3.5rem 6rem;
    max-width: 800px;
  }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
@media (min-width: 768px) { .hero-eyebrow { justify-content: flex-start; } }
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.82);
}
.hero-subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 2.25rem;
}
@media (min-width: 768px) { .hero-subtitle { margin-left: 0; margin-right: 0; } }
.hero-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) { .hero-ctas { justify-content: flex-start; } }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: nudge 2.5s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
}
@keyframes nudge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* =====================
   Experiences — Carousel
   ===================== */
.experiences-section { background: var(--cream); }

/* Header row: label/title left, nav arrows right */
.exp-section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.exp-section-top .section-header {
  text-align: left;
  margin-bottom: 0;
}

/* Prev / Next arrow buttons */
.exp-carousel-nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.exp-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(26,23,20,0.15);
  background: transparent;
  cursor: pointer;
  color: var(--dark);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.exp-nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.exp-nav-btn:hover {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
}
.exp-nav-btn:disabled { opacity: 0.28; pointer-events: none; }

/* Outer wrapper — clips fade overlays, full bleed */
.exp-carousel-outer {
  position: relative;
  overflow: hidden;
}

/* Left / right fade gradients */
.exp-fade {
  position: absolute;
  top: 0;
  bottom: 1rem; /* matches track padding-bottom */
  width: 100px;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.4s ease;
}
.exp-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--cream) 15%, transparent);
  opacity: 0;
}
.exp-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--cream) 15%, transparent);
  opacity: 1;
}
.exp-carousel-outer.at-start .exp-fade--left  { opacity: 0; }
.exp-carousel-outer:not(.at-start) .exp-fade--left  { opacity: 1; }
.exp-carousel-outer.at-end   .exp-fade--right { opacity: 0; }
.exp-carousel-outer:not(.at-end)   .exp-fade--right { opacity: 1; }

/* Scrollable track */
.exp-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 1.5rem;
  padding-bottom: 1rem;
  /* align first card with container content */
  padding-left:  max(1.5rem, calc((100vw - 1260px) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100vw - 1260px) / 2 + 1.5rem));
  cursor: grab;
}
.exp-carousel-track::-webkit-scrollbar { display: none; }
.exp-carousel-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.exp-carousel-track.is-dragging * { pointer-events: none; user-select: none; }

/* Individual cards */
.exp-card-c {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.07);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    box-shadow 0.45s var(--ease-out),
    transform 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
}
@media (min-width: 640px)  { .exp-card-c { flex: 0 0 340px; } }
@media (min-width: 1024px) { .exp-card-c { flex: 0 0 390px; } }
.exp-card-c:hover {
  box-shadow: 0 4px 8px rgba(26,23,20,0.04), 0 16px 40px rgba(26,23,20,0.10);
  transform: translateY(-3px);
  border-color: rgba(26,23,20,0.11);
}

/* Card image */
.exp-card-c-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
@media (min-width: 1024px) { .exp-card-c-img { height: 300px; } }
.exp-card-c-img img,
.exp-card-c-img .img-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-out);
}
.exp-card-c:hover .exp-card-c-img img,
.exp-card-c:hover .exp-card-c-img .img-bg { transform: scale(1.04); }
/* Soft bottom vignette on image */
.exp-card-c-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.22) 0%, transparent 50%);
  pointer-events: none;
}

/* Badge */
.exp-card-c-badge {
  position: absolute;
  top: 1.125rem;
  left: 1.125rem;
  background: rgba(250,248,243,0.96);
  color: var(--burgundy);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  z-index: 1;
}

/* Card body */
.exp-card-c-body {
  padding: 1.75rem 1.75rem 1.875rem;
}
.exp-card-c-body h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  font-style: italic;
  color: var(--dark);
  line-height: 1.25;
  margin: 0 0 0.625rem;
  transition: color 0.25s;
}
.exp-card-c:hover .exp-card-c-body h3 { color: var(--burgundy); }
.exp-card-c-body p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.75;
  margin: 0 0 1.375rem;
  font-weight: 300;
}
.exp-card-c-link {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.exp-link-arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease-out);
}
.exp-card-c:hover .exp-link-arrow { transform: translateX(4px); }

/* Image gradient placeholders */
.img-snorkel { background: url('../images/snorkel.jpg') center/cover; }
.img-brunch  { background: url('../images/brunch.webp') center/cover; }
.img-bites   { background: url('../images/turtle.jpg') center/cover; }
.img-sunset  { background: url('../images/sunset.jpg') center/cover; }
.img-events  { background-image: url('../images/bella-events.jpg'); background-size: cover; background-position: center; }

/* =====================
   About Preview
   ===================== */
.about-section { background: var(--sand); overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (min-width: 1024px) { .about-img { aspect-ratio: auto; min-height: 580px; } }
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.8s var(--ease-out);
}
.about-img:hover img { transform: scale(1.03); }
.about-img-frame {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  pointer-events: none;
}
.about-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 2rem;
}
@media (min-width: 768px) { .about-body { padding: 4.5rem 3.5rem; } }
.about-body .label { display: block; margin-bottom: 1rem; }
.about-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.about-body h2 em { font-style: italic; color: var(--burgundy); }
.about-rule { width: 36px; height: 2px; background: var(--burgundy); margin-bottom: 1.5rem; }
.about-body p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.125rem;
  font-weight: 300;
}
.about-body p:last-of-type { margin-bottom: 2rem; }

/* =====================
   The Lady Bellaïs Experience — editorial storytelling
   ===================== */
.exp-story-section {
  background: var(--white);
  padding: 7rem 0;
}
@media (min-width: 1024px) { .exp-story-section { padding: 9rem 0; } }

.exp-story-section .section-header {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Individual alternating block */
.exp-story-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.exp-story-block:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .exp-story-block {
    grid-template-columns: 1.05fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
  }
  /* Reverse: image right, text left */
  .exp-story-block--reverse {
    grid-template-columns: 1fr 1.05fr;
  }
  .exp-story-block--reverse .exp-story-img  { order: 2; }
  .exp-story-block--reverse .exp-story-body { order: 1; }
}

/* Image wrapper */
.exp-story-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--sand);
}
.exp-story-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.9s var(--ease-out);
}
@media (min-width: 768px)  { .exp-story-img img { height: 440px; } }
@media (min-width: 1024px) { .exp-story-img img { height: 500px; } }
.exp-story-img:hover img { transform: scale(1.04); }

/* Text column */
.exp-story-body {
  padding: 0.5rem 0;
}
.exp-story-body .label {
  margin-bottom: 1rem;
}
.exp-story-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 2.8vw, 2.25rem);
  font-weight: 500;
  font-style: italic;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}
.exp-story-body p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.9;
  font-weight: 300;
  max-width: 420px;
  margin: 0;
}
/* On reverse blocks the text is first in DOM — keep max-width flush right */
.exp-story-block--reverse .exp-story-body p {
  max-width: 420px;
  margin-left: auto;
}

/* =====================
   Gallery Preview
   ===================== */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 300px;
    gap: 0.875rem;
  }
  .gallery-item:nth-child(1) { grid-row: span 2; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--sand);
}
.gallery-item img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
@media (min-width: 768px) { .gallery-item img { height: 100%; } }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.42);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 3px;
}
.gallery-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* =====================
   Testimonials
   ===================== */
.testimonials-section {
  background: linear-gradient(150deg, #0C2430 0%, #0D5F73 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1.75rem;
  transition: background 0.3s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.09); }
.t-stars {
  color: #F0B858;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.t-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}
.t-author { display: flex; align-items: center; gap: 0.875rem; }
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  flex-shrink: 0;
}
.t-name { font-size: 0.8125rem; font-weight: 600; color: var(--white); display: block; }
.t-platform { font-size: 0.625rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }
.testimonials-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.testimonials-note a { color: var(--ocean-light); transition: color 0.2s; }
.testimonials-note a:hover { color: rgba(255,255,255,0.8); }

/* =====================
   Booking CTA
   ===================== */
.cta-section {
  position: relative;
  background: var(--burgundy);
  overflow: hidden;
}
.cta-section .container {
  position: relative;
  z-index: 2;
  padding-top: 6rem; padding-bottom: 6rem;
  text-align: center;
}
@media (min-width: 1024px) { .cta-section .container { padding-top: 8rem; padding-bottom: 8rem; } }
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%; left: -15%;
  width: 70vh; height: 70vh;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -25%; right: -10%;
  width: 50vh; height: 50vh;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  pointer-events: none;
}
.cta-eyebrow {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 1.25rem;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.125rem;
}
.cta-title em { font-style: italic; opacity: 0.8; }
.cta-subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.62);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   Footer
   ===================== */
.footer {
  background: #0d0b09;
  color: rgba(255,255,255,0.55);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (min-width: 1100px) { .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1.15fr; gap: 3.5rem; } }

/* Brand */
.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1.2;
}
.footer-brand .brand-sub {
  font-size: 0.525rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  display: block;
  margin-bottom: 1rem;
  margin-top: 0.2rem;
}
.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 280px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin: 0 0 1.5rem;
}

/* Social icons */
.footer-social { display: flex; gap: 0.625rem; }
.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background 0.22s, color 0.22s, transform 0.22s;
  flex-shrink: 0;
}
.footer-social-link:hover {
  background: var(--burgundy);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social-link svg { width: 16px; height: 16px; }

/* Column titles */
.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: block;
  margin-bottom: 1.25rem;
}

/* Nav links */
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; list-style: none; }
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--ocean-light); }

/* Contact items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.125rem;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item-icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-item-icon svg {
  width: 15px; height: 15px;
  stroke: var(--ocean-light);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact-item-body { display: flex; flex-direction: column; gap: 2px; }
.footer-contact-label {
  font-size: 0.575rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  display: block;
}
.footer-contact-item-body a,
.footer-contact-item-body span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.55;
  transition: color 0.2s;
}
.footer-contact-item-body a:hover { color: var(--white); }

/* Bottom bar */
.footer-bottom {
  padding: 1.375rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  align-items: center;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* =====================
   Page Hero (inner pages)
   ===================== */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4.5rem;
  background: var(--dark);
  text-align: center;
}
.page-hero .label { color: var(--ocean-light); display: block; margin-bottom: 0.875rem; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.75;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-relative { position: relative; overflow: hidden; }

/* =====================
   Experiences Page
   ===================== */
.exp-detail {
  padding: 5rem 0;
  border-bottom: 1px solid var(--sand);
}
.exp-detail:last-child { border-bottom: none; }
.exp-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .exp-detail-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .exp-detail:nth-child(even) .exp-detail-img { order: 2; }
  .exp-detail:nth-child(even) .exp-detail-body { order: 1; }
}
.exp-detail-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.exp-detail-img img,
.exp-detail-img .img-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.exp-detail-img:hover img { transform: scale(1.04); }
.exp-detail-img-frame {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(255,255,255,0.25);
  pointer-events: none;
  transition: inset 0.3s;
}
.exp-detail-img:hover .exp-detail-img-frame { inset: 0.875rem; }
.exp-detail-body .label { display: block; margin-bottom: 1rem; }
.exp-detail-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.exp-detail-rule { width: 32px; height: 2px; background: var(--burgundy); margin: 1.25rem 0; }
.exp-detail-body p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-weight: 300;
}
.exp-detail-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}
.exp-meta-item { display: flex; flex-direction: column; gap: 2px; }
.exp-meta-item .meta-label {
  font-size: 0.575rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light);
}
.exp-meta-item .meta-val {
  font-size: 0.875rem;
  color: var(--dark);
  font-weight: 500;
}

/* =====================
   About Page — Cinematic Hero
   ===================== */
.about-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-hero.loaded .about-hero-bg {
  transform: scale(1);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 6, 0.82) 0%,
    rgba(10, 8, 6, 0.35) 50%,
    rgba(10, 8, 6, 0.18) 100%
  );
}
.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
}
.about-hero-content .container {
  padding-top: 0;
  padding-bottom: 0;
}
.about-hero-content .label {
  color: var(--ocean-light);
  display: block;
  margin-bottom: 1rem;
}
.about-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  max-width: 640px;
}
.about-hero-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.62);
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
}

/* =====================
   About Page — Atmospheric divider
   ===================== */
.atmospheric-divider {
  position: relative;
  overflow: hidden;
  height: 460px;
}
.atmospheric-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.atmospheric-divider-caption {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* =====================
   About Page — Journey Section
   ===================== */
.journey-section {
  background: var(--dark);
  padding: 7rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) { .journey-section { padding: 8rem 0; } }
.journey-section .section-header .label { color: var(--ocean-light); }
.journey-section .section-header h2  { color: var(--white); }
.journey-section .section-header p   { color: rgba(255,255,255,0.48); }

/* Split layout */
.journey-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .journey-layout { grid-template-columns: 1.15fr 1fr; gap: 5.5rem; }
}

/* Map column */
.journey-map-wrap {
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}
.journey-map-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Location labels — HTML over SVG */
.route-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.route-location {
  position: absolute;
  transform: translate(-50%, -130%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: all;
  cursor: default;
}
.route-location-name {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.route-location-sub {
  font-size: 0.4375rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* Hover tooltips */
.route-location-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6,14,20,0.94);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 3px;
  padding: 0.55rem 0.8rem;
  font-size: 0.625rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  white-space: normal;
  width: 160px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  backdrop-filter: blur(6px);
}
.route-location-tooltip strong {
  display: block;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.25em;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
}
.route-location:hover .route-location-tooltip { opacity: 1; }

/* Animated route line */
.route-draw {
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  transition: none;
}
.route-draw.animate {
  animation: draw-route 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}
@keyframes draw-route {
  to { stroke-dashoffset: 0; }
}

/* Pulse ring animation on dots */
.pulse-ring {
  transform-origin: center;
  opacity: 0;
}
.pulse-ring.animate {
  animation: pulse-dot 2.5s ease-out infinite;
  animation-delay: 3.2s;
}
@keyframes pulse-dot {
  0%   { transform: scale(1); opacity: 0.5; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { opacity: 0; }
}

/* Text column */
.journey-body { padding-top: 0; }
.journey-body p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.journey-body p:last-child { margin-bottom: 0; }
.journey-body em {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(255,255,255,0.7);
}
.journey-caption {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

/* =====================
   About Page — Story
   ===================== */
.about-story { background: var(--cream); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .about-story-grid { grid-template-columns: 1fr 480px; gap: 6rem; } }
.about-story-body .label { display: block; margin-bottom: 1rem; }
.about-story-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 2rem;
}
.about-story-body p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.about-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.about-stat {
  padding: 1.75rem;
  background: var(--sand);
  border-left: 3px solid var(--burgundy);
}
.about-stat .stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--burgundy);
  display: block;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.about-stat .stat-label { font-size: 0.75rem; color: var(--mid); font-weight: 300; line-height: 1.5; }
.about-full-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
@media (min-width: 1024px) { .about-full-img { aspect-ratio: 16/6; } }

/* =====================
   About Page — Why Section
   ===================== */
.why-section { background: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.why-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.1);
  line-height: 1;
}
.why-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  flex-shrink: 0;
}
.why-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ocean-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-item h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
.why-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
}

/* =====================
   About Page — Bonaire Cruisers Partner Section
   ===================== */
.bc-section { background: var(--cream); }
.bc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .bc-layout { grid-template-columns: 1fr 300px; gap: 5rem; }
}
.bc-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.bc-rule::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--burgundy);
  flex-shrink: 0;
}
.bc-rule::after {
  content: '';
  width: 60px;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--sand-dark) 0, var(--sand-dark) 5px,
    transparent 5px, transparent 12px
  );
}
.bc-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 2rem;
}
.bc-title em { font-style: italic; color: var(--burgundy); }
.bc-body p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.bc-body p:last-child { margin-bottom: 0; }
.bc-cta { margin-top: 2rem; display: inline-flex; }

/* Logo visual */
.bc-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1;
}
@media (min-width: 1024px) { .bc-visual { order: 0; justify-content: flex-end; } }
.bc-logo-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  opacity: 0.78;
  display: block;
}

/* =====================
   Gallery Page
   ===================== */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .gallery-page-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .gallery-page-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-page-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.gallery-page-item.tall { aspect-ratio: 2/3; }
.gallery-page-item.wide { aspect-ratio: 4/3; }
.gallery-page-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery-page-item:hover img { transform: scale(1.06); }
.gallery-page-overlay {
  position: absolute; inset: 0;
  background: rgba(26,23,20,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-page-item:hover .gallery-page-overlay { opacity: 1; }
.gallery-page-overlay svg { width: 28px; height: 28px; stroke: white; fill: none; stroke-width: 1.5; }

/* =====================
   Contact Page
   ===================== */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-body .label { display: block; margin-bottom: 1rem; }
.contact-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1rem;
}
.contact-body p { font-size: 1rem; color: var(--mid); line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--sand-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--burgundy); fill: none; stroke-width: 1.5; }
.contact-item-text .clabel { font-size: 0.575rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--light); display: block; margin-bottom: 3px; }
.contact-item-text a,
.contact-item-text span { font-size: 0.9375rem; color: var(--dark); transition: color 0.2s; }
.contact-item-text a:hover { color: var(--burgundy); }
.contact-social-row { display: flex; gap: 0.875rem; flex-wrap: wrap; margin-top: 1rem; }
.contact-social-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--sand-dark);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid);
  transition: all 0.25s;
}
.contact-social-btn:hover { border-color: var(--dark); color: var(--dark); background: var(--sand); }
.contact-social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--sand-dark);
  flex-direction: column;
  gap: 0.75rem;
  color: var(--light);
}
@media (min-width: 1024px) { .map-placeholder { aspect-ratio: auto; min-height: 480px; } }
.map-placeholder svg { width: 36px; height: 36px; stroke: var(--sand-dark); fill: none; stroke-width: 1; }
.map-placeholder span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---- Contact page map embed ---- */
.contact-map {
  width: 100%;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(26,23,20,0.08);
  box-shadow: 0 2px 8px rgba(26,23,20,0.06);
}
@media (min-width: 1024px) { .contact-map { height: 380px; } }

/* =====================
   Scroll Reveal
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* =====================
   Utility
   ===================== */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* =====================
   Booking Modal
   ===================== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.booking-modal.open {
  pointer-events: all;
  opacity: 1;
}
.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.booking-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--cream);
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s var(--ease-out);
  box-shadow: 0 24px 80px rgba(10, 10, 10, 0.35);
}
.booking-modal.open .booking-modal-panel {
  transform: translateY(0) scale(1);
}
.booking-modal-close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: color 0.2s, background 0.2s;
  z-index: 2;
}
.booking-modal-close:hover { color: var(--dark); background: var(--sand); }
.booking-modal-close svg { width: 20px; height: 20px; }

.booking-modal-header {
  padding: 2rem 3.5rem 1.5rem 2rem; /* right padding gives space for close btn */
  border-bottom: 1px solid var(--sand);
}
.booking-modal-header .label { display: block; margin-bottom: 0.625rem; }
.booking-modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
}

.booking-modal-body {
  padding: 0;
  min-height: 220px;
}

/* Bokun widget container — the actual widget fills this once injected */
#bokun-widget-container {
  width: 100%;
  min-height: 220px;
}

/* Loading / placeholder state shown before Bokun is initialised */
.booking-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 3rem 2rem;
  text-align: center;
  min-height: 220px;
}
.booking-spinner {
  width: 34px;
  height: 34px;
  border: 2px solid var(--sand);
  border-top-color: var(--burgundy);
  border-radius: 50%;
  animation: booking-spin 0.75s linear infinite;
  flex-shrink: 0;
}
@keyframes booking-spin { to { transform: rotate(360deg); } }
.booking-loading-exp {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--dark);
}
.booking-loading-msg {
  font-size: 0.875rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.65;
  max-width: 300px;
}

.booking-modal-footer {
  padding: 1rem 2rem;
  background: var(--sand);
  border-top: 1px solid var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.booking-modal-footer p {
  font-size: 0.6875rem;
  color: var(--light);
  letter-spacing: 0.08em;
  text-align: center;
}
.booking-modal-footer svg {
  width: 14px;
  height: 14px;
  stroke: var(--light);
  fill: none;
  flex-shrink: 0;
}

/* =====================
   Footer Credit
   ===================== */
.footer-credit { font-size: 0.6875rem; color: rgba(255,255,255,0.15); }
.footer-credit a { color: rgba(255,255,255,0.22); transition: color 0.2s; }
.footer-credit a:hover { color: rgba(255,255,255,0.5); }

/* =====================
   Experience Listing Cards (experiences.html)
   ===================== */
.exp-cards-section { background: var(--cream); }
.exp-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .exp-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .exp-cards-grid { gap: 2.5rem; } }

.exp-listing-card {
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition:
    box-shadow 0.45s var(--ease-out),
    transform 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
}
.exp-listing-card:hover {
  box-shadow: 0 4px 8px rgba(26,23,20,0.04), 0 16px 40px rgba(26,23,20,0.10);
  transform: translateY(-3px);
  border-color: rgba(26,23,20,0.11);
}
.exp-listing-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.exp-listing-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
  display: block;
}
.exp-listing-card:hover .exp-listing-card-img img { transform: scale(1.04); }
.exp-listing-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.575rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.375rem 0.75rem;
}
.exp-listing-card-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.exp-listing-card-body .label { display: block; margin-bottom: 0.5rem; }
.exp-listing-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.875rem;
  line-height: 1.2;
  transition: color 0.3s;
}
.exp-listing-card:hover .exp-listing-card-body h3 { color: var(--burgundy); }
.exp-listing-card-body p {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.5rem;
}
.exp-listing-card-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  margin-bottom: 1.5rem;
}
.exp-listing-meta-item .meta-label {
  font-size: 0.525rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light);
  display: block;
  margin-bottom: 2px;
}
.exp-listing-meta-item .meta-val { font-size: 0.8125rem; color: var(--dark); font-weight: 500; }
.exp-listing-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  transition: gap 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.exp-listing-card:hover .exp-listing-card-cta { gap: 0.75rem; transform: translateX(3px); }
.exp-listing-card-cta::after { content: '→'; }

/* =====================
   Individual Experience Page Hero
   ===================== */
.exp-page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.exp-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.exp-page-hero.loaded .exp-page-hero-bg { transform: scale(1); }
.exp-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.88) 0%, rgba(10,8,6,0.38) 55%, rgba(10,8,6,0.12) 100%);
}
.exp-page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
}
.exp-page-hero-content .label { color: var(--ocean-light); display: block; margin-bottom: 1rem; }
.exp-page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 680px;
}
.exp-page-hero-content .hero-tagline {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}
.exp-page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.exp-hero-meta-item .meta-label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 3px;
}
.exp-hero-meta-item .meta-val {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

/* =====================
   Individual Experience Page — Detail Section
   ===================== */
.exp-page-detail { background: var(--cream); }
.exp-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .exp-page-grid { grid-template-columns: 1fr 340px; gap: 5rem; } }

.exp-page-body .label { display: block; margin-bottom: 1rem; }
.exp-page-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.exp-page-body p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 1.125rem;
  font-weight: 300;
}
.exp-page-body p:last-child { margin-bottom: 0; }

/* Highlights box */
.exp-highlights-box {
  background: var(--dark);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.exp-highlights-box h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.375rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.exp-highlight-list { display: flex; flex-direction: column; gap: 0.875rem; }
.exp-highlight-item { display: flex; align-items: center; gap: 0.875rem; }
.exp-highlight-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.exp-highlight-icon svg {
  width: 16px; height: 16px;
  stroke: var(--ocean-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.exp-highlight-text { font-size: 0.875rem; color: rgba(255,255,255,0.68); font-weight: 300; }

.exp-book-box {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.exp-book-box .btn { width: 100%; text-align: center; justify-content: center; cursor: pointer; }

/* =====================
   Individual Experience Page — Gallery
   ===================== */
.exp-page-gallery { background: var(--sand); padding: 4rem 0; }
.exp-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) { .exp-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.exp-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.exp-gallery-item.tall { aspect-ratio: 3/4; }
.exp-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  display: block;
}
.exp-gallery-item:hover img { transform: scale(1.06); }

/* =====================
   TripAdvisor Trust Bar
   ===================== */
.ta-trust-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--sand-dark);
  padding: 0.75rem 0;
}
.ta-trust-bar .container { display: flex; justify-content: center; }
.ta-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 1.375rem;
  border: 1px solid var(--sand-dark);
  background: var(--white);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ta-badge:hover { border-color: #34E0A1; box-shadow: 0 4px 18px rgba(52,224,161,0.14); }
.ta-badge-stars { color: #34E0A1; font-size: 1rem; letter-spacing: 0.05em; line-height: 1; flex-shrink: 0; }
.ta-badge-info { display: flex; flex-direction: column; gap: 1px; }
.ta-badge-rating { font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.ta-badge-count { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); font-weight: 300; }
.ta-badge-divider { width: 1px; height: 32px; background: var(--sand-dark); flex-shrink: 0; }
.ta-badge-link {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #34E0A1;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.ta-badge:hover .ta-badge-link { opacity: 0.72; }

/* =====================
   TripAdvisor Review Slider
   ===================== */
.ta-reviews-section {
  background: linear-gradient(150deg, #0C2430 0%, #0D5F73 100%);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.ta-slider-outer {
  position: relative;
  overflow: hidden;
  margin: 0 -0.5rem;
}
.ta-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.ta-slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}
@media (min-width: 768px) { .ta-slide { flex: 0 0 50%; } }
@media (min-width: 1200px) { .ta-slide { flex: 0 0 33.333%; } }
.ta-slide-inner {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1.75rem;
}
.ta-slide-stars { color: #34E0A1; font-size: 0.875rem; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
.ta-slide-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.5rem;
}
.ta-slide-attr { font-size: 0.75rem; color: rgba(255,255,255,0.38); letter-spacing: 0.06em; }
.ta-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 2.5rem;
}
.ta-slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.22s, width 0.22s, border-radius 0.22s;
  flex-shrink: 0;
}
.ta-slider-dot.active { background: #34E0A1; width: 20px; border-radius: 3px; }
.ta-slider-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.ta-slider-btn:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.ta-slider-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.ta-reviews-link {
  text-align: center;
  margin-top: 2.5rem;
}
.ta-reviews-link a {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #34E0A1;
  transition: opacity 0.2s;
}
.ta-reviews-link a:hover { opacity: 0.7; }

/* =====================
   Responsive tweaks for new sections
   ===================== */
@media (max-width: 639px) {
  .ta-badge { gap: 0.75rem; padding: 0.5rem 1rem; }
  .ta-badge-divider { display: none; }
  .ta-badge-link { display: none; }
}

/* ============================================================
   Event Detail Pages  (.ev-*)
   ============================================================ */

/* ----- Hero ----- */
.ev-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ev-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ev-hero.loaded .ev-hero-bg { transform: scale(1); }
.ev-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,6,0.93) 0%,
    rgba(10,8,6,0.52) 42%,
    rgba(10,8,6,0.15) 100%
  );
}
.ev-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--nav-h) + 2rem) 0 5rem;
}
.ev-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 1.125rem;
}
.ev-hero-eyebrow span { opacity: 0.4; }
.ev-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.875rem;
  max-width: 720px;
}
.ev-hero-tagline {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.58);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.25rem;
}
/* Meta row: duration, location, age */
.ev-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .ev-hero-meta { flex-direction: row; align-items: stretch; }
}
.ev-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) {
  .ev-hero-meta-item {
    padding: 0 2rem;
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.12);
  }
  .ev-hero-meta-item:first-child { padding-left: 0; border-left: none; }
}
.ev-hero-meta-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ev-hero-meta-icon svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.65);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ev-hero-meta-label {
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 2px;
}
.ev-hero-meta-val {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  display: block;
}
/* Age badge — inline below meta */
.ev-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--burgundy);
  color: rgba(255,255,255,0.92);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
}

/* ----- Page body ----- */
.ev-page {
  background: var(--cream);
  padding: 5rem 0 7rem;
}
@media (min-width: 1024px) { .ev-page { padding: 5.5rem 0 8rem; } }

.ev-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .ev-layout { grid-template-columns: 1fr 360px; gap: 5rem; }
}

/* ----- Experience Highlights ----- */
.ev-highlights {
  margin-bottom: 3rem;
}
.ev-highlights-header {
  margin-bottom: 1.75rem;
}
.ev-highlights-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  margin: 0 0 0.375rem;
  line-height: 1.25;
}
.ev-highlights-sub {
  font-size: 0.875rem;
  color: var(--mid);
  font-weight: 300;
  margin: 0;
  line-height: 1.6;
}
.ev-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 540px) {
  .ev-highlights-grid { grid-template-columns: 1fr 1fr; }
}
.ev-highlight-card {
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.07);
  border-radius: 10px;
  padding: 1.375rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}
.ev-highlight-card:hover {
  box-shadow: 0 6px 24px rgba(26,23,20,0.07);
  border-color: rgba(26,23,20,0.13);
  transform: translateY(-2px);
}
.ev-highlight-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107,40,50,0.06);
  border-radius: 8px;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.ev-highlight-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ev-highlight-card-title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.3;
}
.ev-highlight-card-desc {
  font-size: 0.8125rem;
  color: var(--mid);
  font-weight: 300;
  margin: 0;
  line-height: 1.65;
}

/* ----- Tabs ----- */
.ev-tabs {
  display: flex;
  border-bottom: 1px solid rgba(26,23,20,0.1);
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.ev-tabs::-webkit-scrollbar { display: none; }
.ev-tab-btn {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  background: none;
  border: none;
  padding: 0.875rem 1.375rem;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.ev-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out);
}
.ev-tab-btn.active { color: var(--dark); }
.ev-tab-btn.active::after { transform: scaleX(1); }
.ev-tab-btn:hover { color: var(--mid); }

.ev-tab-panel { display: none; }
.ev-tab-panel.active { display: block; }

/* ----- Description tab ----- */
.ev-description h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.375rem;
  line-height: 1.2;
}
.ev-description p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.125rem;
}
.ev-description p:last-child { margin-bottom: 0; }

/* Upcoming event dates */
.ev-dates {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26,23,20,0.07);
}
.ev-dates-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.ev-date-list { display: flex; flex-direction: column; gap: 0.625rem; }
.ev-date-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.07);
  gap: 1rem;
  flex-wrap: wrap;
  transition: border-color 0.2s;
}
.ev-date-item:hover { border-color: rgba(122,28,28,0.2); }
.ev-date-cal {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ev-date-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
  min-width: 2.25rem;
  text-align: center;
}
.ev-date-month-wrap { display: flex; flex-direction: column; gap: 1px; }
.ev-date-month {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.ev-date-year { font-size: 0.75rem; color: var(--light); }
.ev-date-info { font-size: 0.9375rem; color: var(--mid); font-weight: 300; }
.ev-date-spots {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  white-space: nowrap;
}
.ev-date-spots.limited { color: var(--burgundy); }

/* ----- Meeting point tab ----- */
.ev-meeting-map {
  width: 100%;
  height: 260px;
  background: var(--sand);
  border: 1px solid rgba(26,23,20,0.08);
  margin-bottom: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ev-meeting-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.ev-meeting-map-placeholder {
  font-size: 0.875rem;
  color: var(--light);
  text-align: center;
  padding: 2rem;
}
.ev-meeting-details { display: flex; flex-direction: column; gap: 1rem; }
.ev-meeting-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ev-meeting-icon {
  width: 38px;
  height: 38px;
  background: var(--sand);
  border: 1px solid rgba(26,23,20,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ev-meeting-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ev-meeting-label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  display: block;
  margin-bottom: 3px;
}
.ev-meeting-val {
  font-size: 0.9375rem;
  color: var(--dark);
  font-weight: 400;
  line-height: 1.55;
}

/* ----- Info sections (included / exclusions / notes / policy) ----- */
.ev-info-sections {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}
.ev-info-section {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(26,23,20,0.07);
}
.ev-info-section:last-child { border-bottom: 1px solid rgba(26,23,20,0.07); }
.ev-info-section-hd {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.ev-info-icon {
  width: 36px;
  height: 36px;
  background: var(--sand);
  border: 1px solid rgba(26,23,20,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ev-info-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ev-info-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--dark);
}
.ev-info-list {
  padding-left: 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ev-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.6;
}
.ev-info-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--ocean-mid);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.58em;
}
.ev-info-list.exclusions li::before { background: var(--burgundy); }
.ev-info-text {
  padding-left: 3.125rem;
  font-size: 0.9375rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.75;
}
.ev-info-text strong { color: var(--dark); font-weight: 500; }

/* ----- Right column — booking card ----- */
/* ---- Booking Card Shell ---- */
.ev-booking-card {
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.08);
  border-radius: 14px;
  box-shadow: 0 4px 6px rgba(26,23,20,0.04), 0 12px 40px rgba(26,23,20,0.10);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

/* ---- Header ---- */
.ev-booking-card-header {
  padding: 1.625rem 1.75rem 1.5rem;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ev-booking-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
  display: block;
  margin-bottom: 0.375rem;
}
.ev-booking-card-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  display: block;
}

/* ---- Body ---- */
.ev-booking-card-body {
  padding: 1.625rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ---- Field wrapper ---- */
.ev-field { display: flex; flex-direction: column; gap: 0; }
.ev-field-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light);
  display: block;
  margin-bottom: 0.5rem;
}

/* ---- Date select ---- */
.ev-field-select {
  width: 100%;
  padding: 0.8125rem 2.5rem 0.8125rem 0.9375rem;
  border: 1.5px solid rgba(26,23,20,0.12);
  border-radius: 8px;
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--dark);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A4540' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ev-field-select:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(122,28,28,0.08);
}

/* ---- Counter (Adults / Guests) ---- */
.ev-counter {
  display: flex;
  align-items: center;
  gap: 0;
}
.ev-counter-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,23,20,0.15);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  font-family: inherit;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.ev-counter-btn:hover:not(:disabled) {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(122,28,28,0.22);
}
.ev-counter-btn:disabled { opacity: 0.25; cursor: default; }
.ev-counter-val {
  flex: 1;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

/* ---- Age / info notice ---- */
.ev-age-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: rgba(26,23,20,0.04);
  border: 1px solid rgba(26,23,20,0.09);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.55;
  font-weight: 300;
}
.ev-age-notice svg {
  width: 15px;
  height: 15px;
  stroke: var(--mid);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* ---- CTA buttons ---- */
.ev-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.0625rem 1.25rem;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, transform 0.15s;
  text-decoration: none;
  text-align: center;
}
.ev-btn-primary:hover {
  background: var(--burgundy-dark);
  box-shadow: 0 4px 16px rgba(122,28,28,0.28);
  transform: translateY(-1px);
}
.ev-btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }

.ev-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9375rem 1.25rem;
  background: var(--white);
  border: 1.5px solid rgba(122,28,28,0.35);
  border-radius: 8px;
  color: var(--burgundy);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
  text-align: center;
}
.ev-btn-secondary:hover {
  border-color: var(--burgundy);
  background: rgba(122,28,28,0.04);
}
.ev-btn-secondary svg { width: 16px; height: 16px; fill: #25D366; flex-shrink: 0; }

/* ---- Trust / support line ---- */
.ev-trust-line {
  font-size: 0.75rem;
  color: var(--light);
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
  padding-top: 0.25rem;
  margin: 0;
}

/* ---- Mobile: card not sticky ---- */
@media (max-width: 1023px) {
  .ev-booking-card {
    position: static;
    box-shadow: 0 2px 4px rgba(26,23,20,0.04), 0 8px 24px rgba(26,23,20,0.09);
  }
}

/* ============================================================
   Mobile Polish & iPhone Layout Fixes  (≤ 767px)
   ============================================================ */

@media (max-width: 767px) {

  /* ---- Container: comfortable inset on narrow viewports ---- */
  .container { padding: 0 1.25rem; }

  /* ---- Sections: tighter vertical rhythm on mobile ---- */
  .section { padding: 4.5rem 0; }

  /* ---- Experience carousel cards ----
     Cap width at 78vw so the next card always peeks at the edge,
     signalling horizontal scroll without ever overflowing the page. */
  .exp-card-c { flex: 0 0 min(300px, 78vw); }

  /* ---- Event highlight cards (content overview) ----
     The default single-column layout stacks four full-width cards,
     making the section feel very heavy on mobile. Switch to a
     compact horizontal layout: icon left, title + description right. */
  .ev-highlights-grid { gap: 0.625rem; }
  .ev-highlight-card {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.25rem 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    align-items: start;
  }
  .ev-highlight-card-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    margin-bottom: 0;
    align-self: start;
    margin-top: 0.1rem;
  }
  .ev-highlight-card-icon svg { width: 0.9375rem; height: 0.9375rem; }
  .ev-highlight-card-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.8125rem;
    line-height: 1.3;
  }
  .ev-highlight-card-desc {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
  }

  /* ---- Event tabs / in-page navigation ----
     Reduce tab padding and text size so the tab strip feels refined,
     not like a chunky touch target bar. */
  .ev-tab-btn {
    padding: 0.625rem 0.9375rem;
    font-size: 0.5625rem;
    letter-spacing: 0.09em;
  }

  /* ---- Event hero meta row ---- */
  .ev-hero-meta-item { padding: 0.5625rem 0; }

  /* ---- Event page body ---- */
  .ev-page { padding: 3rem 0 5rem; }

  /* ---- Info lists: remove the desktop indent that is too deep on narrow screens ---- */
  .ev-info-list { padding-left: 0; }
  .ev-info-text  { padding-left: 0; }

  /* ---- Booking card: tighter padding ---- */
  .ev-booking-card-header { padding: 1.375rem 1.25rem; }
  .ev-booking-card-body   { padding: 1.375rem 1.25rem; }

  /* ---- About preview body ---- */
  .about-body { padding: 2.5rem 1.5rem; }

  /* ---- CTA section: stack buttons vertically ---- */
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn {
    text-align: center;
    justify-content: center;
  }

  /* ---- Footer: reduce vertical gap between columns ---- */
  .footer-grid { gap: 2rem; }

  /* ---- Experience detail page highlights box (sidebar) ---- */
  .exp-highlights-box { padding: 1.625rem 1.5rem; }

  /* ---- TripAdvisor slider: compensate negative margin at section level ---- */
  .ta-slider-outer { margin: 0; }
  .ta-slide { padding: 0 0.375rem; }
}

/* ---- Very small screens (≤ 380px, e.g. iPhone SE) ---- */
@media (max-width: 380px) {
  .container { padding: 0 1rem; }

  /* Cards slightly wider relative to viewport on very small screens */
  .exp-card-c { flex: 0 0 84vw; }

  /* Reduce hero title scale on tiny screens */
  .hero-title { font-size: clamp(2.25rem, 10vw, 3rem); }
}
