/* ============================================
   CAP CANA VIP DISCOVERY EXPERIENCE
   Art direction: Luxury editorial / Caribbean warmth
   Palette: Deep navy + warm gold + white sand
   ============================================ */

:root {
  /* Typography */
  --font-display: 'Cormorant', 'Georgia', serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;

  /* Fluid type */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Palette — Luxury Caribbean */
  --color-bg: #FDFBF7;
  --color-surface: #F5F0E8;
  --color-surface-2: #EDE7DB;
  --color-border: #D4CCBB;
  --color-text: #1B1B1B;
  --color-text-muted: #6B6558;
  --color-text-faint: #A39E93;
  --color-text-inverse: #FDFBF7;
  --color-navy: #0A1628;
  --color-navy-light: #162844;
  --color-accent: #C19B63;
  --color-accent-hover: #A8834E;
  --color-accent-light: rgba(193, 155, 99, 0.15);
  --color-teal: #1A8A8A;
  --color-white: #FFFFFF;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.14);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 680px;
  --content-default: 960px;
  --content-wide: 1240px;
}

/* ============================================
   GLOBAL
   ============================================ */

body {
  background: var(--color-bg);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: var(--content-narrow);
}

.container--default {
  max-width: var(--content-default);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-5) 0;
  transition: background 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  padding: var(--space-3) 0;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.75rem);
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(10, 22, 40, 0.7), 0 1px 4px rgba(10, 22, 40, 0.5);
}

.nav__logo span {
  color: var(--color-accent);
}

.nav__links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(10, 22, 40, 0.6);
}

.nav__links a:hover {
  color: var(--color-accent);
}

.nav__cta {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy) !important;
  background: var(--color-accent);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}

.nav__cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

/* Mobile menu — hidden by default at ALL viewports */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-navy);
  z-index: 200;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
}

.nav__mobile-menu.active {
  display: flex;
}

.nav__mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav__mobile-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-6);
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta-desktop { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.1) 0%,
    rgba(10, 22, 40, 0.25) 45%,
    rgba(10, 22, 40, 0.65) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--space-8) var(--space-6);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
  background: rgba(10, 22, 40, 0.45);
  display: inline-block;
  padding: 0.45em 1.2em;
  border: 1px solid rgba(193, 155, 99, 0.5);
  border-radius: 2px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 20px rgba(10, 22, 40, 0.5);
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.95);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: var(--space-10);
  max-width: 640px;
  margin-inline: auto;
  text-shadow: 0 1px 12px rgba(10, 22, 40, 0.5);
}

.hero__cta-group {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-interactive), color var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
  cursor: pointer;
  border: none;
}

.btn--primary {
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-8);
  background: var(--color-accent);
  color: var(--color-navy);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(193, 155, 99, 0.3);
}

.btn--outline {
  font-size: var(--text-sm);
  padding: calc(var(--space-4) - 2px) calc(var(--space-8) - 2px);
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn--dark {
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-8);
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   VIP OFFER SECTION
   ============================================ */

/* ============================================
   VIDEO INTRO
   ============================================ */

.video-intro {
  padding: var(--space-16) 0;
  background: linear-gradient(180deg, #FAFAF7 0%, #F2EFE9 100%);
}

.video-intro__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.video-intro__title {
  font-family: var(--font-display, var(--font-serif, Georgia, serif));
  font-size: var(--text-3xl);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-ink, #0B1320);
  margin: var(--space-3) 0 var(--space-4);
}

.video-intro__title em {
  font-style: italic;
  color: var(--color-accent);
}

.video-intro__desc {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.5;
  color: rgba(11,19,32,0.72);
  margin: 0 auto var(--space-8);
  max-width: 640px;
}

.video-intro__pullquote {
  max-width: 760px;
  margin: 0 auto var(--space-10);
  padding: var(--space-8) var(--space-6);
  border-top: 1px solid rgba(11,19,32,0.12);
  border-bottom: 1px solid rgba(11,19,32,0.12);
  text-align: center;
}

.video-intro__pullquote-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold, #b8965a);
  margin: 0 0 var(--space-4);
}

.video-intro__pullquote-text {
  font-family: var(--font-display, Georgia, serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.5;
  color: rgba(11,19,32,0.88);
  margin: 0 0 var(--space-5);
}

.video-intro__pullquote-cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11,19,32,0.62);
  font-style: normal;
}

.video-intro__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11,19,32,0.25);
  background: #000;
}

.video-intro__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .video-intro {
    padding: var(--space-12) 0;
  }
  .video-intro__title {
    font-size: var(--text-2xl);
  }
  .video-intro__desc {
    font-size: var(--text-base);
  }
  .video-intro__pullquote {
    padding: var(--space-6) var(--space-4);
    margin-bottom: var(--space-8);
  }
  .video-intro__pullquote-text {
    font-size: 1.1rem;
  }
}

.vip-offer {
  position: relative;
  background: var(--color-navy);
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  overflow: hidden;
}

.vip-offer__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 25% 25%, var(--color-accent) 1px, transparent 1px);
  background-size: 60px 60px;
}

.vip-offer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.vip-offer__text {
  color: var(--color-white);
}

.vip-offer__invite {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-5);
}

.vip-offer__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.vip-offer__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.vip-offer__title-script {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent);
}

.vip-offer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.25rem);
  color: var(--color-accent);
  line-height: 1.5;
  margin-bottom: var(--space-7);
  letter-spacing: 0.01em;
}

.vip-offer__highlight {
  padding: var(--space-4) 0 var(--space-4) var(--space-5);
  border-left: 2px solid var(--color-accent);
  margin-bottom: var(--space-6);
}

.vip-offer__highlight-line {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  color: var(--color-white);
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.vip-offer__highlight-line + .vip-offer__highlight-line {
  margin-top: var(--space-1);
}

.vip-offer__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.vip-offer__desc--last {
  margin-bottom: 0;
}

.vip-offer__amenities {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.25rem);
  color: var(--color-white);
  line-height: 1.45;
  letter-spacing: 0.01em;
  padding: var(--space-5) var(--space-6);
  background: rgba(193, 155, 99, 0.08);
  border-top: 1px solid rgba(193, 155, 99, 0.35);
  border-bottom: 1px solid rgba(193, 155, 99, 0.35);
  margin: var(--space-2) 0 var(--space-3);
  text-align: center;
}

.vip-offer__amenities-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-accent);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-6);
}

.vip-offer__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(193, 155, 99, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  text-align: center;
}

.vip-offer__card-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.vip-offer__card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: var(--space-3);
  letter-spacing: 0.02em;
}

.vip-offer__card-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.6rem + 1.4vw, 2.5rem);
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: var(--space-1);
  line-height: 1.1;
}

.vip-offer__card-per {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.vip-offer__card-list {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-6);
}

.vip-offer__card-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  line-height: 1.4;
}

.vip-offer__card-list li:last-child {
  border-bottom: none;
}

.vip-offer__card-asterisk {
  font-size: 0.45em;
  color: var(--color-accent);
  vertical-align: super;
  margin-left: 0.1em;
  font-weight: 400;
  line-height: 1;
}

.vip-offer__credit {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: rgba(193, 155, 99, 0.06);
  border-left: 2px solid var(--color-accent);
  border-radius: 2px;
  text-align: left;
}

.vip-offer__credit-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.vip-offer__credit-star {
  color: var(--color-accent);
  font-size: 1rem;
  line-height: 1;
}

.vip-offer__credit-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
}

.vip-offer__card-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-top: 6px;
}

/* VIP card CTA row — two buttons side by side */
.vip-offer__card-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  width: 100%;
  margin-top: var(--space-2);
}

.vip-offer__card-cta-row .vip-offer__card-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding-left: var(--space-3);
  padding-right: var(--space-3);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .vip-offer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .vip-offer__card-cta-row {
    grid-template-columns: 1fr;
  }
  .vip-offer__card-cta-row .vip-offer__card-cta {
    font-size: var(--text-sm);
  }
}

/* ============================================
   LIFESTYLE SECTION
   ============================================ */

.lifestyle {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.lifestyle__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-4);
}

.lifestyle__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
}

.lifestyle__card--featured {
  grid-column: span 2;
  min-height: 420px;
}

/* Punta Espada feature spread (full-width row) */
.lifestyle__feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0B1320;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.lifestyle__feature-image {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.lifestyle__feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms ease;
}

.lifestyle__feature:hover .lifestyle__feature-image img {
  transform: scale(1.03);
}

.lifestyle__feature-text {
  padding: var(--space-10) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
  background: linear-gradient(180deg, #0B1320 0%, #060D17 100%);
}

.lifestyle__feature-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
}

.lifestyle__feature-title {
  font-family: var(--font-display, var(--font-serif, Georgia, serif));
  font-size: var(--text-3xl);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 var(--space-4);
  color: var(--color-white);
}

.lifestyle__feature-lede {
  font-family: var(--font-display, var(--font-serif, Georgia, serif));
  font-style: italic;
  font-size: var(--text-xl);
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  margin: 0 0 var(--space-4);
}

.lifestyle__feature-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0 0 var(--space-6);
}

.lifestyle__feature-divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.7;
  margin: 0 0 var(--space-5);
}

.lifestyle__feature-coming {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.lifestyle__feature-coming strong {
  color: var(--color-accent);
  font-weight: 600;
}

.lifestyle__feature-coming-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-right: var(--space-2);
  padding: 2px 8px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .lifestyle__feature {
    grid-template-columns: 1fr;
  }
  .lifestyle__feature-image {
    min-height: 280px;
  }
  .lifestyle__feature-text {
    padding: var(--space-8) var(--space-6);
  }
}

.lifestyle__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out);
}

.lifestyle__card:hover img {
  transform: scale(1.04);
}

.lifestyle__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 22, 40, 0.55) 0%, transparent 40%);
  z-index: 1;
}

.lifestyle__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  z-index: 2;
}

.lifestyle__card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: var(--space-2);
}

.lifestyle__card-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* Deep-Sea Sport Fishing — full photo on its own row inside the lifestyle grid,
   with the caption block placed directly underneath the photo. Photo is shown
   intact (no crop) so the angler, captain, rods and deck are all visible. */
.deep-sea-figure {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}
.deep-sea-figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 90vh;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}
.deep-sea-figure__caption {
  display: block;
  text-align: center;
  padding: var(--space-5) var(--space-6) var(--space-6);
  background: var(--color-navy);
  color: #fff;
}
.deep-sea-figure__title {
  display: block;
  color: var(--color-gold, #C19B63);
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: var(--text-xl, 1.5rem);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.deep-sea-figure__divider {
  display: block;
  width: 64px;
  height: 1px;
  margin: var(--space-3) auto;
  background: var(--color-gold, #C19B63);
  opacity: 0.7;
}
.deep-sea-figure__desc {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: var(--text-base, 1rem);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 auto;
  text-align: center;
}
.deep-sea-figure__desc--accent {
  margin-top: var(--space-3);
  color: var(--color-gold, #C19B63);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* White Marlin Tournament feature — sits inside the events grid as a full-width row,
   shows the entire promo image uncropped (navy framing on the sides),
   with the title / divider / description / date directly underneath. */
.marlin-feature {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}
.marlin-feature img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  margin: 0 auto;
  object-fit: contain;
}
.marlin-feature__caption {
  display: block;
  text-align: center;
  padding: var(--space-5) var(--space-6) var(--space-6);
  background: var(--color-navy);
  color: #fff;
}
.marlin-feature__title {
  display: block;
  color: var(--color-gold, #C19B63);
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: var(--text-xl, 1.5rem);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.marlin-feature__divider {
  display: block;
  width: 64px;
  height: 1px;
  margin: var(--space-3) auto;
  background: var(--color-gold, #C19B63);
  opacity: 0.7;
}
.marlin-feature__desc {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: var(--text-base, 1rem);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 auto;
}
.marlin-feature__date {
  display: inline-block;
  margin-top: var(--space-3);
  color: var(--color-gold, #C19B63);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--text-sm, 0.875rem);
  font-weight: 600;
}

/* Rooftop Infinity Pool feature — full-width image with caption underneath,
   placed directly under the Bonita Beach lobby image break. */
.rooftop-feature {
  margin: 0;
  padding: 0;
  background: var(--color-navy);
  display: block;
}
.rooftop-feature img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  margin: 0 auto;
  object-fit: contain;
}
.rooftop-feature__caption {
  display: block;
  text-align: center;
  padding: var(--space-5) var(--space-6) var(--space-7);
  background: var(--color-navy);
  color: #fff;
}
.rooftop-feature__title {
  display: block;
  color: var(--color-gold, #C19B63);
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: var(--text-xl, 1.5rem);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.rooftop-feature__divider {
  display: block;
  width: 64px;
  height: 1px;
  margin: var(--space-3) auto;
  background: var(--color-gold, #C19B63);
  opacity: 0.7;
}
.rooftop-feature__desc {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: var(--text-base, 1rem);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 auto;
}

/* Real Estate Opportunities slide — full image, never cropped, navy frame */
.real-estate-slide {
  background: var(--color-navy);
  padding: var(--space-10) 0;
}
.real-estate-slide__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.real-estate-slide img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

/* Allegria & Marina Nightlife feature — full photo uncropped, caption underneath */
.allegria-feature {
  margin: var(--space-8) 0 0;
  padding: 0;
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}
.allegria-feature img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  margin: 0 auto;
  object-fit: contain;
}
.allegria-feature__caption {
  display: block;
  text-align: center;
  padding: var(--space-5) var(--space-6) var(--space-6);
  background: var(--color-navy);
  color: #fff;
}
.allegria-feature__title {
  display: block;
  color: var(--color-gold, #C19B63);
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: var(--text-xl, 1.5rem);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.allegria-feature__divider {
  display: block;
  width: 64px;
  height: 1px;
  margin: var(--space-3) auto;
  background: var(--color-gold, #C19B63);
  opacity: 0.7;
}
.allegria-feature__desc {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: var(--text-base, 1rem);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 auto;
}

/* El Dorado Water Park — photo locked to its natural aspect ratio (no letterboxing),
   brand-navy banner flush against the bottom of the photo */
.lifestyle__card--eldorado {
  display: block;
  grid-column: 1 / -1;            /* own row, full grid width */
  align-self: start;              /* never stretch to neighbor height */
  min-height: 0 !important;       /* override .lifestyle__card / --featured */
  height: auto;
  background: var(--color-navy);  /* brand navy if any sliver shows through */
  font-size: 0;                   /* kill inline whitespace under the img */
  line-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lifestyle__card--eldorado img {
  position: static;
  display: block;
  width: 100%;
  height: auto;                   /* aspect ratio comes from intrinsic w/h on the <img> */
  object-fit: cover;              /* photo fills its box exactly — no bars */
  object-position: center;
  inset: auto;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.lifestyle__card--eldorado:hover img {
  transform: none;
}
.lifestyle__card--eldorado .lifestyle__card-content {
  position: static;
  background: var(--color-navy);   /* solid brand navy banner */
  padding: var(--space-3) var(--space-6) var(--space-4);
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  border-top: 0;
}
.lifestyle__card--eldorado .lifestyle__card-title {
  margin-top: 0;
  padding-top: 0;
}
.lifestyle__card--eldorado .lifestyle__card-title {
  color: #ffffff;
}
.lifestyle__card--eldorado .lifestyle__card-desc {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
  .lifestyle__grid {
    grid-template-columns: 1fr;
  }
  .lifestyle__card--featured {
    grid-column: span 1;
  }
}

/* ============================================
   REAL ESTATE SECTION
   ============================================ */

.real-estate {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-surface);
}

.real-estate__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-12);
  align-items: center;
}

.real-estate__media {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.real-estate__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.real-estate__image img {
  width: 100%;
  height: auto;
  display: block;
}

.real-estate__badge {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  background: var(--color-accent);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
}

.real-estate__content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: var(--space-4);
}

.real-estate__content > p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.real-estate__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.stat-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.stat-card__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.real-estate__features {
  list-style: none;
  margin-bottom: var(--space-8);
}

.real-estate__features li {
  font-size: var(--text-base);
  color: var(--color-text);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.real-estate__features li svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.real-estate__tagline {
  font-family: var(--font-display, var(--font-serif, Georgia, serif));
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin: 0 0 var(--space-8);
  text-align: left;
}

@media (max-width: 768px) {
  .real-estate__layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ============================================
   EVENTS / CELEBRATIONS
   ============================================ */

.events {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-navy);
  color: var(--color-white);
}

.events .section-title {
  color: var(--color-white);
}

.events .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.events__hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-10);
  min-height: 380px;
}

.events__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.events__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.4) 50%, rgba(10, 22, 40, 0.15) 100%);
  z-index: 1;
}

.events__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8);
  z-index: 2;
}

.events__hero-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
}

.events__hero-content p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.events__hero--secondary {
  min-height: 320px;
  margin-top: var(--space-10);
  margin-bottom: 0;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.events__card {
  padding: var(--space-6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
}

.events__card:hover {
  border-color: rgba(193, 155, 99, 0.3);
  background: rgba(255,255,255,0.06);
}

.events__card-icon {
  width: 44px;
  height: 44px;
  background: rgba(193, 155, 99, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}

.events__card h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.events__card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.events__season {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .events__grid {
    grid-template-columns: 1fr;
  }
  .events__hero {
    min-height: 280px;
  }
}

/* ============================================
   FULL-BLEED IMAGE BREAK
   ============================================ */

.image-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* What's Up at Cap Cana — show the FULL photo (headline + caption baked in), no crop */
.image-break--whats-up {
  height: auto;
  min-height: 0;
  background: #000;
}
.image-break--whats-up img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Lobby variant — show full building elevation */
.image-break--lobby {
  height: 70vh;
  min-height: 500px;
}

.image-break--lobby img {
  object-position: center 20%;
}

@media (max-width: 768px) {
  .image-break--lobby {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .image-break--lobby img {
    object-position: center center;
  }
}

.image-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-break__quote {
  text-align: center;
  max-width: 700px;
  padding: var(--space-6);
}

.image-break__quote blockquote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-white);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: var(--space-4);
}

.image-break__quote cite {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
}

/* ============================================
   MACRO POSITIONING
   ============================================ */

.macro {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.macro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.macro__card {
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.macro__card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.macro__card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-accent);
}

.macro__card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.macro__card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .macro__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .macro__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DELIVERABLES / NARRATIVE / HEADLINES
   ============================================ */

.narrative {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-navy);
  color: var(--color-white);
}

.narrative__content {
  max-width: 740px;
  margin-inline: auto;
}

.narrative__content .section-label {
  color: var(--color-accent);
}

.narrative__content .section-title {
  color: var(--color-white);
  text-align: left;
  margin-bottom: var(--space-8);
}

.narrative__prose p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.narrative__prose p:first-of-type::first-line {
  font-weight: 500;
  color: rgba(255,255,255,0.95);
}

/* ============================================
   HEADLINES & TAGLINES SECTION
   ============================================ */

.headlines {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-surface);
}

.section-intro {
  font-family: var(--font-body);
  font-size: var(--text-md, 1.0625rem);
  color: var(--color-text-soft, var(--color-text));
  line-height: 1.6;
  max-width: 640px;
  margin: var(--space-5) auto 0;
}

.headlines__quotes {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 880px;
  margin: var(--space-12) auto 0;
}

.pull-quote {
  position: relative;
  margin: 0;
  padding: var(--space-10) var(--space-12) var(--space-10);
  background: #ffffff;
  border-left: 3px solid var(--color-accent);
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(10, 22, 40, 0.04), 0 8px 24px rgba(10, 22, 40, 0.06);
}

.pull-quote::before,
.pull-quote::after {
  position: absolute;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.7;
  pointer-events: none;
}

.pull-quote::before {
  content: "\201C";
  top: var(--space-2);
  left: var(--space-6);
}

.pull-quote::after {
  content: "\201D";
  bottom: -0.35em;
  right: var(--space-6);
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.45;
  color: var(--color-navy);
  font-weight: 400;
  font-style: italic;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .pull-quote {
    padding: var(--space-9) var(--space-8) var(--space-9);
  }
  .pull-quote::before,
  .pull-quote::after {
    font-size: 3.5rem;
  }
  .pull-quote::before {
    left: var(--space-4);
  }
  .pull-quote::after {
    right: var(--space-4);
  }
  .pull-quote p {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .headlines__quotes {
    margin-top: var(--space-8);
    gap: var(--space-8);
  }
}

/* ============================================
   VIDEO SCRIPT
   ============================================ */

.video-script {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.video-script__card {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  color: var(--color-white);
  max-width: 800px;
  margin-inline: auto;
}

.video-script__card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  font-weight: 400;
  margin-bottom: var(--space-2);
}

.video-script__meta {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
}

.video-script__beats {
  list-style: none;
  counter-reset: beat;
}

.video-script__beats li {
  counter-increment: beat;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-4);
}

.video-script__beats li::before {
  content: counter(beat, decimal-leading-zero) 's';
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.video-script__beats .beat-visual {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: var(--space-1);
}

.video-script__beats .beat-copy {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* ============================================
   LANDING PAGE BULLETS
   ============================================ */

.landing-bullets {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-surface);
}

.landing-bullets__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.landing-bullet {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.landing-bullet__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.landing-bullet__text h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.landing-bullet__text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .landing-bullets__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  position: relative;
  padding: clamp(var(--space-20), 10vw, var(--space-32)) 0;
  background: var(--color-navy);
  overflow: hidden;
}

/* Marina photo — full bleed, no shade */
.marina-photo {
  width: 100%;
  overflow: hidden;
}

.marina-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 740px;
  margin-inline: auto;
}

.cta-section__inner .section-label {
  color: var(--color-accent);
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-white);
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--space-6);
  line-height: 1.2;
}

.cta-section__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

/* ============================================
   PRESENTED BY — JOSH SMITH ENDORSEMENT
   ============================================ */

.presented-by {
  background: linear-gradient(180deg, #0B1320 0%, #060D17 100%);
  padding: var(--space-16) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.presented-by__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-10);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.presented-by__photo {
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.45));
}

.presented-by__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.presented-by__content {
  color: var(--color-white);
}

.presented-by__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
}

.presented-by__name {
  font-family: var(--font-display, var(--font-serif, Georgia, serif));
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0 0 var(--space-4);
}

.presented-by__name span {
  font-size: var(--text-base);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.presented-by__credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
}

.presented-by__credential strong {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.presented-by__credential-divider {
  color: var(--color-accent);
  opacity: 0.6;
}

.presented-by__affiliations {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 var(--space-6);
}

.presented-by__quote {
  position: relative;
  font-family: var(--font-display, var(--font-serif, Georgia, serif));
  font-style: italic;
  font-size: var(--text-lg);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0;
  padding-left: var(--space-6);
  border-left: 2px solid var(--color-accent);
}

.presented-by__quote-mark {
  display: none;
}

@media (max-width: 768px) {
  .presented-by__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
  }
  .presented-by__photo {
    margin: 0 auto;
    width: 240px;
    height: 240px;
  }
  .presented-by__credentials {
    justify-content: center;
  }
  .presented-by__quote {
    text-align: left;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #060D17;
  color: rgba(255,255,255,0.5);
  padding: var(--space-10) 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__brand span {
  color: var(--color-accent);
}

.footer__legal {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

/* Fallback for Safari via IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   DIVIDER
   ============================================ */

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin: var(--space-6) auto;
}

.gold-divider--left {
  margin-left: 0;
}

/* ============================================
   GLOBAL DESTINATION STATEMENT
   ============================================ */
.global-statement {
  padding: var(--space-6) 0;
  background: var(--color-navy);
  text-align: center;
}
.global-statement__inner {
  max-width: 800px;
  margin: 0 auto;
}
.global-statement__text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.25;
  color: #fff;
  letter-spacing: 0.01em;
}
.global-statement__text span {
  color: var(--color-accent);
  font-style: italic;
}
.global-statement__quote {
  margin: 2rem auto 0;
  padding: 0;
  border: none;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.75rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--color-accent);
  max-width: 720px;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.global-statement__attribution {
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Extend stay note */
.vip-offer__extend {
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(193, 155, 99, 0.1);
  border: 1px solid rgba(193, 155, 99, 0.3);
  border-radius: 6px;
  padding: 1rem 1.1rem;
  text-align: left;
}
.vip-offer__extend-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 1px;
}
.vip-offer__extend-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.vip-offer__extend-text strong {
  color: #fff;
  font-weight: 600;
}
.vip-offer__extend a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vip-offer__extend a:hover {
  color: #fff;
}

/* ============================================
   LEAVE IN THE MORNING — full slide section
   ============================================ */
.leave-morning {
  background: var(--navy, #0A1628);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}
.leave-morning__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.leave-morning__inner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
  .leave-morning {
    padding: 1.25rem 0.75rem;
  }
  .leave-morning__inner img {
    max-height: none;
    border-radius: 4px;
  }
}

/* ============================================
   VIP CARD — CURIOUS TO LEARN MORE callout
   ============================================ */
.vip-offer__learn-more {
  margin: 1.25rem 0 0.75rem;
  text-align: center;
}
.vip-offer__learn-more-heading {
  font-family: var(--font-serif, "Cormorant Garamond", "Playfair Display", Georgia, serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold, #C19B63);
  margin: 0 0 0.4rem;
  letter-spacing: 0.01em;
  font-style: italic;
}
.vip-offer__learn-more-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(253, 251, 247, 0.85);
  margin: 0;
}
@media (max-width: 768px) {
  .vip-offer__learn-more-heading { font-size: 1.2rem; }
  .vip-offer__learn-more-text { font-size: 0.875rem; }
}
