/* ═══════════════════════════════════════════════════════════
   VOLA MALDIVES — Experiences Page
   ═══════════════════════════════════════════════════════════ */

.nav.scrolled .nav__logo img { filter: none; }
.nav.scrolled .nav__center a { color: var(--ink-mid); }
.nav.scrolled .nav__center a:hover { color: var(--ocean); }
.nav__active { color: var(--ocean) !important; }
.nav__active::after { width: 100% !important; background: var(--ocean) !important; }

/* ── Hero ────────────────────────────────────────────────── */
.exp-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  padding-bottom: 72px;
}
.exp-hero__bg {
  position: absolute; inset: 0;
  background:
    url('images/exp-diving.jpg') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.exp-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.65) 100%);
}
.exp-hero__content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 0 32px;
  padding-top: 80px;
}
.exp-hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 22px;
}
.exp-hero__title em { font-style: italic; color: rgba(255,255,255,0.82); }
.exp-hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}

/* pill nav */
.exp-hero__nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,169,110,0.15);
  overflow-x: auto;
  scrollbar-width: none;
}
.exp-hero__nav::-webkit-scrollbar { display: none; }
.exp-hero__nav a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 18px 28px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: color 0.3s, background 0.3s;
  display: block;
}
.exp-hero__nav a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }

/* ── Shared section layout ───────────────────────────────── */
.exp-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  background: var(--white);
}
.exp-section--flipped { }
.exp-section--dark { background: var(--ocean-deep); }

.exp-section__media {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 2fr 1fr;
  gap: 3px;
}
.exp-section__img,
.exp-section__img-2 {
  width: 100%; height: 100%;
  transition: transform 0.8s var(--ease-out);
}
.exp-section:hover .exp-section__img { transform: scale(1.04); }

.exp-section__body {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: var(--white);
}
.exp-section__body--dark { background: var(--ocean-deep); }

.exp-section__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}
.exp-section__title--light { color: var(--white); }
.exp-section__title em { font-style: italic; color: var(--ocean); }

.exp-section__lead {
  font-size: 0.94rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 32px;
}
.exp-section__lead--light { color: rgba(255,255,255,0.6); }
.exp-section__note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

/* ── Features list ───────────────────────────────────────── */
.exp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.exp-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.exp-feature__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.exp-feature strong { display: block; font-size: 0.85rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.exp-feature p { font-size: 0.8rem; color: var(--mid); line-height: 1.65; }

/* ── Highlight box (dive sites) ──────────────────────────── */
.exp-highlight-box {
  background: var(--ivory);
  border: 1px solid #e8e2d8;
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.exp-highlight-box__label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.exp-highlight-box__sites {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.exp-highlight-box__sites span {
  font-size: 0.75rem;
  color: var(--ocean);
  background: rgba(26,107,107,0.08);
  border: 1px solid rgba(26,107,107,0.18);
  padding: 4px 12px;
}

/* ── Honeymoon moments ───────────────────────────────────── */
.exp-moments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid #ece8e0;
}
.exp-moment {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid #ece8e0;
  border-right: 1px solid #ece8e0;
  transition: background 0.3s;
}
.exp-moment:hover { background: var(--ivory); }
.exp-moment:nth-child(2n) { border-right: none; }
.exp-moment:nth-last-child(-n+2) { border-bottom: none; }
.exp-moment__num {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(201,169,110,0.35);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.exp-moment strong { display: block; font-size: 0.84rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.exp-moment p { font-size: 0.78rem; color: var(--mid); line-height: 1.6; }

/* ── Resort picks ────────────────────────────────────────── */
.exp-resort-picks { margin-bottom: 32px; }
.exp-resort-picks__label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}
.exp-resort-picks__list { display: flex; flex-direction: column; gap: 0; border: 1px solid #e8e2d8; }
.exp-resort-pick {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid #e8e2d8;
  transition: background 0.25s, color 0.25s, padding-left 0.25s;
}
.exp-resort-pick:last-child { border-bottom: none; }
.exp-resort-pick:hover { background: var(--ivory); color: var(--ocean); padding-left: 22px; }
.exp-resort-pick span { font-size: 0.68rem; color: var(--muted); }

/* ── Family age guide ────────────────────────────────────── */
.exp-age-guide { margin-bottom: 32px; }
.exp-age-guide__label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}
.exp-age-guide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.exp-age-item {
  background: var(--ivory);
  border: 1px solid #e8e2d8;
  border-top: 2px solid var(--ocean);
  padding: 16px 18px;
  transition: background 0.3s;
}
.exp-age-item:hover { background: var(--cream); }
.exp-age-item strong { display: block; font-size: 0.82rem; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.exp-age-item p { font-size: 0.76rem; color: var(--mid); line-height: 1.6; }

/* ── Wellness grid ───────────────────────────────────────── */
.exp-wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.exp-wellness-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 18px;
  transition: background 0.3s, transform 0.3s;
}
.exp-wellness-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.exp-wellness-card span { font-size: 1.4rem; display: block; margin-bottom: 10px; }
.exp-wellness-card h4 { font-family: var(--ff-serif); font-size: 1rem; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.exp-wellness-card p { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── Culture list ────────────────────────────────────────── */
.exp-culture-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}
.exp-culture-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.exp-culture-item:last-child { border-bottom: none; }
.exp-culture-item__marker { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; margin-top: 4px; }
.exp-culture-item strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--white); margin-bottom: 5px; }
.exp-culture-item p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── Excursions grid ─────────────────────────────────────── */
.excursions {
  background: var(--cream);
  padding: 100px 64px;
}
.excursions__header {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}
.excursions__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
}
.excursions__sub { font-size: 0.94rem; color: var(--mid); line-height: 1.8; }

.excursions__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.exc-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid #e0dbd2;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.exc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.exc-card__img {
  height: 200px;
  transition: transform 0.7s var(--ease-out);
}
.exc-card:hover .exc-card__img { transform: scale(1.05); }
.exc-card__body { padding: 24px; }
.exc-card__icon { font-size: 1.4rem; display: block; margin-bottom: 10px; }
.exc-card__body h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.exc-card__body p { font-size: 0.84rem; color: var(--mid); line-height: 1.75; }

/* ── Experience Planner ──────────────────────────────────── */
.planner {
  background: var(--ink);
  padding: 100px 64px;
}
.planner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.planner__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.planner__title em { font-style: italic; color: var(--gold); }
.planner__sub { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 28px; }

.planner__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 2;
  align-self: center;
}
.planner__opt {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 18px;
  cursor: none;
  transition: all 0.25s var(--ease-out);
}
.planner__opt:hover  { color: var(--white); border-color: rgba(255,255,255,0.3); }
.planner__opt.active { background: var(--gold); color: var(--white); border-color: var(--gold); }

.planner__btn {
  grid-column: 2;
  align-self: flex-start;
  margin-top: 8px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .exp-section { grid-template-columns: 1fr; min-height: auto; }
  .exp-section__media { height: 320px; grid-template-rows: 1fr; }
  .exp-section__img-2 { display: none; }
  .exp-section__body { padding: 52px 40px; }
  .exp-section--flipped .exp-section__media { order: -1; }

  .excursions__grid { grid-template-columns: repeat(2, 1fr); }
  .planner__inner { grid-template-columns: 1fr; gap: 40px; }
  .planner__options { grid-column: 1; }
  .planner__btn { grid-column: 1; }
  .exp-features { grid-template-columns: 1fr; }
  .exp-wellness-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .exp-hero { height: 70vh; padding-bottom: 56px; }
  .exp-hero__nav a { padding: 14px 18px; }
  .exp-section__body { padding: 40px 24px; }
  .excursions { padding: 64px 24px; }
  .excursions__grid { grid-template-columns: 1fr; }
  .planner { padding: 64px 24px; }
  .exp-moments { grid-template-columns: 1fr; }
  .exp-moment:nth-child(2n) { border-right: 1px solid #ece8e0; }
  .exp-moment:nth-last-child(-n+2) { border-bottom: 1px solid #ece8e0; }
  .exp-moment:last-child { border-bottom: none; }
  .exp-age-guide__grid { grid-template-columns: 1fr; }
  .exp-wellness-grid { grid-template-columns: 1fr; }
}
