/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background: #F5F0E8;
  color: #2C2416;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --gold: #B8962E;
  --gold-light: #D4AF55;
  --gold-pale: rgba(184,150,46,0.10);
  --gold-border: rgba(184,150,46,0.25);
  --gold-border-strong: rgba(184,150,46,0.5);
  --cream: #F5F0E8;
  --cream-dark: #EDE6D6;
  --cream-darker: #E2D9C5;
  --ink: #2C2416;
  --ink-mid: #5A4F3C;
  --ink-muted: rgba(44,36,22,0.55);
  --ink-faint: rgba(44,36,22,0.28);
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

/* ─── Keyframes ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50%       { transform: translateY(-12px); opacity: 0.6; }
}
@keyframes scrollPulse {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(10px); opacity: 0; }
  100% { opacity: 0; }
}

/* ─── Navigation ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3.5rem;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 3.5rem;
  box-shadow: 0 1px 0 var(--gold-border);
}
.nav-logo { display: flex; align-items: center; gap: 16px; }
.logo-img {
  height: 52px; width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.7));
  transition: filter 0.4s;
}
.nav.scrolled .logo-img { filter: none; }
.nav-brand {
  font-family: var(--serif);
  font-size: 19px; font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.75), 0 2px 4px rgba(0,0,0,0.4);
  transition: color 0.4s, text-shadow 0.4s;
}
.nav-brand span { color: var(--gold); }
.nav.scrolled .nav-brand { color: var(--ink); text-shadow: none; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--ink-mid); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 0.5px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav.scrolled .nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-vip {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(28,20,10,0.96) 0%, rgba(16,10,4,0.94) 100%);
  padding: 12px 24px;
  border: 0.5px solid rgba(184,150,46,0.6);
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: inline-block;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 22px rgba(0,0,0,0.65), 0 1px 0 rgba(184,150,46,0.2) inset, 0 0 0 1px rgba(184,150,46,0.08);
}
.nav.scrolled .nav-vip {
  color: var(--gold); background: var(--ink);
  border-color: rgba(184,150,46,0.4);
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.nav-vip:hover {
  background: var(--gold); color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(184,150,46,0.35), 0 2px 8px rgba(0,0,0,0.3);
}

/* ─── Hero ─────────────────────────────────── */
.hero {
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-top {
  height: 46vh;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center 45%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.1) 50%, rgba(245,240,232,0.25) 100%);
}
.hero-bottom {
  background: var(--cream);
  border-top: 0.5px solid var(--gold-border);
  display: flex; flex-direction: column;
  animation: fadeUp 1.1s ease both;
  animation-delay: 0.3s;
}
.hero-content {
  display: flex; gap: 5rem; align-items: flex-start;
  padding: 2rem 5rem 1.5rem;
}
.hero-content-left { flex: 0 0 auto; }
.hero-content-right { flex: 1; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 0.5px; background: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 300; line-height: 1.08;
  color: var(--ink); letter-spacing: 0.01em;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 13px; line-height: 1.9; font-weight: 300;
  color: var(--ink-mid);
  margin-bottom: 1.75rem; letter-spacing: 0.04em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); background: var(--ink);
  padding: 15px 34px; border: none; border-radius: 1px;
  cursor: pointer; transition: background 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-outline {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; color: var(--ink);
  padding: 14px 32px;
  border: 0.5px solid rgba(44,36,22,0.4);
  border-radius: 1px; cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-pale); }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 1.75rem; right: 4rem;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
  animation: fadeIn 1.5s ease both; animation-delay: 1.4s;
}
.scroll-hint span {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 36px; background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute;
  inset: 0; background: rgba(255,255,255,0.7);
  animation: scrollPulse 1.8s ease infinite;
}

/* Hero stat strip */
.hero-stats {
  display: flex; border-top: 0.5px solid var(--gold-border);
}
.hero-stat {
  flex: 1; padding: 1rem 2rem;
  border-right: 0.5px solid var(--gold-border);
  display: flex; flex-direction: column; gap: 3px;
}
.hero-stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* ─── Section base ─────────────────────────────────── */
.section { padding: 4rem 5rem; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-label {
  display: flex; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 0.5px; background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 300; color: var(--ink);
  line-height: 1.15; margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 13px; line-height: 1.9; font-weight: 300;
  color: var(--ink-mid); max-width: 460px;
  letter-spacing: 0.04em;
}

/* ─── Brand logo (hero cream area) ─────────────────────────────────── */
.brand-logo-full {
  height: auto;
  max-height: 195px;
  width: auto;
  max-width: 280px;
}

/* ─── Services ─────────────────────────────────── */
.services { background: var(--white); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end; margin-bottom: 2.5rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid var(--gold-border);
  border-radius: 2px; overflow: hidden;
}
.service-card {
  border-right: 0.5px solid var(--gold-border);
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.service-img {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative; flex-shrink: 0;
}
.service-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(245,240,232,0.55) 100%);
}
.sc-yacht { background-image: url('https://images.unsplash.com/photo-1500514966906-fe245eea9344?auto=format&fit=crop&w=600&q=80'); }
.sc-dine  { background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=600&q=80'); }
.sc-exp   { background-image: url('https://images.unsplash.com/photo-1437622368342-7a3d73a34c8f?auto=format&fit=crop&w=600&q=80'); }
.sc-vip   { background-image: url('https://images.unsplash.com/photo-1559494007-9f5847c49d94?auto=format&fit=crop&w=600&q=80'); }
.service-body { padding: 2.5rem 2rem; flex: 1; display: flex; flex-direction: column; }
.service-card:last-child { border-right: none; }
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--gold-pale) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: rgba(184,150,46,0.04); }
.service-icon {
  width: 44px; height: 44px; margin-bottom: 1.5rem;
  color: var(--gold);
}
.service-num {
  font-family: var(--serif); font-size: 38px; font-weight: 300;
  color: var(--gold-border); line-height: 1;
  margin-bottom: 1.25rem; transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(184,150,46,0.3); }
.service-title {
  font-family: var(--serif); font-size: 19px; font-weight: 400;
  color: var(--ink); margin-bottom: 0.6rem; letter-spacing: 0.01em;
}
.service-desc {
  font-size: 12px; line-height: 1.85; color: var(--ink-muted);
  font-weight: 300; margin-bottom: 1.5rem; letter-spacing: 0.03em;
}
.service-link {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 8px;
  cursor: pointer; transition: gap 0.2s;
}
.service-link:hover { gap: 14px; }
.service-link::after { content: '→'; }

/* ─── Featured Experiences ─────────────────────────────────── */
.featured { background: var(--cream); }
.featured-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.featured-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5px; background: var(--gold-border);
  border: 0.5px solid var(--gold-border);
}
.exp-card {
  background: var(--white); overflow: hidden; cursor: pointer; position: relative;
}
.exp-card:hover .exp-img-overlay { opacity: 1; }
.exp-card:hover .exp-title { color: var(--gold); }
.exp-img {
  height: 240px; position: relative; overflow: hidden;
}
.exp-img-bg {
  position: absolute; inset: 0;
  transition: transform 0.5s ease;
}
.exp-card:hover .exp-img-bg { transform: scale(1.04); }
.exp-img-overlay {
  position: absolute; inset: 0;
  background: rgba(184,150,46,0.12);
  opacity: 0; transition: opacity 0.3s;
}
.exp-body { padding: 1.75rem 2rem; border-top: 0.5px solid var(--gold-border); }
.exp-tag {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.exp-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--ink); margin-bottom: 0.6rem;
  line-height: 1.25; letter-spacing: 0.01em;
  transition: color 0.3s;
}
.exp-desc {
  font-size: 12px; line-height: 1.85; color: var(--ink-muted);
  font-weight: 300; margin-bottom: 1.5rem; letter-spacing: 0.03em;
}
.exp-footer { display: flex; justify-content: space-between; align-items: center; }
.exp-from {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted);
}
.exp-price {
  font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--ink);
}
.exp-price sub { font-size: 11px; font-family: var(--sans); font-weight: 300; color: var(--ink-muted); }
.exp-btn {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); border: 0.5px solid rgba(44,36,22,0.3);
  padding: 9px 18px; border-radius: 1px; cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  background: transparent; font-family: var(--sans);
}
.exp-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Experience card visual styles */
.ev-yacht {
  background-image: url('https://images.unsplash.com/photo-1500514966906-fe245eea9344?auto=format&fit=crop&w=800&q=80');
  background-size: cover; background-position: center;
}
.ev-dine {
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=800&q=80');
  background-size: cover; background-position: center;
}
.ev-beach {
  background-image: url('https://images.unsplash.com/photo-1504019347908-b45f9b0b8dd5?auto=format&fit=crop&w=800&q=80');
  background-size: cover; background-position: center;
}
.ev-heli {
  background-image: url('https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=800&q=80');
  background-size: cover; background-position: center;
}

/* ─── Destinations ─────────────────────────────────── */
.destinations { background: var(--white); }
.dest-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5px; background: var(--gold-border);
  border: 0.5px solid var(--gold-border);
  margin-top: 3.5rem;
}
.dest-card {
  background: var(--white); padding: 1.75rem 1.5rem;
  cursor: pointer; transition: background 0.25s;
}
.dest-card:hover { background: var(--gold-pale); }
.dest-flag {
  width: 32px; height: 32px; margin-bottom: 0.9rem;
}
.dest-flag svg { width: 32px; height: 32px; display: block; }
.dest-name {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--ink); margin-bottom: 0.3rem;
}
.dest-tag {
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.65rem;
}
.dest-desc { font-size: 11px; line-height: 1.7; color: var(--ink-muted); font-weight: 300; }

/* ─── Enquiry / Booking ─────────────────────────────────── */
.enquiry {
  background: var(--cream-dark);
  border-top: 0.5px solid var(--gold-border);
  border-bottom: 0.5px solid var(--gold-border);
}
.enquiry-inner { max-width: 1000px; margin: 0 auto; }
.enquiry-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px; align-items: end; margin-top: 3rem; margin-bottom: 1rem;
}
.form-label {
  display: block; font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.form-input, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.7);
  border: 0.5px solid var(--gold-border);
  border-radius: 1px; padding: 12px 14px;
  font-size: 12px; font-weight: 300;
  color: var(--ink); font-family: var(--sans);
  outline: none; appearance: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: var(--ink-faint); }
.form-input:focus,
.form-select:focus { border-color: var(--gold); background: rgba(255,255,255,0.95); }
.form-select option { background: #fff; color: var(--ink); }
.form-submit {
  background: var(--ink); color: var(--cream);
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 12px 26px; border: none; border-radius: 1px;
  cursor: pointer; white-space: nowrap;
  transition: background 0.25s;
}
.form-submit:hover { background: var(--gold); }
.enquiry-note {
  font-size: 11px; color: var(--ink-faint); letter-spacing: 0.06em;
}

/* ─── Why ClubBVI ─────────────────────────────────── */
.why { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--gold-border);
  border: 0.5px solid var(--gold-border);
  margin-top: 3.5rem;
}
.why-card {
  background: var(--white); padding: 2.25rem;
}
.why-icon {
  width: 36px; height: 36px; margin-bottom: 1.25rem;
  color: var(--gold);
}
.why-title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--ink); margin-bottom: 0.6rem;
}
.why-desc {
  font-size: 12px; line-height: 1.85; color: var(--ink-muted); font-weight: 300;
}

/* ─── Testimonials ─────────────────────────────────── */
.testimonials { background: var(--cream); }
.t-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--gold-border);
  border: 0.5px solid var(--gold-border);
  margin-top: 3.5rem;
}
.t-card {
  background: var(--white); padding: 2.25rem;
  position: relative;
}
.t-card::before {
  content: '\201C';
  font-family: var(--serif); font-size: 80px;
  color: var(--gold-border); line-height: 1; position: absolute;
  top: 1rem; left: 1.75rem;
}
.t-stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.star {
  width: 10px; height: 10px; background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.t-quote {
  font-family: var(--serif); font-size: 16px; font-weight: 300;
  font-style: italic; color: var(--ink); line-height: 1.75;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; flex-shrink: 0;
  border: 0.5px solid var(--gold-border-strong);
  background: var(--cream-dark); color: var(--gold);
}
.t-name { font-size: 12px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.t-role { font-size: 11px; color: var(--ink-muted); font-weight: 300; }

/* ─── VIP CTA Banner ─────────────────────────────────── */
.vip-cta {
  background: var(--ink);
  padding: 3.5rem 5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.vip-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(184,150,46,0.12) 0%, transparent 70%);
}
.vip-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.vip-eyebrow {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.vip-eyebrow::before, .vip-eyebrow::after {
  content: ''; display: block;
  width: 28px; height: 0.5px; background: var(--gold);
}
.vip-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 300; line-height: 1.1;
  color: #F5F0E8; margin-bottom: 1.25rem;
}
.vip-title em { font-style: italic; color: var(--gold-light); }
.vip-sub {
  font-size: 13px; line-height: 1.9; font-weight: 300;
  color: rgba(245,240,232,0.6); margin-bottom: 2.5rem; letter-spacing: 0.04em;
}
.btn-vip {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 16px 40px; border: none; border-radius: 1px;
  cursor: pointer; transition: background 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-vip:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─── Footer ─────────────────────────────────── */
.footer {
  background: var(--cream-darker);
  border-top: 0.5px solid var(--gold-border);
  padding: 3rem 5rem 2rem;
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2rem;
  border-bottom: 0.5px solid var(--gold-border);
}
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-logo-img { height: 40px; width: auto; }
.footer-brand {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--ink); letter-spacing: 0.1em;
}
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 12px; line-height: 1.9; color: var(--ink-muted); font-weight: 300; margin-bottom: 1.5rem; }
.footer-contact { font-size: 12px; color: var(--ink-muted); line-height: 2; font-weight: 300; }
.footer-contact strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 0.25rem; }
.footer-col h4 {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-col a {
  display: block; font-size: 12px; color: var(--ink-muted);
  font-weight: 300; margin-bottom: 0.6rem; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 11px; color: var(--ink-faint); font-weight: 300; }
.footer-tagline-sm {
  font-family: var(--serif); font-size: 13px; font-style: italic;
  color: var(--ink-muted);
}

/* ─── Reveal ─────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav { padding: 1.25rem 2rem; }
  .nav.scrolled { padding: 0.9rem 2rem; }
  .hero-content { padding: 1.5rem 2.5rem 1rem; gap: 2.5rem; }
  .hero-title { font-size: clamp(26px, 4vw, 40px); }
  .section { padding: 3rem 2.5rem; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card:nth-child(2) { border-right: none; }
  .services-grid .service-card:nth-child(3) { border-top: 0.5px solid var(--gold-border); }
  .featured-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .enquiry-grid { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .vip-cta { padding: 4rem 2.5rem; }
  .hero-stat { padding: 0.75rem 1.25rem; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card { border-right: none; border-bottom: 0.5px solid var(--gold-border); }
  .enquiry-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-content { flex-direction: column; gap: 1rem; }
  .hero-top { flex: 0 0 45%; }
}
