/* ═══════════════════════════════════════════════════════════
   VOLA MALDIVES — Luxury Homepage
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --ink:        #0a0a0a;
  --ink-mid:    #1c1c1c;
  --mid:        #5a5a5a;
  --muted:      #8a8a8a;
  --ivory:      #f7f3ed;
  --cream:      #f0ebe1;
  --white:      #ffffff;
  --gold:       #c9a96e;
  --gold-lt:    #dfc08a;
  --ocean:      #1a6b6b;
  --ocean-dk:   #104848;
  --ocean-deep: #062828;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Jost', system-ui, sans-serif;

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

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

/* ── Custom Cursor ───────────────────────────────────────── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.is-hovering { transform: translate(-50%,-50%) scale(2.5); background: var(--gold-lt); }
.cursor-follower.is-hovering { width: 60px; height: 60px; border-color: var(--gold); }

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ── Shared typography helpers ───────────────────────────── */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.eyebrow--light { color: rgba(201,169,110,0.9); }
.eyebrow--centered { text-align: center; }
.eyebrow--gold { color: var(--gold); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-solid {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1.5px solid var(--gold);
  transition: background var(--t) var(--ease-out), color var(--t) var(--ease-out);
}
.btn-solid:hover { background: transparent; color: var(--gold); }
.btn-solid--full { width: 100%; text-align: center; cursor: pointer; }

.btn-ghost {
  display: inline-block;
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.55);
  transition: background var(--t) var(--ease-out), border-color var(--t);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }

.btn-outline {
  display: inline-block;
  color: var(--ocean);
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1.5px solid var(--ocean);
  transition: background var(--t) var(--ease-out), color var(--t);
}
.btn-outline:hover { background: var(--ocean); color: var(--white); }

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  height: 90px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  transition: box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
}

/* ── Logo ─────────────────────────────────────────────────── */
.nav__logo a {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.nav__logo a:hover { opacity: 0.75; }

.nav__logo img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  display: block;
}

@media (max-width: 860px) {
  .nav__logo img { height: 64px; width: 64px; }
}

/* ── Nav links ────────────────────────────────────────────── */
.nav__center {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav__center a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.58);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.nav__center a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav__center a:hover { color: var(--ink); }
.nav__center a:hover::after { width: 100%; }

/* ── Right side ───────────────────────────────────────────── */
.nav__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.nav__enquire {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 9px 22px;
  border: 1px solid rgba(201,169,110,0.5);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav__enquire:hover {
  background: rgba(201,169,110,0.08);
  border-color: var(--gold);
}

/* ── Burger ───────────────────────────────────────────────── */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.nav__burger span {
  display: block; width: 22px; height: 1px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  padding: 32px 48px 40px;
  gap: 0;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.nav__drawer a {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s, padding-left 0.3s;
}
.nav__drawer a:hover { color: var(--gold); padding-left: 8px; }
.nav__drawer.open { display: flex; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

.hero__media { position: absolute; inset: 0; }

.hero__bg {
  position: absolute; inset: 0;
  background:
    url('images/hero.jpg') center center / cover no-repeat,
    linear-gradient(160deg,
      #062828 0%,
      #0e5050 35%,
      #1a7878 65%,
      #0d4040 100%);
  /* swap for a real image: url('images/hero.jpg') center/cover */
  transform: scale(1.06);
  transition: transform 8s var(--ease-out);
}
.hero.loaded .hero__bg { transform: scale(1); }

.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.65) 100%);
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 0 32px;
  margin-top: -120px;
}


.hero__pre {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__line { display: block; }
.hero__line--italic { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.88); }

.hero__desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 140px;
  left: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 64px;
  background: linear-gradient('images/filename.jpg');
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(20px); opacity: 0; }
}

.hero__stats {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 18px 0;
}
.hero__stat {
  text-align: center;
  padding: 0 40px;
}
.hero__stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-num sup { font-size: 0.6em; }
.hero__stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__stat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════ */
.ticker {
  background: var(--ocean-deep);
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  overflow: hidden;
  padding: 16px 0;
}
.ticker__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker__track span {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  padding: 0 32px;
}
.ticker__dot {
  color: var(--gold) !important;
  padding: 0 !important;
  letter-spacing: 0 !important;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker:hover .ticker__track { animation-play-state: paused; }

/* ══════════════════════════════════════════════════════════
   STATEMENT
══════════════════════════════════════════════════════════ */
.statement {
  padding: 120px 32px;
  background: var(--white);
}
.statement__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.statement__headline {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 28px;
}
.statement__headline em { font-style: italic; color: var(--ocean); }
.statement__body {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   COLLECTION — horizontal scroll
══════════════════════════════════════════════════════════ */
.collection { padding: 0 0 100px; }

.collection__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 64px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.collection__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}
.collection__all {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.3s;
  white-space: nowrap;
  margin-bottom: 6px;
}
.collection__all:hover { color: var(--gold); }

.collection__track-wrap {
  overflow-x: auto;
  overflow-y: visible;
  padding: 0 64px 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.collection__track-wrap::-webkit-scrollbar { display: none; }
.collection__track-wrap.grabbing { cursor: grabbing; }

.collection__track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.resort-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid #ece8e0;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.resort-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.resort-card__img {
  height: 260px;
  position: relative;
  overflow: hidden;
  transition: transform 0.7s var(--ease-out);
}
.resort-card:hover .resort-card__img { transform: scale(1.04); }
.resort-card__tag {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.15);
}
.resort-card__body { padding: 24px 24px 28px; }
.resort-card__body h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.resort-card__body p {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.resort-card__link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  border-bottom: 1px solid var(--ocean);
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}
.resort-card:hover .resort-card__link { color: var(--gold); border-color: var(--gold); }

.collection__drag-hint {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  opacity: 0.6;
}

/* ══════════════════════════════════════════════════════════
   WHY VOLA
══════════════════════════════════════════════════════════ */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  background: var(--ivory);
}

.why__img-side { position: relative; overflow: hidden; }
.why__img-stack {
  position: absolute; inset: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.why__img { width: 100%; height: 100%; }

.why__badge {
  position: absolute;
  bottom: 40px; right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.why__badge-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}
.why__badge-num sup { font-size: 0.55em; }
.why__badge span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.why__text-side {
  padding: 80px 72px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 24px;
}
.why__title em { font-style: italic; color: var(--ocean); }
.why__body {
  font-size: 0.94rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 44px;
  max-width: 440px;
}
.why__pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}
.why__pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why__pillar-line {
  width: 2px;
  height: 48px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.why__pillar strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 4px;
}
.why__pillar p {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   EXPERIENCES
══════════════════════════════════════════════════════════ */
.experiences {
  background: var(--ocean-deep);
  padding: 100px 64px;
}
.experiences__header {
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}
.experiences__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}
.experiences__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
}
.exp-item {
  position: relative;
  overflow: hidden;
}
.exp-item--tall { grid-row: 1 / 3; }

.exp-item__bg {
  position: absolute; inset: 0;
  transition: transform 0.7s var(--ease-out);
}
.exp-item:hover .exp-item__bg { transform: scale(1.06); }

.exp-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  transition: opacity 0.4s;
}
.exp-item:hover .exp-item__overlay { opacity: 0.9; }

.exp-item__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  color: var(--white);
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}
.exp-item__icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 10px;
  opacity: 0.9;
}
.exp-item__content h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.2;
}
.exp-item--tall .exp-item__content h3 { font-size: 1.6rem; }
.exp-item__content p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), opacity 0.4s;
  opacity: 0;
}
.exp-item:hover .exp-item__content p { max-height: 100px; opacity: 1; }

/* ══════════════════════════════════════════════════════════
   LIVEABOARDS
══════════════════════════════════════════════════════════ */
.liveaboards { background: var(--cream); padding: 100px 64px; }
.liveaboards__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.liveaboards__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
}
.liveaboards__title em { font-style: italic; color: var(--ocean); }
.liveaboards__body {
  font-size: 0.94rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 36px;
}
.liveaboards__vessels {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  border-top: 1px solid #ddd;
}
.liveaboards__vessels li {
  font-size: 0.84rem;
  color: var(--mid);
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
  line-height: 1.5;
}
.liveaboards__vessels span {
  font-weight: 500;
  color: var(--ink);
  margin-right: 4px;
}
.liveaboards__img-col { position: relative; }
.liveaboards__img {
  height: 520px;
  width: 100%;
  overflow: hidden;
}
.liveaboards__img-caption {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials { padding: 100px 64px; background: var(--white); }
.testimonials__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  text-align: center;
  color: var(--ink);
  margin-bottom: 60px;
}
.testimonials__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testi {
  background: var(--ivory);
  padding: 44px 36px;
  border-top: 2px solid var(--gold);
  transition: background 0.4s;
}
.testi:hover { background: var(--cream); }
.testi__stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.testi p {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 24px;
}
.testi footer {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.testi footer strong { color: var(--ink); }

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about { padding: 100px 64px; background: var(--ink); color: var(--white); }
.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about .eyebrow { color: var(--gold); }
.about__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 24px;
}
.about__text p {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 36px;
}
.about .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.about .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.about__img-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  height: 560px;
}
.about__img-main { grid-column: 1; }
.about__img {
  width: 100%; height: 100%;
  overflow: hidden;
}
.about__img img,
.about__img > div {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════════
   ENQUIRE
══════════════════════════════════════════════════════════ */
.enquire { background: var(--ivory); padding: 100px 64px; }
.enquire__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.enquire__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}
.enquire__title em { font-style: italic; color: var(--ocean); }
.enquire__sub {
  font-size: 0.94rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 36px;
}
.enquire__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.enquire__contact li {
  font-size: 0.88rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.enquire__contact a:hover { color: var(--ocean); }

.enquire__form {
  background: var(--white);
  padding: 48px;
  box-shadow: 0 4px 48px rgba(0,0,0,0.07);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid #e0dbd2;
  border-bottom: 2px solid #e0dbd2;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--ocean);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form__note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer { background: #060e0e; color: rgba(255,255,255,0.55); }
.footer__top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 64px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__logo {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
  opacity: 0.95;
}
.footer__brand p {
  font-size: 0.84rem;
  line-height: 1.8;
  max-width: 260px;
}
.footer__nav-group { display: flex; flex-direction: column; }
.footer__nav-group h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__nav-group a {
  font-size: 0.84rem;
  padding: 5px 0;
  transition: color 0.3s, padding-left 0.3s;
}
.footer__nav-group a:hover { color: var(--white); padding-left: 4px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 64px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════════ */
.whatsapp-btn,
.whatsapp-float {
  position: fixed;
  bottom: 36px; right: 36px;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.whatsapp-btn:hover,
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.whatsapp-btn svg,
.whatsapp-float svg { width: 26px; height: 26px; color: var(--white); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .why { grid-template-columns: 1fr; }
  .why__img-side { height: 360px; position: relative; }
  .why__img-stack { position: relative; }
  .why__badge { bottom: 20px; right: 20px; }
  .why__text-side { padding: 60px 48px; }

  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__img-side { height: 300px; }

  .enquire__inner { grid-template-columns: 1fr; gap: 48px; }

  .experiences__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px 240px;
  }
  .exp-item--tall { grid-row: auto; }

  .liveaboards__inner { grid-template-columns: 1fr; gap: 48px; }
  .liveaboards__img { height: 320px; }
}

@media (max-width: 860px) {
  .nav { padding: 0 24px; grid-template-columns: 1fr auto; }
  .nav__center { display: none; }
  .nav__enquire { display: none; }
  .nav__burger { display: flex; }

  .hero__scroll-hint { display: none; }
  .hero__stats { display: none; }

  .collection__header { padding: 0 24px 40px; }
  .collection__track-wrap { padding: 0 24px 24px; }

  .experiences { padding: 72px 24px; }
  .experiences__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .liveaboards { padding: 72px 24px; }
  .testimonials { padding: 72px 24px; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }

  .about { padding: 72px 24px; }
  .enquire { padding: 72px 24px; }
  .enquire__form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr 1fr; padding: 48px 24px 36px; }
  .footer__bottom { padding: 16px 24px; flex-direction: column; gap: 8px; }

  .statement { padding: 80px 24px; }
  .why__text-side { padding: 48px 24px; }
  .collection__header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 560px) {
  .experiences__grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .footer__top { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
}

/* hide cursor on touch devices */
@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}
