/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VDW · DESIGN TOKENS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --jungle: #1A2E25;
  --jungle-mid: #243D31;
  --jungle-deep: #0F1C16;
  --oyster: #F9F8F6;
  --sand: #E5DFD3;
  --sand-dark: #D6CEBD;
  --gold: #B8960C;
  --gold-light: #D4AE30;
  --gold-pale: #F0E4A8;
  --ink: #1A1A1A;
  --muted: #6B6B5F;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

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

/* Lenis Smooth Scroll Base */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--oyster);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; color: inherit; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CURSOR · ENGAGEMENT RING
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
html.custom-cursor-ready,
html.custom-cursor-ready body,
html.custom-cursor-ready a,
html.custom-cursor-ready button,
html.custom-cursor-ready input,
html.custom-cursor-ready textarea,
html.custom-cursor-ready select,
html.custom-cursor-ready label { cursor: none; }

html.native-cursor,
html.native-cursor body,
html.native-cursor a,
html.native-cursor button,
html.native-cursor input,
html.native-cursor textarea,
html.native-cursor select,
html.native-cursor label { cursor: auto; }

html.native-cursor a,
html.native-cursor button,
html.native-cursor [role="button"],
html.native-cursor .faq-question { cursor: pointer; }

@media (hover: none), (pointer: coarse) {
  html, body, a, button, input, textarea, select, label { cursor: auto; }
}

.cursor {
  position: fixed;
  top: 0; left: 0;
  display: none;
  opacity: 0;
  pointer-events: none;
  z-index: 10050;
  will-change: transform;
}
html.custom-cursor-ready .cursor {
  display: block;
  opacity: 1;
}
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

.cursor-ring {
  position: relative;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.5s var(--ease),
    height 0.5s var(--ease),
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-gem {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow:
    0 0 8px var(--gold-light),
    0 0 14px rgba(212, 174, 48, 0.5),
    0 0 24px rgba(212, 174, 48, 0.25);
  animation: gemPulse 2.4s infinite ease-in-out;
  transition: opacity 0.3s ease;
}
@keyframes gemPulse {
  0%, 100% {
    opacity: 0.85;
    box-shadow: 0 0 6px var(--gold-light), 0 0 12px rgba(212, 174, 48, 0.35);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 12px var(--gold-light), 0 0 22px rgba(212, 174, 48, 0.7), 0 0 30px rgba(212, 174, 48, 0.35);
  }
}

.cursor-text {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.cursor.is-hover .cursor-ring {
  width: 64px; height: 64px;
  background: rgba(184, 150, 12, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: var(--gold-light);
}
.cursor.is-hover .cursor-gem { opacity: 0; }
.cursor.is-hover .cursor-text { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .cursor-ring { transition: none; }
  .cursor-gem { animation: none; }
  .cursor-text { transition: none; }
  .cursor.is-hover .cursor-ring { transition: none; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT PRIMITIVES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TYPOGRAPHY
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--jungle);
}
em { font-style: italic; }

.label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(56px, 8vw, 96px);
}
.section-head .label { display: block; margin-bottom: 24px; }

.section-h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 28px;
}
.section-h2 em { color: var(--gold); font-weight: 400; font-style: italic; }

.section-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   REVEAL ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.3s var(--ease), transform 1.3s var(--ease);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"].is-revealed { transition-delay: 0.1s; }
[data-reveal-delay="2"].is-revealed { transition-delay: 0.2s; }
[data-reveal-delay="3"].is-revealed { transition-delay: 0.3s; }

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(70px) rotate(3deg);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.025s + 0.2s);
}
.char.is-revealed {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUTTONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 20px 40px;
  text-decoration: none;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-primary:hover { background: var(--gold); color: var(--jungle); letter-spacing: 0.26em; }
.btn-sm { padding: 12px 26px; font-size: 10px; }
.btn-lg { padding: 24px 54px; font-size: 12px; }

.btn-light { background: transparent; border: 1px solid var(--gold-light); color: var(--gold-light); }
.btn-light:hover { background: var(--gold-light); color: var(--jungle); letter-spacing: 0.26em; }

.btn-ghost {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oyster);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(212, 174, 48, 0.6);
  transition: color 0.4s ease, border-color 0.4s ease, letter-spacing 0.4s ease;
}
.btn-ghost:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); letter-spacing: 0.24em; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAV
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(24px, 4.5vw, 56px);
  background: rgba(26, 46, 37, 0);
  transition: all 0.6s var(--ease);
}
.nav.is-scrolled {
  background: rgba(26, 46, 37, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px clamp(24px, 4.5vw, 56px);
  border-bottom: 1px solid rgba(184, 150, 12, 0.22);
}

.nav-logo { position: relative; display: block; height: 44px; width: auto; }
.nav-logo-full, .nav-logo-mark { height: 100%; width: auto; transition: opacity 0.5s ease; }
.nav-logo-mark { position: absolute; top: 0; left: 0; opacity: 0; height: 40px; }
.nav.is-scrolled .nav-logo-full { opacity: 0; }
.nav.is-scrolled .nav-logo-mark { opacity: 1; }
.nav-home-hint {
  position: absolute;
  left: 52px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.35s ease;
}
.nav-home-hint::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  transform-origin: right center;
  transition: transform 0.35s var(--ease);
}
.nav-home-hint::after {
  content: '';
  width: 6px;
  height: 6px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav.is-scrolled .nav-home-hint {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.nav-home-hint:hover { color: var(--oyster); }
.nav-home-hint:hover::before { transform: scaleX(1.22); }

.nav-links { display: flex; gap: 48px; align-items: center; }
.nav-links a,
.nav-dropdown-toggle {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--oyster);
  position: relative;
  padding: 6px 0;
  transition: color 0.4s ease;
}
.nav-links a::after,
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s var(--ease);
}
.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"],
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-dropdown-toggle[aria-current="page"],
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle.active::after,
.nav-dropdown-toggle[aria-current="page"]::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after { transform: scaleX(1); }

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-dropdown-toggle .nav-dropdown-chevron {
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.35s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron,
.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(225deg) translateY(-1px);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 150;
  display: grid;
  gap: 2px;
  width: max-content;
  min-width: 280px;
  max-width: min(78vw, 520px);
  padding: 16px;
  background: rgba(249, 248, 246, 0.97);
  border: 1px solid rgba(184, 150, 12, 0.28);
  box-shadow: 0 26px 80px rgba(15, 28, 22, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}
.nav-dropdown-menu.is-wide {
  grid-template-columns: repeat(2, minmax(210px, 1fr));
}
.nav-dropdown-menu.is-services-columns {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  width: min(760px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  gap: 10px 14px;
}
.nav-dropdown-column {
  display: grid;
  gap: 2px;
  align-content: start;
  min-width: 0;
}
.nav-dropdown-menu.is-services-columns .nav-dropdown-column a {
  min-height: 68px;
  white-space: normal;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  color: var(--jungle);
  letter-spacing: 0.12em;
  line-height: 1.3;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a span {
  color: rgba(26, 46, 37, 0.56);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: none;
}
.nav-dropdown-menu a:hover {
  background: rgba(184, 150, 12, 0.1);
  color: var(--gold);
  transform: translateX(3px);
}
.nav-dropdown-menu a.active,
.nav-dropdown-menu a[aria-current="page"] {
  background: rgba(184, 150, 12, 0.1);
  color: var(--gold);
}
.nav-dropdown-menu a.is-overview {
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 150, 12, 0.2);
  margin-bottom: 4px;
}
.nav-dropdown[data-nav-dropdown="services"] .nav-dropdown-menu a.is-overview,
.nav-dropdown[data-nav-dropdown="destinations"] .nav-dropdown-menu a.is-overview {
  grid-column: 1 / -1;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background:
    linear-gradient(135deg, rgba(184, 150, 12, 0.16), rgba(255, 255, 255, 0.78)),
    var(--oyster);
  border: 1px solid rgba(184, 150, 12, 0.28);
  color: var(--jungle);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}
.nav-dropdown[data-nav-dropdown="services"] .nav-dropdown-menu a.is-overview::before,
.nav-dropdown[data-nav-dropdown="destinations"] .nav-dropdown-menu a.is-overview::before {
  content: 'Start here';
  order: 2;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-dropdown[data-nav-dropdown="services"] .nav-dropdown-menu a.is-overview:hover,
.nav-dropdown[data-nav-dropdown="destinations"] .nav-dropdown-menu a.is-overview:hover {
  transform: translateY(-2px);
  color: var(--gold);
  box-shadow: 0 18px 42px rgba(15, 28, 22, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 318px;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.45s var(--ease),
    visibility 0.45s var(--ease),
    transform 0.45s var(--ease);
}
.nav.is-scrolled .nav-cta {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-tag {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 500;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .nav-links { gap: 28px; }
  .nav-cta {
    min-width: 260px;
    gap: 18px;
  }
  .nav-tag { letter-spacing: 0.18em; }
}

.nav-burger {
  display: none;
  width: 32px; height: 22px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--oyster);
  transition: all 0.5s var(--ease);
}
.nav-burger span:nth-child(1) { top: 2px; }
.nav-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger span:nth-child(3) { bottom: 2px; }
.nav-burger.is-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 980px) {
  .nav { padding: 22px 28px; }
  .nav.is-scrolled { padding: 14px 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav.is-scrolled .nav-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
  }
  .nav-burger { display: block; }
  .nav-logo { height: 36px; }
  .nav-logo-mark { height: 32px; }
  .nav-home-hint {
    left: 44px;
    font-size: 8px;
    letter-spacing: 0.18em;
  }
  .nav-home-hint::before { width: 18px; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--jungle);
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease);
  overflow-y: auto;
  padding: 96px 24px 44px;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a,
.mobile-dropdown-toggle {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  color: var(--oyster);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.mobile-dropdown {
  width: min(100%, 420px);
  text-align: center;
}
.mobile-dropdown-toggle {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.mobile-dropdown-toggle::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.35s var(--ease);
}
.mobile-dropdown.is-open .mobile-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-2px);
}
.mobile-dropdown-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease), opacity 0.35s ease, padding 0.35s ease;
}
.mobile-dropdown.is-open .mobile-dropdown-menu {
  max-height: 760px;
  opacity: 1;
  padding: 16px 0 6px;
}
.mobile-dropdown-menu a {
  display: block;
  padding: 9px 0;
  color: rgba(249, 248, 246, 0.78);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}
.mobile-dropdown-menu a.is-overview {
  color: var(--gold-light);
}
.mobile-menu a.mobile-cta {
  color: var(--gold-light);
  font-style: italic;
  margin-top: 28px;
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
}
.mobile-tag {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 40px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oyster);
  background: var(--jungle);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: scale(1.06);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(26, 46, 37, 0.65) 0%, rgba(26, 46, 37, 0.15) 70%),
    linear-gradient(180deg, rgba(26, 46, 37, 0.2) 0%, rgba(26, 46, 37, 0.85) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  row-gap: clamp(22px, 4.2vh, 44px);
  text-align: center;
  max-width: 960px;
  width: 100%;
  padding: clamp(88px, 13vh, 136px) clamp(20px, 5vw, 48px) clamp(64px, 10vh, 112px);
}
.hero-eyebrow {
  font-size: clamp(8px, 1.5vw, 10px);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin: 0;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--oyster) !important;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  width: 100%;
}
.hero-h1 .line { display: block; white-space: normal; }
.hero-h1 em { color: var(--gold-light) !important; font-style: italic; font-weight: 300; }
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.9;
  color: rgba(249, 248, 246, 0.82);
  max-width: 580px;
  margin: 0 auto;
}
.hero-ctas {
  display: flex;
  gap: clamp(20px, 4vw, 44px);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .hero {
    min-height: 620px;
  }
  .hero-content {
    row-gap: clamp(18px, 3.4vh, 28px);
    padding-top: clamp(86px, 13vh, 118px);
    padding-bottom: clamp(46px, 8vh, 76px);
  }
  .hero-ctas {
    width: min(100%, 340px);
    gap: 18px;
  }
  .hero-ctas .btn,
  .hero-ctas .btn-ghost {
    width: 100%;
    text-align: center;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   B · PHILOSOPHY (LUM360 Immersive Scroll)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.philosophy {
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--oyster);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  opacity: 0.2;
  transform: scale(0.95);
  will-change: transform, opacity;
}
.philosophy-inner .label { display: block; margin-bottom: 36px; }
.philosophy-h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.3;
  color: var(--jungle);
  margin-bottom: 48px;
  font-weight: 300;
}
.philosophy-h2 em { color: var(--gold); font-weight: 400; font-style: italic; }
.philosophy-body {
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.philosophy-italic {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EDITORIAL WEDDING GALLERY — HORIZONTAL CAROUSEL
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.gallery-editorial {
  padding: clamp(72px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  background: var(--oyster);
  overflow: hidden;
}

.gallery-editorial-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(44px, 6vw, 68px);
  padding: 0 clamp(20px, 5vw, 48px);
}
.gallery-editorial-head .label { display: block; margin-bottom: 24px; }

/* â”€â”€ Stage: the visible viewport window â”€â”€ */
.gallery-stage {
  position: relative;
  overflow: hidden;
  padding-left: clamp(14px, 2.5vw, 40px);
}

/* Soft fade on right edge to hint at more content */
.gallery-stage::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: clamp(60px, 8vw, 120px);
  background: linear-gradient(to right, transparent, rgba(249,248,246,0.85));
  pointer-events: none;
  z-index: 2;
}

/* â”€â”€ Track: the scrollable strip â”€â”€ */
.gallery-track {
  display: flex;
  gap: clamp(8px, 1vw, 14px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding-right: clamp(80px, 10vw, 160px);
  will-change: scroll-position;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

/* â”€â”€ Items â”€â”€ */
.gallery-item {
  flex: 0 0 auto;
  height: clamp(300px, 38vw, 500px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(148deg, var(--sand) 0%, var(--sand-dark) 100%);
}
.gallery-item:nth-child(3n)   { background: linear-gradient(148deg, #DDD7C8 0%, #CBC1AC 100%); }
.gallery-item:nth-child(3n+2) { background: linear-gradient(148deg, var(--sand-dark) 0%, #C8BDA8 100%); }

/* Width classes */
.gallery-item.g-wide   { width: clamp(380px, 46vw, 620px); }
.gallery-item.g-narrow { width: clamp(230px, 25vw, 330px); }
.gallery-item.g-medium { width: clamp(300px, 34vw, 450px); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.8s var(--ease);
  will-change: transform;
  pointer-events: none;
  -webkit-user-drag: none;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 37, 0);
  transition: background 0.7s var(--ease);
  pointer-events: none;
  z-index: 1;
}

.gallery-item:hover img       { transform: scale(1.055); }
.gallery-item:hover .gallery-overlay { background: rgba(26, 46, 37, 0.1); }

/* â”€â”€ Controls row â”€â”€ */
.gallery-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(18px, 2.8vw, 30px) clamp(14px, 2.5vw, 40px) 0;
  max-width: 1440px;
  margin: 0 auto;
  gap: 24px;
  min-height: 76px;
}

/* Progress bar */
.gallery-progress-wrap {
  position: absolute;
  top: calc(100% - 23px);
  left: 50%;
  z-index: 3;
  width: min(440px, 44vw);
  height: 2px;
  background: rgba(184, 150, 12, 0.2);
  overflow: hidden;
  transform: translate(-50%, -50%);
}
.gallery-progress-bar {
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.12s linear;
}

/* Nav buttons */
.gallery-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.gallery-nav-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184, 150, 12, 0.45);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.5s var(--ease), color 0.5s var(--ease), background 0.5s var(--ease);
  background: transparent;
  position: relative;
  overflow: hidden;
}
.gallery-nav-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.gallery-nav-btn svg {
  position: relative;
  z-index: 1;
  transition: color 0.5s var(--ease);
  flex-shrink: 0;
}
.gallery-nav-btn:hover { border-color: var(--gold); }
.gallery-nav-btn:hover::before { transform: scaleX(1); }
.gallery-nav-btn:hover svg { color: var(--jungle); }
.gallery-nav-btn:disabled { opacity: 0.25; pointer-events: none; }

/* Gallery CTA */
.gallery-cta {
  text-align: center;
  margin-top: clamp(44px, 5.5vw, 72px);
  padding: 0 24px;
}

/* â”€â”€ Mobile â”€â”€ */
@media (max-width: 580px) {
  .gallery-item          { height: clamp(240px, 68vw, 360px); }
  .gallery-item.g-wide   { width: clamp(300px, 82vw, 420px); }
  .gallery-item.g-narrow { width: clamp(200px, 58vw, 290px); }
  .gallery-item.g-medium { width: clamp(250px, 70vw, 340px); }
  .gallery-progress-wrap { display: none; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   B.2 · LOCAL EXPERTISE (Refactored Flex Layout)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.local-expertise {
  background: var(--oyster);
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 5vw, 60px) 0;
}
.local-expertise-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 48px);
  gap: clamp(40px, 5vw, 60px);
}

.expertise-image-wrap {
  flex: 0 0 52%;
  width: 52%;
  position: relative;
  will-change: transform;
}

@media (min-width: 981px) {
  .js-ready .expertise-image-wrap {
    opacity: 0;
  }
}

.expertise-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-image: url('../images/team/vdw-team.webp');
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
/* Localized scrim only at the foot of the image so the white caption reads
   clearly without darkening the photo overall. */
.expertise-image::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(15, 28, 22, 0) 0%, rgba(15, 28, 22, 0.58) 100%);
  pointer-events: none;
  z-index: 1;
}
.expertise-image-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  color: var(--oyster);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.45);
}

.expertise-image-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 3vw, 34px);
}

.expertise-image-action .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 190px;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(244, 239, 228, 0.48));
  box-shadow: 0 18px 46px rgba(15, 28, 22, 0.06);
  animation: vdwCtaPulse 3.8s ease-in-out infinite;
}

.expertise-image-action .btn::after,
.home-section-actions .btn::after {
  content: '';
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, 0.54) 50%, transparent 58%);
  transform: translateX(-60%) rotate(8deg);
  transition: transform 0.85s var(--ease);
  pointer-events: none;
}

.expertise-image-action .btn:hover {
  box-shadow: 0 24px 64px rgba(184, 150, 12, 0.16);
  animation-play-state: paused;
}

.expertise-image-action .btn:hover::after,
.home-section-actions .btn:hover::after {
  transform: translateX(60%) rotate(8deg);
}

.expertise-content {
  flex: 1;
  padding: 0;
}
.expertise-content .section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  color: var(--jungle);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.expertise-content .section-lede {
  font-size: clamp(13px, 1.4vw, 14px);
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.expertise-pillars {
  border-top: 1px solid rgba(184, 150, 12, 0.2);
}
.expertise-pillar {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(184, 150, 12, 0.2);
  align-items: start;
}
.expertise-pillar .pillar-num {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  font-style: italic;
}
/* The expertise-core cards reuse the class name `.pillar-body` with a
   hidden-until-hover style (max-height:0; opacity:0). That bare rule was
   leaking onto these local-expertise pillars and collapsing the text. Re-assert
   the visible state here (higher specificity wins). */
.expertise-pillar .pillar-body {
  max-height: none;
  overflow: visible;
  opacity: 1;
  margin-bottom: 0;
}
.expertise-pillar .pillar-body h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--jungle);
  margin-bottom: 0.5rem;
}
.expertise-pillar .pillar-body p {
  font-size: 13px;
  color: #56564A; /* slightly darker than --muted for stronger contrast on oyster */
  line-height: 1.8;
}

@media (max-width: 980px) {
  .local-expertise { min-height: auto; }
  .local-expertise-container {
    flex-direction: column;
    padding: clamp(60px, 10vw, 80px) clamp(20px, 5vw, 36px);
    gap: 48px;
  }
  .expertise-image-wrap { width: 100%; flex: none; }
  .expertise-image { aspect-ratio: 4 / 3; }
  .expertise-image-action { justify-content: center; }
  .expertise-content { width: 100%; flex: none; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   C · WEDDING EXPERTISE · EDITORIAL VISUAL CARDS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.expertise-core {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--sand);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}
@media (max-width: 980px) { .pillars-grid { grid-template-columns: 1fr; } }

.home-section-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 5vw, 62px);
}
.home-section-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 310px);
  text-align: center;
  box-shadow: 0 18px 54px rgba(15, 28, 22, 0.08);
  animation: vdwCtaPulse 4.2s ease-in-out infinite;
}
.home-section-actions--dark .btn {
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(212, 174, 48, 0.12);
}
.home-section-actions .btn:hover {
  animation-play-state: paused;
  transform: translateY(-4px);
}

@keyframes vdwCtaPulse {
  0%, 100% {
    box-shadow: 0 18px 46px rgba(15, 28, 22, 0.06), 0 0 0 0 rgba(184, 150, 12, 0);
  }
  45% {
    box-shadow: 0 24px 64px rgba(184, 150, 12, 0.16), 0 0 0 8px rgba(184, 150, 12, 0.05);
  }
}

/* Visual card shell */
.pillar {
  position: relative;
  overflow: hidden;
  background: var(--jungle);
  display: flex;
  flex-direction: column;
  min-height: clamp(520px, 64vw, 720px);
  text-decoration: none;
  color: var(--oyster);
}
@media (max-width: 980px) {
  .pillar { min-height: clamp(400px, 80vw, 560px); }
}

/* Background image layer */
.pillar-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.6s var(--ease);
  will-change: transform;
  z-index: 0;
}
.pillar:hover .pillar-bg { transform: scale(1.07); }

/* Cinematic gradient overlay — readable yet immersive */
.pillar-veil {
  position: absolute;
  inset: 0;
  /* Two layers: a localized scrim at the TOP so the gold eyebrow stays readable
     over bright images, plus the original immersive bottom gradient. */
  background:
    linear-gradient(180deg,
      rgba(15, 28, 22, 0.55) 0%,
      rgba(15, 28, 22, 0) 26%),
    linear-gradient(180deg,
      rgba(15, 28, 22, 0.22) 0%,
      rgba(15, 28, 22, 0.48) 42%,
      rgba(15, 28, 22, 0.88) 100%);
  transition: background 0.8s var(--ease);
  z-index: 1;
}
.pillar:hover .pillar-veil {
  background:
    linear-gradient(180deg,
      rgba(15, 28, 22, 0.6) 0%,
      rgba(15, 28, 22, 0) 28%),
    linear-gradient(180deg,
      rgba(15, 28, 22, 0.30) 0%,
      rgba(15, 28, 22, 0.58) 40%,
      rgba(15, 28, 22, 0.94) 100%);
}

/* Gold top-line reveal on hover */
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width 0.9s var(--ease);
  z-index: 3;
}
.pillar:hover::before { width: 100%; }

/* Content layer */
.pillar-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(32px, 4vw, 52px) clamp(28px, 3.5vw, 44px);
}

.pillar-eyebrow {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: auto; /* push content down */
  padding-bottom: clamp(120px, 20vw, 200px); /* spacer so text sits near bottom */
  opacity: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55), 0 0 2px rgba(0, 0, 0, 0.4);
}

.pillar-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  color: var(--oyster);
  margin-bottom: clamp(14px, 2vw, 20px);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.pillar-body {
  font-size: clamp(12px, 1.3vw, 13px);
  line-height: 1.85;
  color: rgba(249, 248, 246, 0.72);
  margin-bottom: clamp(24px, 3vw, 36px);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.8s var(--ease), opacity 0.6s var(--ease) 0.1s;
}
.pillar:hover .pillar-body {
  max-height: 200px;
  opacity: 1;
}

.pillar-cta {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(212, 174, 48, 0.5);
  align-self: flex-start;
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease) 0.2s, transform 0.5s var(--ease) 0.2s,
              letter-spacing 0.4s var(--ease), border-color 0.4s var(--ease);
}
.pillar:hover .pillar-cta {
  opacity: 1;
  transform: translateY(0);
}
.pillar-cta:hover { border-bottom-color: var(--gold-light); letter-spacing: 0.3em; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   D · ROMANCE SERVICES — IMMERSIVE IMAGE CARDS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.romance {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--jungle-deep);
  color: var(--oyster);
  position: relative;
  overflow: hidden;
}
.romance::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(184, 150, 12, 0.06), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(36, 61, 49, 0.7), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.romance .container { position: relative; z-index: 2; }
.romance .section-h2 { color: var(--oyster); }
.romance .section-h2 em { color: var(--gold-light); }
.romance .section-sub { color: rgba(249, 248, 246, 0.6); }

/* 4-col grid — each card is an image card */
.romance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.2vw, 16px);
}
@media (max-width: 1080px) { .romance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .romance-grid { grid-template-columns: 1fr 1fr; gap: 8px; } }

/* Card shell */
.romance-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--oyster);
  display: flex;
  flex-direction: column;
  min-height: clamp(380px, 44vw, 560px);
  background: var(--jungle-mid);
}
@media (max-width: 1080px) {
  .romance-card { min-height: clamp(340px, 52vw, 480px); }
}
@media (max-width: 560px) {
  .romance-card { min-height: clamp(260px, 72vw, 360px); }
}

/* Background image */
.romance-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.6s var(--ease);
  will-change: transform;
  z-index: 0;
}
.romance-card:hover .romance-bg { transform: scale(1.08); }

/* Gradient veil */
.romance-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 20, 15, 0.15) 0%,
    rgba(10, 20, 15, 0.52) 50%,
    rgba(10, 20, 15, 0.92) 100%);
  transition: background 0.7s var(--ease);
  z-index: 1;
}
.romance-card:hover .romance-veil {
  background: linear-gradient(180deg,
    rgba(10, 20, 15, 0.28) 0%,
    rgba(10, 20, 15, 0.62) 45%,
    rgba(10, 20, 15, 0.96) 100%);
}

/* Gold bottom-line reveal */
.romance-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease);
  z-index: 3;
}
.romance-card:hover::after { transform: scaleX(1); }

/* Content */
.romance-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
}

.romance-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: auto;
  font-style: italic;
  line-height: 1;
  padding-bottom: clamp(80px, 14vw, 140px);
  opacity: 0.85;
}
.romance-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  color: var(--oyster);
  margin-bottom: clamp(8px, 1vw, 12px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.romance-tag {
  font-family: var(--serif);
  font-size: clamp(12px, 1.3vw, 14px);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: clamp(10px, 1.5vw, 16px);
}
.romance-body {
  font-size: 11px;
  line-height: 1.8;
  color: rgba(249, 248, 246, 0.6);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s var(--ease), opacity 0.5s var(--ease) 0.1s;
}
.romance-card:hover .romance-body {
  max-height: 120px;
  opacity: 1;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEW · DESTINATIONS SHOWCASE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.destinations {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--oyster);
  overflow: hidden;
}
.destinations .section-h2 em { color: var(--gold); }

/* Asymmetric editorial grid: big + 2 rows of 3 */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: clamp(8px, 1vw, 14px);
  padding: 0 clamp(20px, 4vw, 48px);
  max-width: 1440px;
  margin: 0 auto;
}

/* Spanning helpers */
.dest-card.d-wide  { grid-column: span 2; }
.dest-card.d-tall  { grid-row: span 2; }

/* Card shell */
.dest-card {
  position: relative;
  overflow: hidden;
  background: var(--jungle-mid);
  text-decoration: none;
  display: block;
  min-height: clamp(220px, 24vw, 340px);
}
.dest-card.d-wide  { min-height: clamp(240px, 26vw, 360px); }
.dest-card.d-tall  { min-height: clamp(460px, 50vw, 700px); }
@media (max-width: 900px) {
  .dest-card, .dest-card.d-wide, .dest-card.d-tall { min-height: clamp(180px, 38vw, 300px); }
}

/* Background image */
.dest-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.8s var(--ease);
  will-change: transform;
  z-index: 0;
}
.dest-card:hover .dest-bg { transform: scale(1.07); }

/* Persistent soft gradient — keeps logo visible */
.dest-veil {
  position: absolute;
  inset: 0;
  /* Deeper foot so the gold destination name stays legible over bright
     skies/beaches, while the top of the image stays clear and vibrant. */
  background: linear-gradient(180deg,
    rgba(15, 28, 22, 0.10) 0%,
    rgba(15, 28, 22, 0.12) 38%,
    rgba(15, 28, 22, 0.82) 100%);
  transition: background 0.8s var(--ease);
  z-index: 1;
}
.dest-card:hover .dest-veil {
  background: linear-gradient(180deg,
    rgba(15, 28, 22, 0.38) 0%,
    rgba(15, 28, 22, 0.42) 40%,
    rgba(15, 28, 22, 0.90) 100%);
}

/* Gold line on hover */
.dest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease);
  z-index: 3;
}
.dest-card:hover::before { transform: scaleX(1); }

/* Hover copy panel */
.dest-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(16px, 2.5vw, 28px) clamp(16px, 2.5vw, 28px);
  transform: translateY(0);
}

.dest-name {
  font-family: var(--sans);
  font-size: clamp(8px, 0.85vw, 10px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
  opacity: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.4);
}

.dest-copy {
  font-family: var(--serif);
  font-size: clamp(13px, 1.5vw, 17px);
  font-style: italic;
  color: var(--oyster);
  line-height: 1.45;
  font-weight: 300;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease) 0.08s, transform 0.6s var(--ease) 0.08s;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.dest-card:hover .dest-copy {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive grid collapse */
@media (max-width: 900px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-card.d-wide { grid-column: span 2; }
  .dest-card.d-tall { grid-row: span 1; }
}
@media (max-width: 520px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .dest-card.d-wide { grid-column: span 2; }
  .dest-card, .dest-card.d-wide { min-height: clamp(160px, 48vw, 260px); }
  .dest-name { font-size: 7px; letter-spacing: 0.2em; }
  .dest-copy { font-size: 12px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   E · REAL LEGACIES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.legacies { padding: clamp(80px, 12vw, 160px) 0; background: var(--oyster); }
.legacies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 1080px) { .legacies-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .legacies-grid { grid-template-columns: 1fr; }
}

.legacy-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--oyster);
  background: var(--jungle-mid);
  display: block;
  aspect-ratio: 3/4;
}
.legacy-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--jungle-mid);
  transition: transform 1.6s var(--ease);
}
.legacy-card:hover .legacy-img { transform: scale(1.08); }

.legacy-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 46, 37, 0) 30%, rgba(26, 46, 37, 0.45) 55%, rgba(26, 46, 37, 0.92) 100%);
  transition: background 0.6s var(--ease);
}
.legacy-card:hover::after {
  background: linear-gradient(180deg, rgba(26, 46, 37, 0.2) 0%, rgba(26, 46, 37, 0.6) 40%, rgba(26, 46, 37, 0.96) 100%);
}

.legacy-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(24px, 3vw, 36px);
  z-index: 2;
  transform: translateY(56px);
  transition: transform 0.7s var(--ease);
}
.legacy-card:hover .legacy-overlay { transform: translateY(0); }

.legacy-meta {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 14px;
}
.legacy-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.1rem);
  font-weight: 400;
  color: var(--oyster);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.legacy-quote {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 16px;
  line-height: 1.55;
  opacity: 0;
  transition: opacity 0.6s var(--ease) 0.15s;
}
.legacy-caption {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(249, 248, 246, 0.78);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease) 0.25s, transform 0.7s var(--ease) 0.25s;
}
.legacy-card:hover .legacy-quote { opacity: 1; }
.legacy-card:hover .legacy-caption { opacity: 1; transform: translateY(0); }

.legacies-footer { text-align: center; margin-top: clamp(52px, 7vw, 88px); }
.text-link {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  transition: all 0.4s var(--ease);
}
.text-link:hover { color: var(--jungle); border-bottom-color: var(--jungle); letter-spacing: 0.28em; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   F · CTA SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-section {
  position: relative;
  padding: clamp(100px, 15vw, 200px) 0;
  background: var(--jungle);
  color: var(--oyster);
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(184, 150, 12, 0.08), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(47, 80, 64, 0.5), transparent 55%);
}
.cta-bg::before, .cta-bg::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  background: rgba(184, 150, 12, 0.6);
  transform: translateX(-50%);
}
.cta-bg::before { top: 0; height: 80px; }
.cta-bg::after { bottom: 0; height: 80px; }

.cta-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
.cta-content .label { display: block; margin-bottom: 36px; color: var(--gold-light); }
.cta-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 44px;
  color: var(--oyster);
}
.cta-h2 em { color: var(--gold-light); font-style: italic; font-weight: 300; }
.cta-body {
  font-size: clamp(13px, 1.5vw, 14.5px);
  line-height: 1.9;
  color: rgba(249, 248, 246, 0.72);
  max-width: 580px;
  margin: 0 auto 52px;
}
.cta-trust { margin-top: 36px; font-family: var(--serif); font-size: 14px; font-style: italic; color: var(--gold); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
  background: var(--jungle-deep);
  color: rgba(249, 248, 246, 0.7);
  padding: clamp(72px, 10vw, 110px) 0 36px;
  border-top: 1px solid rgba(184, 150, 12, 0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(150px, 0.75fr) minmax(280px, 1.35fr) minmax(240px, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  margin-bottom: clamp(52px, 7vw, 88px);
}
@media (max-width: 1180px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 44px; } }

.footer-logo { height: 52px; width: auto; margin-bottom: 28px; }
.footer-tag { font-family: var(--serif); font-size: 16px; color: var(--gold-light); font-style: italic; margin-bottom: 22px; line-height: 1.5; }
.footer-parent { font-size: 11px; color: rgba(249, 248, 246, 0.5); letter-spacing: 0.04em; line-height: 1.7; }
.footer-parent a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold); transition: color 0.4s ease; }
.footer-parent a:hover { color: var(--gold-light); }

.footer-heading { font-family: var(--sans); font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 28px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul a { font-family: var(--sans); font-size: 12px; color: rgba(249, 248, 246, 0.62); text-decoration: none; transition: color 0.4s ease; letter-spacing: 0.02em; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-destination-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 640px) {
  .footer-destination-lists {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.lum360-credit {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 150, 12, 0.45);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.lum360-credit:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.footer-newsletter-text { font-family: var(--serif); font-size: 14px; color: rgba(249, 248, 246, 0.55); font-style: italic; margin-bottom: 22px; line-height: 1.55; }
.footer-newsletter { display: flex; align-items: center; border-bottom: 1px solid rgba(184, 150, 12, 0.4); padding-bottom: 10px; margin-bottom: 32px; position: relative; }
.footer-newsletter input { flex: 1; background: transparent; border: none; outline: none; color: var(--oyster); font-family: var(--sans); font-size: 12px; padding: 10px 0; }
.footer-newsletter input::placeholder { color: rgba(249, 248, 246, 0.28); }
.footer-newsletter button { background: transparent; color: var(--gold); font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; padding: 10px 0 10px 20px; transition: color 0.4s ease; }
.footer-newsletter button:hover { color: var(--gold-light); }
.newsletter-success { display: none; position: absolute; top: 100%; left: 0; font-size: 11px; color: var(--gold-light); font-family: var(--serif); font-style: italic; margin-top: 10px; }
.newsletter-success.is-shown { display: block; }

.footer-social { display: flex; gap: 14px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(184, 150, 12, 0.32); border-radius: 50%; color: var(--gold); font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; transition: all 0.5s var(--ease); }
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-3px); }

.footer-bottom { border-top: 1px solid rgba(184, 150, 12, 0.12); padding-top: 36px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 10px; letter-spacing: 0.08em; color: rgba(249, 248, 246, 0.4); }
.footer-bottom a { color: inherit; text-decoration: none; transition: color 0.4s ease; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}
.footer-legal a {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   REDUCED MOTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .char { opacity: 1 !important; transform: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LIVE WEATHER WIDGET (weatherwidget.io)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.dest-weather {
  width: 982px;
  max-width: 100%; /* never overflow the content column */
  margin: 0 0 36px;
}
.dest-weather-label {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
/* Before the script swaps the anchor for its iframe, keep the placeholder link
   from looking like raw body text. */
.dest-weather a.weatherwidget-io {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.dest-weather .weatherwidget-io { line-height: 0; }
