/* ===========================================================
   THE DAWN MELODY — Design tokens & shared styles
   Private charters, Mekong River, Phnom Penh
=========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Water at night, near-black rather than pure black */
  --void:        #0A1014;
  --deep:        #0F1B22;
  --panel:       #14252E;
  --water:       #17313C;

  /* Antique bronze-gold, primary accent */
  --gold:        #B8923F;
  --gold-light:  #E3C476;
  --gold-dim:    #5C4A22;
  --gold-wash:   rgba(184, 146, 63, 0.08);

  /* Dusty lotus rose — secondary signature accent, used sparingly */
  --lotus:       #9C5468;
  --lotus-light: #C98BA0;
  --lotus-wash:  rgba(156, 84, 104, 0.1);

  /* The real golden hour off the Mekong — warmer and more saturated
     than the antique gold above. Used sparingly, on interaction. */
  --sunset-1:    #C1552F;
  --sunset-2:    #D9863C;
  --sunset-3:    #E8C876;
  --sunset-gradient: linear-gradient(135deg, var(--sunset-1) 0%, var(--sunset-2) 50%, var(--sunset-3) 100%);

  --mist:        #F4EFE4;
  --stone:       #E6D7AE;
  --text:        #BDAF8C;
  --text-dim:    #766F5B;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--void);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* A whisper of film grain over the whole site — the difference
   between a flat dark background and one that feels lit. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

::selection { background: var(--gold-dim); color: var(--mist); }

:focus-visible {
  outline: 1.5px solid var(--gold-light);
  outline-offset: 3px;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10, 16, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(184, 146, 63, 0.14);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo em { color: var(--stone); font-style: italic; font-weight: 300; }

.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--gold); }

/* ── NAV DROPDOWN — "The Vessel" ▸ Refurbishment ── */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a { display: inline-block; padding: 1.6rem 0; }
.nav-caret {
  display: inline-block;
  font-size: 0.85em;
  margin-left: 0.35em;
  opacity: 0.55;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-item-dropdown:hover .nav-caret,
.nav-item-dropdown:focus-within .nav-caret { transform: translateY(1px) rotate(-180deg); opacity: 0.9; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 190px;
  background: rgba(10, 16, 20, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(184, 146, 63, 0.18);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 4px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  padding: 0.65rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: color 0.25s, background 0.25s;
}
.nav-dropdown a:hover, .nav-dropdown a:focus-visible { color: var(--gold-light); background: rgba(184, 146, 63, 0.08); }

.nav-reserve {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-reserve:hover { background: var(--sunset-gradient); border-color: var(--sunset-2); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--gold); }

@media (max-width: 800px) {
  .nav-links, .nav-reserve-desktop { display: none; }
  .nav-hamburger { display: flex; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 16, 20, 0.98);
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.06em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-group { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.mobile-menu a.mobile-submenu {
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}
.mobile-menu a.mobile-submenu:hover { color: var(--gold); opacity: 1; }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ─────────────────────────────────────────
   SECTIONS — shared scaffolding
───────────────────────────────────────── */
section { padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem); position: relative; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--stone);
  margin-bottom: 1.5rem;
}
.title em { font-style: italic; color: var(--gold-light); }
.title .lotus-em { font-style: italic; color: var(--lotus-light); }

.body-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text);
  max-width: 60ch;
}

.inline-link {
  color: var(--gold-light);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: rgba(227, 196, 118, 0.4);
  text-underline-offset: 3px;
  transition: color 0.3s, text-decoration-color 0.3s;
}
.inline-link:hover, .inline-link:focus-visible {
  color: var(--sunset-3);
  text-decoration-color: var(--sunset-2);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem 0;
  margin: 1.5rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,63,0.4));
}
.divider::after { background: linear-gradient(270deg, transparent, rgba(184,146,63,0.4)); }
.divider.left { justify-content: flex-start; }
.divider.left::after { display: none; }

/* A quiet flourish between sections of differing background —
   a lotus in miniature, so the seam feels intentional. */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 6vw, 4rem);
  padding: 2.25rem clamp(1.5rem, 5vw, 4rem);
  background: var(--void);
  color: var(--gold);
  opacity: 0.55;
}
.section-ornament svg { width: 26px; height: auto; flex-shrink: 0; }
.section-ornament::before, .section-ornament::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,63,0.4));
}
.section-ornament::after { background: linear-gradient(270deg, transparent, rgba(184,146,63,0.4)); }

/* Buttons */
.btn-primary {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  padding: 1rem 2.4rem;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--gold);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--sunset-gradient);
  border-color: var(--sunset-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(217, 134, 60, 0.35);
}
.btn-secondary {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 1rem 2.4rem;
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(184, 146, 63, 0.4);
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Closing CTA — shared across subpages (refurbishment, river life, ...) */
.closing-cta {
  background: var(--deep);
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}
.closing-cta-inner { max-width: 560px; margin: 0 auto; }
.closing-cta-inner .body-text { margin: 0 auto 2rem; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }

/* Placeholder photo block */
.placeholder {
  position: relative;
  background: linear-gradient(135deg, var(--water) 0%, var(--void) 100%);
  overflow: hidden;
}
.placeholder-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  color: rgba(184, 146, 63, 0.28);
}
.placeholder-mark svg { width: 40px; opacity: 0.6; }
.placeholder-mark span {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: clamp(150px, 18vh, 190px);
  padding-bottom: clamp(190px, 22vh, 250px);
  overflow: hidden;
}
#mekong-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-skyline { position: absolute; bottom: 0; left: 0; right: 0; height: 180px; pointer-events: none; }

.hero-photo { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--void); }
.hero-photo-main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10, 16, 20, 0.5) 0%, rgba(10, 16, 20, 0.2) 38%, rgba(10, 16, 20, 0.3) 65%, rgba(10, 16, 20, 0.8) 100%),
    radial-gradient(ellipse at center, transparent 35%, rgba(10, 16, 20, 0.4) 100%);
}

.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 clamp(1.5rem, 5vw, 4rem); }

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 9.5vw, 8.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.25em;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 300; }

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  opacity: 0;
  animation: fadeUp 1.2s ease 0.8s forwards;
  margin-bottom: 3rem;
}

.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sunset-2), transparent);
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.1s forwards;
}

.hero-ctas { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s ease 1.2s forwards; }

/* Short viewports (common on wide laptop windows) can't fit the full-size
   hero text between the nav and the scroll indicator — shrink it rather
   than let it collide with either. */
@media (max-height: 750px) {
  .hero-eyebrow { margin-bottom: 1rem; }
  .hero-title { font-size: clamp(2.4rem, 7vw, 5rem); margin-bottom: 0.2em; }
  .hero-subtitle { margin-bottom: 1.5rem; }
  .hero-divider { margin: 0 auto 1.25rem; }
}

.hero-scroll {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}
.hero-scroll span { font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-dim); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease infinite; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ─────────────────────────────────────────
   INTRO BAND
───────────────────────────────────────── */
.band {
  padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(184, 146, 63, 0.14);
  border-bottom: 1px solid rgba(184, 146, 63, 0.14);
  background: var(--deep);
}
.band-dot { width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.band-text { font-family: var(--mono); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-dim); }

/* ─────────────────────────────────────────
   VIDEO
───────────────────────────────────────── */
.video-section { position: relative; height: 72vh; min-height: 420px; overflow: hidden; background: var(--void); }
.video-section video { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.video-fade { position: absolute; left: 0; right: 0; height: 140px; pointer-events: none; z-index: 1; }
.video-fade-top { top: 0; background: linear-gradient(to bottom, var(--void), transparent); }
.video-fade-bottom { bottom: 0; background: linear-gradient(to top, var(--void), transparent); }
.video-caption {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.video-caption-line { width: 1px; height: 30px; background: linear-gradient(to bottom, transparent, var(--gold)); }
.video-caption-text { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about {
  background: var(--deep);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 800px) { .about { grid-template-columns: 1fr; } }

.about-image { aspect-ratio: 4 / 5; }
.about-frame { position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 1px solid rgba(184, 146, 63, 0.22); pointer-events: none; }
.about-image-label {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  font-family: var(--serif); font-size: 0.85rem; font-style: italic;
  color: rgba(230, 215, 174, 0.55);
  border-top: 1px solid rgba(184, 146, 63, 0.2);
  padding-top: 1rem;
  z-index: 1;
}

.about-stat { display: flex; gap: 1.5rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(184, 146, 63, 0.14); }
.stat-item { flex: 1; }
.stat-number { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-top: 0.4rem; }

/* ─────────────────────────────────────────
   EXPERIENCES
───────────────────────────────────────── */
.experiences { background: var(--void); }
.experiences-header {
  max-width: 1200px; margin: 0 auto 4rem;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap;
}
.exp-cards { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; }
@media (max-width: 1180px) { .exp-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .exp-cards { grid-template-columns: 1fr; } }

.exp-card { position: relative; padding: 3rem 1.85rem; background: var(--panel); overflow: hidden; transition: background 0.4s; }
.exp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.exp-card:hover { background: #182b35; }
.exp-card:hover::before { opacity: 1; }
.exp-card.lotus-accent::before { background: linear-gradient(90deg, transparent, var(--lotus-light), transparent); }
.exp-card.sunset-accent::before { background: linear-gradient(90deg, transparent, var(--sunset-2), transparent); }

.exp-icon { width: 38px; height: 38px; margin-bottom: 1.5rem; color: var(--gold); }
.exp-card.lotus-accent .exp-icon { color: var(--lotus-light); }
.exp-card.sunset-accent .exp-icon { color: var(--sunset-3); }

/* Icon micro-interactions on card hover */
.exp-icon .ico-glass-left, .exp-icon .ico-glass-right {
  transform-box: fill-box; transform-origin: bottom center;
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.44, 1);
}
.exp-card:hover .ico-glass-left { transform: rotate(9deg); }
.exp-card:hover .ico-glass-right { transform: rotate(-9deg); }
.exp-icon .ico-sparkle {
  transform-box: fill-box; transform-origin: center;
  transition: transform 0.35s ease 0.18s, opacity 0.35s ease 0.18s;
  opacity: 0.55;
}
.exp-card:hover .ico-sparkle { transform: scale(2.1); opacity: 1; }

.exp-icon .ico-star { transform-box: fill-box; transform-origin: center; }
.exp-card:hover .ico-star-1 { animation: icoTwinkle 0.9s ease-in-out; }
.exp-card:hover .ico-star-2 { animation: icoTwinkle 0.9s ease-in-out 0.12s; }
.exp-card:hover .ico-star-3 { animation: icoTwinkle 0.9s ease-in-out 0.24s; }
@keyframes icoTwinkle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.8); opacity: 0.4; }
}

.exp-icon use { transform-box: fill-box; transform-origin: center; }
.exp-card:hover .exp-icon use {
  animation: icoDolphinLeap 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes icoDolphinLeap {
  0% { transform: translateY(0) rotate(0deg); }
  45% { transform: translateY(-6px) rotate(-10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.exp-icon .ico-needle {
  transform-box: fill-box; transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.34, 1.2, 0.4, 1);
}
.exp-card:hover .ico-needle { transform: rotate(35deg); }
.exp-tag {
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); display: block; margin-bottom: 1.1rem;
}
.exp-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--stone); margin-bottom: 0.75rem; line-height: 1.2; }
.exp-body { font-size: 0.85rem; line-height: 1.8; color: var(--text-dim); margin-bottom: 2rem; }
.exp-price { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-light); margin-bottom: 1.25rem; }
.exp-price span { font-family: var(--mono); font-size: 0.58rem; color: var(--text-dim); letter-spacing: 0.1em; margin-left: 0.4rem; }

.exp-link {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s;
}
.exp-link:hover { gap: 0.85rem; }
.exp-link::after { content: '→'; }

/* ─────────────────────────────────────────
   INCLUSIONS
───────────────────────────────────────── */
.inclusions { background: var(--water); position: relative; overflow: hidden; }
.inclusions::before {
  content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,146,63,0.05) 0%, transparent 70%); pointer-events: none;
}
.inclusions-inner { max-width: 1200px; margin: 0 auto; }
.inc-header { text-align: center; margin-bottom: 4rem; }
.inc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2.5rem; }
.inc-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.inc-icon { width: 34px; height: 34px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.inc-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--stone); margin-bottom: 0.35rem; }
.inc-desc { font-size: 0.8rem; line-height: 1.7; color: var(--text-dim); }

/* ─────────────────────────────────────────
   RIVER & CULTURE
───────────────────────────────────────── */
.river { background: var(--void); position: relative; overflow: hidden; }
.river-angkor { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; opacity: 0.045; pointer-events: none; }
.river-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
@media (max-width: 800px) { .river-inner { grid-template-columns: 1fr; } }

.river-quote {
  font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 300; font-style: italic; line-height: 1.5;
  color: var(--stone); padding-left: 2rem; border-left: 2px solid var(--lotus); margin-bottom: 2.5rem;
}

.culture-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.culture-tag {
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim); border: 1px solid rgba(184, 146, 63, 0.22); padding: 0.4rem 0.85rem;
}

.river-visual { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.river-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(184, 146, 63, 0.08); animation: pulse 6s ease infinite; }
.river-circle:nth-child(1) { width: 80%; height: 80%; }
.river-circle:nth-child(2) { width: 90%; height: 90%; animation-delay: 1s; border-color: rgba(184,146,63,0.05); }
.river-circle:nth-child(3) { width: 100%; height: 100%; animation-delay: 2s; border-color: rgba(184,146,63,0.03); }
.river-lotus-svg { position: relative; z-index: 1; width: 50%; max-width: 200px; color: var(--lotus-light); opacity: 0.4; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.03); opacity: 0.6; } }

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery { background: var(--deep); }
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 3rem; }

/* ── RIVER LIFE SLIDESHOW ── */
.river-slideshow {
  position: relative;
  aspect-ratio: 16 / 8;
  max-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 63, 0.18);
  background: var(--void);
}
.river-slideshow-track { position: relative; width: 100%; height: 100%; }
.river-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.river-slide.active { opacity: 1; pointer-events: auto; }
.river-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.river-slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 20, 0.55), transparent 35%);
  pointer-events: none;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 16, 20, 0.5);
  border: 1px solid rgba(184, 146, 63, 0.3);
  color: var(--stone);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.slideshow-arrow:hover { background: rgba(10, 16, 20, 0.8); color: var(--gold-light); border-color: var(--gold); }
.slideshow-arrow.prev { left: 1rem; }
.slideshow-arrow.next { right: 1rem; }

.slideshow-dots {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.slideshow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(230, 215, 174, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slideshow-dot:hover { background: rgba(230, 215, 174, 0.6); }
.slideshow-dot.active { background: var(--gold); transform: scale(1.3); }

@media (max-width: 640px) {
  .river-slideshow { aspect-ratio: 4 / 5; max-height: none; }
  .slideshow-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
}

/* ─────────────────────────────────────────
   BOOKING CTA (index page)
───────────────────────────────────────── */
.booking-cta { background: var(--void); border-top: 1px solid rgba(184, 146, 63, 0.12); text-align: center; }
.booking-cta-inner { max-width: 640px; margin: 0 auto; }
.booking-cta .body-text { margin: 0 auto 2.5rem; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer.site-footer { background: var(--deep); border-top: 1px solid rgba(184, 146, 63, 0.14); padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; gap: 2.5rem; } }
.footer-brand-name { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-light); margin-bottom: 0.5rem; font-style: italic; }
.footer-tagline { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 1.5rem; }
.footer-contact p { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 0.4rem; }
.footer-contact a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-col-title { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); margin-bottom: 1.1rem; }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--stone); }
.footer-bottom { border-top: 1px solid rgba(184, 146, 63, 0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-copy { font-size: 0.7rem; color: var(--text-dim); }
.footer-khmer { font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: var(--text-dim); }
