:root {
  --bg: #f7f4ee;
  --bg-soft: #fcfbf8;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #21303b;
  --muted: #5f6f7a;
  --line: rgba(33, 48, 59, 0.1);
  --aqua: #6cbcc3;
  --aqua-deep: #2f838e;
  --brand-teal: #2f838e;
  --brand-gold: #e1be81;
  --coral: #e1be81;
  --sand: #f4e2c8;
  --shadow: 0 24px 50px rgba(35, 59, 75, 0.14);
  --shadow-soft: 0 18px 36px rgba(35, 59, 75, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --hero-photo-radius: 38px;
  --hero-card-radius: 36px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(88, 200, 220, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(225, 190, 129, 0.12), transparent 18%),
    var(--bg);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow: hidden;
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform:
    translate3d(var(--reveal-x, 0), var(--reveal-y, 42px), 0)
    scale(var(--reveal-scale, 0.985));
  transform-origin: center;
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 1250ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 1000ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.site-header,
html.reveal-ready .site-header,
html.reveal-ready .site-header.is-visible {
  transform: none;
  filter: none;
}

[data-reveal="hero-nav"] {
  --reveal-y: -26px;
  --reveal-scale: 0.98;
}

[data-reveal="hero-story"] {
  --reveal-x: -48px;
  --reveal-y: 32px;
}

[data-reveal="panel"] {
  --reveal-x: 42px;
  --reveal-y: 28px;
  --reveal-scale: 0.975;
}

[data-reveal="hero-stats"] {
  --reveal-y: 18px;
  --reveal-scale: 0.94;
}

[data-reveal="section-heading"],
[data-reveal="copy"],
[data-reveal="button"] {
  --reveal-y: 36px;
}

[data-reveal="program-copy-left"] {
  --reveal-x: -112px;
  --reveal-y: 32px;
  --reveal-scale: 0.93;
}

[data-reveal="program-copy-right"] {
  --reveal-x: 112px;
  --reveal-y: 32px;
  --reveal-scale: 0.93;
}

[data-reveal="program-photo-left"] {
  --reveal-x: -84px;
  --reveal-y: 92px;
  --reveal-scale: 0.9;
}

[data-reveal="program-photo-top"] {
  --reveal-y: -96px;
  --reveal-scale: 0.91;
}

[data-reveal="program-photo-bottom"] {
  --reveal-x: -54px;
  --reveal-y: 104px;
  --reveal-scale: 0.9;
}

[data-reveal="program-photo-right"] {
  --reveal-x: 92px;
  --reveal-y: 46px;
  --reveal-scale: 0.91;
}

[data-reveal="program-toggle"] {
  --reveal-y: 28px;
  --reveal-scale: 0.985;
}

[data-reveal="card"],
[data-reveal="photo"] {
  --reveal-y: 54px;
  --reveal-scale: 0.965;
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 0.9rem 1rem 0;
  pointer-events: none;
}

.site-header-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 11.5rem minmax(0, 1fr) 0.5rem;
  align-items: center;
  gap: clamp(2.25rem, 5vw, 4.75rem);
  padding: 0.75rem 1rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(252, 251, 247, 0.8) 0%, rgba(241, 247, 247, 0.78) 100%),
    linear-gradient(90deg, rgba(225, 190, 129, 0.08) 0%, rgba(255, 255, 255, 0.18) 26%, rgba(108, 188, 195, 0.08) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 40px rgba(8, 42, 54, 0.14);
  backdrop-filter: blur(34px) saturate(0.98);
  -webkit-backdrop-filter: blur(34px) saturate(0.98);
  pointer-events: auto;
  position: relative;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  max-width: 11.5rem;
  position: relative;
  z-index: 3;
}

.brand-mark img {
  width: 100%;
  height: auto;
  opacity: 0.95;
}

.header-spacer {
  width: 0.5rem;
  min-height: 1px;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand-teal);
  cursor: pointer;
  box-shadow: none;
  position: relative;
  z-index: 3;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 42rem;
  margin: 0;
  overflow: hidden;
  padding-top: 6.5rem;
}

.hero-video-shell {
  position: absolute;
  inset: 0;
  background: #43c2d5;
  overflow: hidden;
}

.hero-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 42, 54, 0.08), rgba(8, 42, 54, 0.22)),
    linear-gradient(180deg, rgba(8, 42, 54, 0.04), rgba(247, 244, 238, 0.2));
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
}

.hero-nav {
  display: flex;
  width: min(100%, 48rem);
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 4vw, 3.2rem);
  justify-self: end;
}

.mobile-nav-brand {
  display: none;
}

.hero-nav a {
  color: color-mix(in srgb, var(--brand-teal) 88%, #21303b 12%);
  font-family: "Marcellus", "Manrope", serif;
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  letter-spacing: 0.035em;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.16);
  transition: color 180ms ease, transform 180ms ease;
}

.hero-nav a:hover {
  color: var(--coral);
  transform: translateY(-1px);
}

.floating-panel,
.tour-card,
.tour-side-panel,
.placeholder-card,
.contact-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-story {
  position: absolute;
  left: max(1rem, calc((100vw - var(--max-width)) / 2));
  bottom: 7rem;
  z-index: 2;
  width: min(calc(100% - 2rem), 40rem);
  color: #ffffff;
  text-shadow: 0 2px 22px rgba(8, 42, 54, 0.36);
}

.hero-story h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.5rem);
  line-height: 0.99;
  color: #ffffff;
  max-width: 12ch;
}

.hero-story h1 span {
  display: block;
}

.hero-story p {
  margin-top: 1rem;
  max-width: 40rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  color: var(--coral);
  letter-spacing: 0;
  line-height: 0.92;
  font-style: italic;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0;
  line-height: 1.72;
  color: var(--muted);
}

.hero-actions,
.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 1.4rem;
}

.hero-stats {
  position: absolute;
  left: max(1rem, calc((100vw - var(--max-width)) / 2));
  bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  padding-left: 0.05rem;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 18px rgba(8, 42, 54, 0.28);
}

.hero-stats span {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-deep) 100%);
  color: white;
  box-shadow: 0 16px 28px rgba(47, 131, 142, 0.28);
}

.button-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.button-full {
  width: 100%;
}

.intro,
.experience,
.features,
.itinerary,
.tour,
.placeholders,
.cta {
  padding-top: 5rem;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.experience-card:nth-child(2),
.features-grid .feature-card:nth-child(2),
.program-collage > :nth-child(2),
.placeholders > :nth-child(2) {
  --reveal-delay: 120ms;
}

.experience-card:nth-child(3),
.features-grid .feature-card:nth-child(3),
.program-collage > :nth-child(3) {
  --reveal-delay: 220ms;
}

.experience-card:nth-child(4),
.features-grid .feature-card:nth-child(4),
.program-collage > :nth-child(4) {
  --reveal-delay: 320ms;
}

.experience-card:nth-child(5),
.program-collage > :nth-child(5) {
  --reveal-delay: 440ms;
}

.experience-card:nth-child(6),
.program-collage > :nth-child(6) {
  --reveal-delay: 540ms;
}

.experience-card:nth-child(7),
.program-collage > :nth-child(7) {
  --reveal-delay: 640ms;
}

.experience-card:nth-child(8) {
  --reveal-delay: 740ms;
}

.experience-card {
  aspect-ratio: 9 / 12;
  min-height: 0;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 23, 31, 0.08), rgba(9, 23, 31, 0.18) 38%, rgba(9, 23, 31, 0.78));
}

.card-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.05rem;
  z-index: 1;
}

.card-overlay h3,
.card-overlay p {
  color: white;
}

.card-overlay p {
  margin-top: 0.4rem;
  line-height: 1.45;
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
}

.experience-card-rasdhoo {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80");
}

.experience-card-sandbank {
  background-image: url("https://images.unsplash.com/photo-1514282401047-d79a71a590e8?auto=format&fit=crop&w=900&q=80");
}

.experience-card-bluehole {
  background-image: url("https://images.unsplash.com/photo-1469796466635-455ede028aca?auto=format&fit=crop&w=900&q=80");
}

.experience-card-snorkeling {
  background-image: url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=900&q=80");
}

.experience-card-whaleshark {
  background-image: url("https://images.unsplash.com/photo-1559827260-dc66d52bef19?auto=format&fit=crop&w=900&q=80");
}

.experience-card-madivaru {
  background-image: url("https://images.unsplash.com/photo-1520454974749-611b7248ffdb?auto=format&fit=crop&w=900&q=80");
}

.experience-card-thoddoo {
  background-image: url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=900&q=80");
}

.experience-card-sunset {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80&sat=-10");
}

.value-strip {
  width: 100%;
  margin-top: 5.5rem;
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--aqua) 100%);
  padding: 5rem 1rem;
}

.value-strip-inner {
  width: min(calc(100% - 2rem), 54rem);
  margin: 0 auto;
  text-align: center;
}

.value-strip-inner h2,
.value-strip-inner p {
  color: white;
}

.value-strip-inner h2 {
  margin-bottom: 1rem;
}

.features-grid,
.placeholders,
.cta-layout,
.tour-layout {
  display: grid;
  gap: 1rem;
}

.feature-card {
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(33, 48, 59, 0.06);
  box-shadow: var(--shadow-soft);
}

.feature-card p {
  margin-top: 0.8rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.timeline-day {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(88, 200, 220, 0.16);
  color: var(--aqua-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.timeline-item p {
  margin-top: 0.75rem;
}

.program-heading {
  max-width: 58rem;
}

.program-heading h2 {
  color: var(--coral);
}

.program-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.program-mobile-slider {
  display: none;
}

.program-copy {
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.program-copy h3 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.program-days {
  width: fit-content;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(88, 200, 220, 0.16);
  color: var(--aqua-deep);
  font-weight: 800;
  font-size: 0.86rem;
}

.program-photo {
  position: relative;
  min-height: 16rem;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.program-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 23, 31, 0.02), rgba(9, 23, 31, 0.44));
}

.program-photo figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(9, 23, 31, 0.4);
}

.program-photo-rasdhoo {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80");
}

.program-photo-sandbank {
  background-image: url("./assets/hero-reference.png");
}

.program-photo-ocean {
  background-image: url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1000&q=80");
}

.program-photo-resort {
  background-image: url("https://images.unsplash.com/photo-1573843981267-be1999ff37cd?auto=format&fit=crop&w=900&q=80");
}

.program-photo-whaleshark {
  background-image: url("https://images.unsplash.com/photo-1559827260-dc66d52bef19?auto=format&fit=crop&w=900&q=80");
}

.program-photo-madivaru {
  background-image: url("https://images.unsplash.com/photo-1520454974749-611b7248ffdb?auto=format&fit=crop&w=900&q=80");
}

.program-photo-thoddoo {
  background-image: url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=900&q=80");
}

.program-photo-sunset {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80&sat=-10");
}

.program-mobile-hint {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.program-mobile-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(18rem, 82vw);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.2rem 0.2rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.program-mobile-track::-webkit-scrollbar {
  display: none;
}

.program-mobile-card {
  scroll-snap-align: start;
  display: grid;
  gap: 1rem;
  padding: 0.85rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.program-mobile-photo {
  position: relative;
  min-height: 19rem;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.program-mobile-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 23, 31, 0.06), rgba(9, 23, 31, 0.5));
}

.program-mobile-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(9, 23, 31, 0.4);
}

.program-mobile-copy {
  display: grid;
  gap: 0.7rem;
  padding: 0.1rem 0.2rem 0.2rem;
}

.program-mobile-copy h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.08;
}

.program-mobile-copy p {
  margin: 0;
  color: var(--muted);
}

.program-more {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.program-more-actions {
  display: grid;
  width: 100%;
}

.program-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.25rem;
  margin: 0 auto;
  padding: 0.85rem 1.55rem;
  border: 1px solid rgba(47, 131, 142, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--aqua-deep);
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.program-toggle::after {
  content: "+";
  margin-left: 0.7rem;
  font-size: 1.05rem;
  line-height: 1;
}

.program-more.is-open .program-toggle::after {
  content: "–";
}

.program-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.program-more-grid {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease;
}

.program-more.is-open .program-more-grid {
  max-height: 90rem;
  padding-top: 0.15rem;
  opacity: 1;
  pointer-events: auto;
}

.program-more-grid > * {
  opacity: 0;
  filter: blur(10px);
  transform:
    translate3d(var(--more-reveal-x, 0), var(--more-reveal-y, 42px), 0)
    scale(var(--more-reveal-scale, 0.985));
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--more-delay, 0ms),
    transform 1080ms cubic-bezier(0.22, 1, 0.36, 1) var(--more-delay, 0ms),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--more-delay, 0ms);
}

.program-more.is-open .program-more-grid > * {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.program-more-copy-left {
  --more-reveal-x: -118px;
  --more-reveal-y: 28px;
  --more-reveal-scale: 0.93;
  --more-delay: 70ms;
}

.program-more-photo-madivaru {
  --more-reveal-x: -86px;
  --more-reveal-y: -82px;
  --more-reveal-scale: 0.9;
  --more-delay: 140ms;
}

.program-more-photo-thoddoo {
  --more-reveal-x: 88px;
  --more-reveal-y: 42px;
  --more-reveal-scale: 0.9;
  --more-delay: 220ms;
}

.program-more-photo-resort {
  --more-reveal-x: -52px;
  --more-reveal-y: 104px;
  --more-reveal-scale: 0.89;
  --more-delay: 300ms;
}

.program-more-photo-sunset {
  --more-reveal-x: 86px;
  --more-reveal-y: 62px;
  --more-reveal-scale: 0.9;
  --more-delay: 380ms;
}

.program-more-copy-right {
  --more-reveal-x: 118px;
  --more-reveal-y: 30px;
  --more-reveal-scale: 0.93;
  --more-delay: 460ms;
}

.tour-card,
.tour-side-panel,
.placeholder-card,
.contact-card {
  padding: 1.6rem;
}

.tour-meta {
  margin: 1.2rem 0;
}

.tour-meta span {
  padding: 0.8rem 1rem;
  background: rgba(88, 200, 220, 0.12);
  border-radius: 999px;
  color: var(--aqua-deep);
  font-weight: 800;
}

.bullet-list,
.audience-list {
  margin: 1.1rem 0 1.4rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.bullet-list li,
.audience-list li {
  position: relative;
  padding-left: 1.3rem;
  line-height: 1.6;
  color: var(--muted);
}

.bullet-list li::before,
.audience-list li::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--coral);
}

.tour-note,
.form-note {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.cta {
  padding-bottom: 4rem;
}

.cta-copy {
  padding: 0.4rem 0;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-card label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(33, 48, 59, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--text);
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: 2px solid rgba(88, 200, 220, 0.2);
  border-color: var(--aqua);
}

@media (min-width: 720px) {
  .hero {
    min-height: 42rem;
  }

  .hero-story {
    width: min(46%, 32rem);
    bottom: 6rem;
  }

  .hero-actions {
    margin-top: 1.55rem;
  }

  .hero-stats {
    margin-top: 1.15rem;
  }

  .experience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lifestyle-layout {
    display: block;
    min-height: 39rem;
    padding-top: 3.5rem;
  }

  .lifestyle-layout::before {
    right: 8.5rem;
    width: 70%;
    height: 31rem;
  }

  .lifestyle-photo {
    width: min(72%, 49rem);
    min-height: 33rem;
  }

  .floating-panel {
    position: absolute;
    right: 0;
    bottom: 1.2rem;
    width: min(43%, 31rem);
    padding: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-collage {
    grid-template-columns: minmax(8rem, 0.72fr) minmax(11rem, 0.88fr) minmax(12rem, 1.16fr) minmax(8rem, 0.72fr);
    grid-template-areas:
      "copyLeft tall wideTop wideTop"
      "wideBottom wideBottom smallTall copyRight"
      ". button button .";
    gap: 1rem;
  }

  .program-copy-left {
    grid-area: copyLeft;
  }

  .program-copy-right {
    grid-area: copyRight;
  }

  .program-photo-tall {
    min-height: 15rem;
  }

  .program-photo-wide {
    min-height: 15rem;
  }

  .program-photo-rasdhoo {
    grid-area: tall;
  }

  .program-photo-sandbank {
    grid-area: wideTop;
  }

  .program-photo-ocean {
    grid-area: wideBottom;
  }

  .program-photo-whaleshark {
    grid-area: smallTall;
  }

  .program-more {
    grid-column: 1 / -1;
    width: 100%;
    justify-items: center;
  }

  .program-more-grid {
    grid-template-columns: minmax(14rem, 1.12fr) minmax(10rem, 0.92fr) minmax(10rem, 0.92fr) minmax(14rem, 1.12fr);
    grid-template-areas:
      "copyLeft tall wideTop wideTop"
      "wideBottom wideBottom smallTall copyRight";
    gap: 1rem;
  }

  .program-more-actions {
    grid-template-columns: minmax(14rem, 1.12fr) minmax(10rem, 0.92fr) minmax(10rem, 0.92fr) minmax(14rem, 1.12fr);
    align-items: start;
  }

  .program-more-copy-left {
    grid-area: copyLeft;
  }

  .program-more-copy-right {
    grid-area: copyRight;
  }

  .program-more-photo-madivaru {
    grid-area: tall;
  }

  .program-more-photo-thoddoo {
    grid-area: wideTop;
  }

  .program-more-photo-resort {
    grid-area: wideBottom;
  }

  .program-more-photo-sunset {
    grid-area: smallTall;
  }

  .program-more.is-open {
    justify-items: stretch;
  }

  .program-more .program-toggle {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .program-more.is-open .program-toggle {
    grid-column: 4;
    justify-self: start;
    margin-top: 0.2rem;
  }

  .tour-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  }

  .placeholders {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }
}

@media (min-width: 1040px) {
  .hero {
    min-height: 44rem;
  }

  .hero-story {
    width: 34rem;
    bottom: 7.2rem;
  }

  .lifestyle-layout {
    min-height: 42rem;
  }

  .lifestyle-layout::before {
    right: 8.8rem;
    width: 72%;
    height: 32rem;
  }

  .lifestyle-photo {
    width: 50rem;
    min-height: 34.5rem;
  }

  .floating-panel {
    width: 31rem;
    bottom: 1.6rem;
  }

  .feature-card,
  .timeline-item,
  .tour-card,
  .tour-side-panel,
  .placeholder-card,
  .contact-card {
    padding: 1.8rem;
  }
}

@media (max-width: 920px) {
  .site-header {
    z-index: 70;
  }

  .site-header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
    border-radius: 22px;
    padding: 0.8rem 0.9rem;
    background:
      linear-gradient(180deg, rgba(244, 251, 252, 0.97) 0%, rgba(236, 247, 249, 0.95) 46%, rgba(247, 244, 238, 0.94) 100%),
      radial-gradient(circle at top right, rgba(88, 200, 220, 0.18), transparent 30%),
      radial-gradient(circle at bottom left, rgba(244, 226, 200, 0.24), transparent 24%);
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 18px 44px rgba(8, 42, 54, 0.16);
    backdrop-filter: blur(34px) saturate(0.98);
    -webkit-backdrop-filter: blur(34px) saturate(0.98);
  }

  .brand-mark {
    max-width: 9.5rem;
    opacity: 1;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    color: #e1be81;
    position: fixed;
    top: 1.15rem;
    right: 1.1rem;
    z-index: 90;
  }

  .site-header.is-menu-open .nav-toggle,
  .nav-toggle[aria-expanded="true"] {
    color: #e1be81;
  }

  .site-header.is-menu-open .site-header-shell {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-spacer {
    display: none;
  }

  .hero-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: start;
    gap: 1.25rem;
    width: 100vw;
    min-height: 100svh;
    padding: 5.8rem 1.25rem 2.5rem;
    background:
      linear-gradient(180deg, rgba(244, 251, 252, 0.97) 0%, rgba(236, 247, 249, 0.95) 46%, rgba(247, 244, 238, 0.94) 100%),
      radial-gradient(circle at top right, rgba(88, 200, 220, 0.18), transparent 30%),
      radial-gradient(circle at bottom left, rgba(244, 226, 200, 0.24), transparent 24%);
    box-shadow: none;
    backdrop-filter: blur(28px) saturate(1.08);
    -webkit-backdrop-filter: blur(28px) saturate(1.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 240ms ease, transform 380ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 240ms;
    z-index: 80;
  }

  .site-header.is-menu-open .hero-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
    transition: opacity 240ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
  }

  .nav-toggle[aria-expanded="true"] + .hero-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
    transition: opacity 240ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
  }

  .mobile-nav-brand {
    display: block;
    width: 10rem;
    margin-bottom: 1.45rem;
  }

  .mobile-nav-brand img {
    width: 100%;
    height: auto;
    display: block;
  }

  .mobile-nav-brand p {
    margin: 0.55rem 0 0;
    font-family: "Marcellus", "Manrope", serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(62, 152, 150, 0.9);
  }

  .hero-nav a {
    display: block;
    width: fit-content;
    margin-left: 0;
    margin-right: auto;
    padding: 0.18rem 0 0.18rem 1.15rem;
    border-radius: 0;
    font-family: "Marcellus", "Manrope", serif;
    font-size: 1.78rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.14;
    text-align: left;
    background: transparent;
    position: relative;
    color: rgba(33, 48, 59, 0.92);
    text-shadow: none;
    transform: translateX(88px);
    opacity: 0;
    transition: color 220ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
  }

  .hero-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 1.5rem;
    margin-left: -0.65rem;
    border-radius: 999px;
    background: var(--coral);
    transform: translateY(-50%);
    box-shadow: 0 0 0 1px rgba(225, 190, 129, 0.12);
  }

  .hero-nav a:hover,
  .hero-nav a:focus-visible,
  .hero-nav a:last-of-type {
    color: var(--coral);
  }

  .site-header.is-menu-open .hero-nav a {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-toggle[aria-expanded="true"] + .hero-nav a {
    transform: translateX(0);
    opacity: 1;
  }

  .site-header.is-menu-open .hero-nav a:nth-of-type(1) {
    transition-delay: 100ms;
  }

  .nav-toggle[aria-expanded="true"] + .hero-nav a:nth-of-type(1) {
    transition-delay: 100ms;
  }

  .site-header.is-menu-open .hero-nav a:nth-of-type(2) {
    transition-delay: 160ms;
  }

  .nav-toggle[aria-expanded="true"] + .hero-nav a:nth-of-type(2) {
    transition-delay: 160ms;
  }

  .site-header.is-menu-open .hero-nav a:nth-of-type(3) {
    transition-delay: 220ms;
  }

  .nav-toggle[aria-expanded="true"] + .hero-nav a:nth-of-type(3) {
    transition-delay: 220ms;
  }

  .site-header.is-menu-open .hero-nav a:nth-of-type(4) {
    transition-delay: 280ms;
  }

  .nav-toggle[aria-expanded="true"] + .hero-nav a:nth-of-type(4) {
    transition-delay: 280ms;
  }

  .hero {
    min-height: 100svh;
    padding-top: 7rem;
  }

  .hero-video {
    transform: scale(1.2);
    transform-origin: center;
    object-position: 58% center;
  }

  .hero-story {
    left: 1rem;
    right: 1rem;
    bottom: 8.4rem;
    width: auto;
  }

  .hero-story h2 {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }

  .hero-story p {
    max-width: 22rem;
    font-size: 0.98rem;
  }

  .hero-stats {
    left: 1rem;
    right: 1rem;
    bottom: 1.1rem;
    gap: 0.55rem;
    padding-left: 0;
  }

  .hero-stats span {
    padding: 0.72rem 0.95rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.7rem 0.75rem 0;
  }

  .site-header-shell {
    padding: 0.75rem 0.8rem;
  }

  .brand-mark {
    max-width: 8.7rem;
  }

  .hero-nav {
    padding: 1rem 1rem 2rem;
  }

  .mobile-nav-brand {
    width: 8.8rem;
    margin-bottom: 2rem;
  }

  .mobile-nav-brand p {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero-nav a {
    font-size: 1.5rem;
    padding-left: 1rem;
  }

  .nav-toggle {
    top: 1rem;
    right: 0.95rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 6.5rem;
  }

  .hero-video {
    transform: scale(1.34);
    object-position: 60% center;
  }

  .hero-story {
    bottom: 9rem;
  }

  .hero-story-kicker {
    font-size: 0.78rem;
  }

  .hero-story h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-story p {
    max-width: 18rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 1.15rem;
  }

  .hero-stats {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-stats::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 760px) {
  .experience-grid {
    display: flex;
    gap: 0.95rem;
    overflow-x: auto;
    padding: 0.2rem 0.2rem 1rem;
    margin-right: calc(50% - 50vw);
    padding-right: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .experience-grid::-webkit-scrollbar {
    display: none;
  }

  .experience-card {
    scroll-snap-align: start;
    flex: 0 0 76vw;
    aspect-ratio: 9 / 12;
  }

  .experience-card:first-child {
    flex-basis: 86vw;
  }

  .program-collage {
    display: none;
  }

  .program-mobile-slider {
    display: block;
    width: min(100vw, 100%);
  }

  .program-mobile-track {
    grid-auto-columns: 84vw;
    margin-right: calc(50% - 50vw);
    padding-right: 1rem;
  }

  .program-mobile-card {
    border-radius: 24px;
  }

  .program-mobile-photo {
    min-height: 17.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.reveal-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .button,
  .hero-nav a {
    transition: none;
  }
}
