/* ============================================
   PARADISE PLANNERS — GLOBAL DESIGN SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ───────────────────────── */
:root {
  --black:      #000000;
  --deep:       #0a0a0a;
  --charcoal:   #1E1E1E;
  --red:        #B71C1C;
  --red-dark:   #8B0000;
  --red-light:  #D32F2F;
  --gold:       #C62828;
  --gold-light: #E53935;
  --gold-dark:  #8B0000;
  --white:      #FFFFFF;
  --cream:      #F8F6F2;
  --cream-dark: #EDE9E1;
  --grey:       #9E9E9E;
  --grey-dark:  #616161;

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Montserrat', Arial, sans-serif;

  --nav-h:      72px;
  --section-pad: 100px;
  --max-w:      1440px;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo:   cubic-bezier(0.19, 1, 0.22, 1);
  --transition:  0.4s var(--ease-smooth);
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
a, button, [role="button"] { touch-action: manipulation; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ──────────────────────────── */
.display-xl {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
}
.display-sm {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: 1.125rem; line-height: 1.75; font-weight: 300; }
.body-md { font-size: 1rem;     line-height: 1.7;  font-weight: 300; }
.body-sm { font-size: 0.875rem; line-height: 1.6;  font-weight: 400; }

/* ── Layout Utilities ────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.section-pad { padding: var(--section-pad) 0; }
.text-center { text-align: center; }
.text-gold  { color: var(--gold); }
.text-red   { color: var(--red); }
.text-grey  { color: var(--grey); }
.text-cream { color: var(--cream); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-48 { gap: 48px; }

/* ── Dividers & Accents ──────────────────── */
.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.gold-line.center { margin: 24px auto; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary::after { background: var(--gold-light); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 60px rgba(198,40,40,0.35); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
}
.btn-outline::after { background: rgba(255,255,255,0.06); }
.btn-outline:hover  { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 20px 60px rgba(183,28,28,0.4); }

.btn-group { display: flex; flex-wrap: wrap; gap: 16px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Navigation ──────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s, box-shadow 0.5s;
}
#navbar.scrolled {
  background: rgba(0,0,0,0.97);
  box-shadow: 0 1px 0 rgba(198,40,40,0.2);
  backdrop-filter: blur(20px);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--white);
}
.nav-logo-text span { display: block; font-size: 0.65rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease-smooth);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { right: 0; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { right: 0; }

/* Nav phone link */
@media (min-width: 1024px) {
  .nav-phone { display: inline !important; }
  .nav-phone:hover { color: var(--gold) !important; }
}

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  padding-top: 20px;
  min-width: 220px;
  background: var(--charcoal);
  border: 1px solid rgba(198,40,40,0.15);
  border-top: 2px solid var(--gold);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-smooth);
  z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block;
  padding: 12px 24px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.nav-dropdown a:hover { color: var(--gold); padding-left: 32px; }

.nav-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── Mobile Nav ──────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s;
}
.mobile-nav.open { opacity: 1; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
  text-align: center;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-footer {
  position: absolute;
  bottom: 40px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero video — all devices */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-static-img { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.4) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  padding-top: calc(var(--nav-h) + 32px);
  width: 100%;
}
.hero-content .eyebrow {
  margin-bottom: 14px;
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-content .eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-content p {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(198,40,40,0.8), transparent);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.4; }
}

/* ── Page Hero (Interior) ────────────────── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 70%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px 80px;
  width: 100%;
}

/* ── Section Headers ─────────────────────── */
.section-header { margin-bottom: 72px; }
.section-header.center { text-align: center; }
.section-header .eyebrow { margin-bottom: 20px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
}
.section-header.center p { margin: 0 auto; }

/* ── Cards ───────────────────────────────── */
.card {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-expo);
}
.card:hover { transform: translateY(-6px); }

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-expo);
}
.card:hover .card-image img { transform: scale(1.06); }

.card-body { padding: 36px; }
.card-body .eyebrow { margin-bottom: 14px; }
.card-body h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.2;
}
.card-body p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}
.card-link:hover { gap: 14px; }
.card-link svg { width: 14px; height: 14px; }

/* Destination Cards */
.dest-card {
  position: relative;
  overflow: hidden;
  height: 560px;
  cursor: pointer;
}
.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-expo);
}
.dest-card:hover img { transform: scale(1.05); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: background 0.5s;
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.1) 100%);
}
.dest-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 40px;
  z-index: 2;
}
.dest-card-content .eyebrow { margin-bottom: 10px; }
.dest-card-content h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.dest-card-content h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}
.dest-card-content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 320px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s var(--ease-smooth) 0.05s;
}
.dest-card:hover .dest-card-content p { opacity: 1; transform: translateY(0); }
.dest-card-arrow {
  position: absolute;
  top: 40px; right: 40px;
  width: 48px; height: 48px;
  border: 1px solid rgba(198,40,40,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s var(--ease-smooth);
}
.dest-card:hover .dest-card-arrow { opacity: 1; transform: translateY(0); }

/* ── Service Grid Cards ───────────────────── */
.service-card {
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  background: var(--charcoal);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-expo);
}
.service-card:hover { border-color: rgba(198,40,40,0.15); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(198,40,40,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--gold);
  transition: all 0.3s;
}
.service-card:hover .icon { background: rgba(198,40,40,0.08); }
.service-card .icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.service-card p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; }

/* ── Pillars ─────────────────────────────── */
.pillar {
  text-align: center;
  padding: 56px 40px;
  position: relative;
}
.pillar::after {
  content: '';
  position: absolute;
  top: 56px; right: 0;
  width: 1px;
  height: 60%;
  background: rgba(198,40,40,0.15);
}
.pillar:last-child::after { display: none; }
.pillar-number {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(198,40,40,0.1);
  line-height: 1;
  margin-bottom: 24px;
}
.pillar-icon {
  width: 72px; height: 72px;
  border: 1px solid rgba(198,40,40,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--gold);
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.pillar p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; }

/* ── Testimonials ────────────────────────── */
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.7s var(--ease-expo);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 80px;
}
.testimonial-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 40px;
}
.testimonial-quote::before { content: '\201C'; color: var(--gold); }
.testimonial-quote::after  { content: '\201D'; color: var(--gold); }
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.testimonial-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-title { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.stars { display: flex; gap: 4px; color: var(--gold); margin-bottom: 12px; }
.stars svg { width: 14px; height: 14px; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.carousel-btn {
  width: 52px; height: 52px;
  border: 1px solid rgba(198,40,40,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}
.carousel-btn:hover { background: rgba(198,40,40,0.1); border-color: var(--gold); }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s;
  cursor: pointer;
}
.carousel-dot.active { background: var(--gold); width: 24px; border-radius: 3px; }

/* ── Logo Wall ───────────────────────────── */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.06);
}
.logo-cell {
  flex: 1 1 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: all 0.3s;
  padding: 20px;
  text-align: center;
}
.logo-cell:hover { color: var(--gold); border-color: rgba(198,40,40,0.2); }

/* ── Stats Bar ───────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(198,40,40,0.15);
}
.stat-item {
  padding: 56px 40px;
  text-align: center;
  border-right: 1px solid rgba(198,40,40,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── Split Sections ──────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.split-image {
  position: relative;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-expo);
}
.split-section:hover .split-image img { transform: scale(1.03); }
.split-content {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
}
.split-content.bg-black { background: var(--black); }
.split-content.bg-cream { background: var(--cream); color: var(--black); }
.split-content.bg-cream .eyebrow { color: var(--red); }
.split-content.bg-cream h2 { color: var(--black); }
.split-content.bg-cream p { color: rgba(0,0,0,0.65); }
.split-content.bg-cream .gold-line { background: var(--red); }

/* ── Experience Cards (Full Width) ───────── */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.exp-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
}
.exp-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-expo);
}
.exp-card:hover img { transform: scale(1.07); }
.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 30%, rgba(0,0,0,0.1) 100%);
}
.exp-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
}
.exp-card-content .eyebrow { margin-bottom: 10px; }
.exp-card-content h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.exp-card-content p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth);
}
.exp-card:hover .exp-card-content p { max-height: 120px; }

/* ── Founder Section ─────────────────────── */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.founder-image {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.founder-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(0,0,0,0.3) 100%);
}
.founder-image-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  padding: 20px 28px;
  border: 1px solid rgba(198,40,40,0.3);
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
}
.founder-image-badge .name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.founder-image-badge .title {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.founder-content {
  background: var(--charcoal);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-signature {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin-top: 32px;
}

/* ── CTA Block ───────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.96) 0%, rgba(139,0,0,0.7) 100%);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}
.cta-content h2 { margin-bottom: 24px; }
.cta-content p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 48px;
}

/* ── Form Styles ─────────────────────────── */
.luxury-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 14px 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { background: var(--charcoal); padding: 14px 16px; border: 1px solid rgba(255,255,255,0.1); }
.form-group select option { background: var(--charcoal); }
.form-group textarea { resize: vertical; min-height: 120px; border: 1px solid rgba(255,255,255,0.1); padding: 16px; }
.form-group textarea:focus { border-color: var(--gold); }

/* ── Footer ──────────────────────────────── */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(198,40,40,0.15);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}
.footer-brand img { height: 44px; margin-bottom: 28px; }
.footer-brand p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 32px;
}
.footer-tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}
.footer-socials { display: flex; gap: 20px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 14px; height: 14px; }

/* ── Background Variants ─────────────────── */
.bg-black   { background: var(--black); }
.bg-charcoal { background: var(--charcoal); }
.bg-cream-light { background: var(--cream); color: var(--black); }
.bg-cream-light .eyebrow { color: var(--red); }
.bg-cream-light h2, .bg-cream-light h3 { color: var(--black); }
.bg-cream-light p { color: rgba(0,0,0,0.65); }
.bg-red { background: var(--red); }
.bg-deep { background: var(--deep); }

/* ── Reveal Animations ───────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.95); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ── Parallax ────────────────────────────── */
.parallax-container { position: relative; overflow: hidden; }
.parallax-img {
  position: absolute;
  inset: -20%;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}

/* ── Gold Accent Row ─────────────────────── */
.gold-accent-bar {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* ── Tag / Badge ─────────────────────────── */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(198,40,40,0.4);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Breadcrumb ──────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(198,40,40,0.6); }

/* ── Marquee ─────────────────────────────── */
.marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 80px;
  flex-shrink: 0;
}
.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-style: normal;
  font-size: 0.8rem;
  opacity: 0.6;
}
.marquee-overflow { overflow: hidden; padding: 40px 0; }

/* ── Thin Gold Horizontal Rule ───────────── */
hr.gold { border: none; height: 1px; background: rgba(198,40,40,0.2); margin: 0; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1200px) {
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 32px; }
  .grid-3  { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; }
  .split-image { height: 500px; }
  .founder-section { grid-template-columns: 1fr; }
  .founder-image { height: 500px; }
  .founder-content { padding: 60px 48px; }
  .split-content { padding: 60px 48px; }
  .nav-links { gap: 24px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; --nav-h: 64px; }
  html, body { overflow-x: hidden; }
  body { -webkit-overflow-scrolling: touch; }
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .luxury-form { grid-template-columns: 1fr; }
  .hero-content { padding: 0 20px; padding-top: calc(var(--nav-h) + 20px); }
  .hero-content h1 { font-size: clamp(2rem, 9vw, 3.2rem); }
  .testimonial-slide { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .pillar::after { display: none; }
  .dest-card { height: 380px; }
  .page-hero { height: 50vh; min-height: 320px; }
  .nav-inner { padding: 0 20px; }
  /* Inline grid overrides for booking funnel */
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(5"] { grid-template-columns: 1fr 1fr !important; }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  /* Trust bar stacks */
  .trust-bar-inner { grid-template-columns: 1fr 1fr !important; }
  /* Sticky CTA sizing */
  #sticky-cta { right: 16px; bottom: 16px; }
  /* Split section with inline styles */
  [style*="grid-template-columns:1fr 1fr;gap:80px"] { grid-template-columns: 1fr !important; gap: 40px !important; }
}
@media (max-width: 480px) {
  .exp-grid { grid-template-columns: 1fr; }
  .btn { padding: 14px 24px; font-size: 0.68rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .stats-bar { grid-template-columns: 1fr; }
  [style*="grid-template-columns:repeat(5"] { grid-template-columns: 1fr !important; }
  .trust-bar-inner { grid-template-columns: 1fr !important; }
  .hero-content h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
}
