/* ==========================================================================
   Atelier 2026 — cinematic travel UI
   Functional JS class names are preserved. Visual language is new.
   Brand: navy #0a2f5e · gold #d49c3a
   ========================================================================== */

:root {
  --crimson: #0a2f5e;
  --crimson-deep: #061f40;
  --azure: #d49c3a;
  --azure-mist: #f0d48a;
  --night: #061f40;
  --ink: #1a2740;
  --paper: #f4f7fb;
  --snow: rgba(255, 255, 255, 0.18);
  --line: rgba(26, 39, 64, 0.12);
  --glass: rgba(255, 255, 255, 0.12);
  --gold: #d49c3a;
  --emerald: #0a2f5e;
  --navy: #061f40;
  --alabaster: #f4f7fb;
  --ivory: #ffffff;
  --charcoal: #1a2740;
}

html { scroll-behavior: smooth; }

body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

h1, h2, h3, .font-serif {
  font-family: "Playfair Display", Georgia, serif;
  font-optical-sizing: auto;
  letter-spacing: -0.03em;
}

.shell {
  width: min(100% - 1.5rem, 88rem);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .shell { width: min(100% - 3rem, 92rem); }
}

.display {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
}

.kicker {
  font-size: clamp(0.65rem, 0.8vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--azure);
}

/* Glass */
.glass,
.contact-form-card,
.contact-aside-card,
.plan-tour-form-card,
.pkg-quote-card,
.pkg-sidebar-card,
.auth-card {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px -36px rgba(6, 31, 64, 0.45);
}

.pkg-quote-card,
.pkg-sidebar-card,
.plan-tour-form-card,
.plan-tour-form-card--sticky,
.contact-form-card,
.contact-aside-card,
.auth-card {
  background: rgba(255, 255, 255, 0.58) !important;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 30px 70px -40px rgba(6, 31, 64, 0.45);
}

.pkg-quote-card input,
.pkg-quote-card select,
.pkg-quote-card textarea,
.pkg-sidebar-card input,
.pkg-sidebar-card select,
.plan-tour-form-card input,
.plan-tour-form-card select,
.plan-tour-form-card textarea,
.contact-input,
.auth-input {
  background: rgba(255, 255, 255, 0.72) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(26, 39, 64, 0.12) !important;
}

/* Magnetic / shine buttons */
.btn-hero-plan,
.btn-hero-contact,
.btn-gradient,
.site-nav-btn--primary,
.site-footer-btn--primary,
.contact-submit,
.plan-tour-submit,
.auth-btn-primary,
.pkg-quote-submit,
.pkg-sidebar-cta,
.pkg-detail-booking-submit,
.mobile-cta-bar__primary,
.shine {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, background 0.3s ease, color 0.3s ease;
}

.btn-hero-plan::after,
.btn-gradient::after,
.site-nav-btn--primary::after,
.contact-submit::after,
.plan-tour-submit::after,
.shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.4) 48%, transparent 75%);
  transform: translateX(-140%);
  transition: transform 0.7s ease;
  z-index: 1;
  pointer-events: none;
}

.btn-hero-plan:hover,
.btn-gradient:hover,
.site-nav-btn--primary:hover,
.shine:hover {
  transform: translateY(-4px) scale(1.03);
}

.btn-hero-plan:hover::after,
.btn-gradient:hover::after,
.site-nav-btn--primary:hover::after,
.contact-submit:hover::after,
.plan-tour-submit:hover::after,
.shine:hover::after {
  transform: translateX(140%);
}

/* Header — glassy desktop, off-canvas mobile */
.site-header,
.site-header--modern {
  background: transparent;
  box-shadow: none;
}

.site-topbar,
.site-header--modern .site-topbar,
.page-home .site-topbar,
.page-home .site-header--modern .site-topbar,
.site-header--inner .site-topbar,
.site-header--inner.site-header--modern .site-topbar {
  background: #0a2f5e !important;
  color: #ffffff;
  border: 0;
  border-bottom: 1px solid rgba(212, 156, 58, 0.28);
}

.site-topbar-inner { min-height: 2.15rem; flex-wrap: nowrap; }

.site-topbar-link,
.site-topbar-badge {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-topbar-country-select {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(212, 156, 58, 0.35) !important;
  border-radius: 999px !important;
  min-height: 1.7rem;
  padding: 0 0.7rem !important;
  font-size: 0.68rem !important;
}
.site-topbar-country-select option { color: #061f40; }

.site-navbar,
.site-header--modern .site-navbar--modern,
.site-header--inner .site-navbar {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid rgba(212, 156, 58, 0.22) !important;
  box-shadow: 0 18px 40px -28px rgba(6, 31, 64, 0.35);
}

.page-home .site-header--home .site-navbar,
.page-home .site-header--home .site-navbar--modern {
  background: rgba(6, 31, 64, 0.38) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.navbar-scrolled,
.site-header--modern .navbar-scrolled.site-navbar--modern,
.page-home .site-header--home .navbar-scrolled {
  background: rgba(255, 255, 255, 0.88) !important;
  border-bottom: 1px solid rgba(212, 156, 58, 0.28) !important;
}

.site-header--modern .site-nav-pill,
.site-header--modern .site-nav-pill.site-nav-desktop {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.site-nav-list .nav-link,
.site-header--modern .site-nav-list .nav-link,
.navbar-scrolled .site-nav-list .nav-link,
.navbar-solid .site-nav-list .nav-link,
.page-home .site-header--home .nav-link,
.page-home .site-header--home .navbar-scrolled .nav-link {
  font-family: Outfit, sans-serif;
  font-size: 0.76rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  font-weight: 500;
  color: #f4efe4 !important;
  background: transparent !important;
  padding: 0.5rem 0.72rem !important;
  border-radius: 0 !important;
}

.site-nav-list .nav-link:hover,
.site-nav-list .nav-link.active,
.page-home .site-header--home .nav-link:hover,
.page-home .site-header--home .nav-link.active,
.navbar-scrolled .site-nav-list .nav-link:hover,
.navbar-scrolled .site-nav-list .nav-link.active {
  color: #d49c3a !important;
  background: transparent !important;
}

.site-nav-list .nav-link::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.15rem;
  height: 1px;
  border-radius: 0;
  background: #d49c3a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  width: auto;
}
.site-nav-list .nav-link:hover::after,
.site-nav-list .nav-link.active::after { transform: scaleX(1); }

.site-nav-btn--primary {
  background: #0a2f5e !important;
  color: #ffffff !important;
  border: 1px solid #d49c3a !important;
  border-radius: 0.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.66rem;
  min-height: 2.55rem;
  padding: 0.55rem 1.15rem !important;
}
.site-nav-btn--primary:hover { background: #061f40 !important; }

.site-nav-btn--icon {
  color: #061f40 !important;
  border-color: rgba(212, 156, 58, 0.45) !important;
  background: rgba(255, 255, 255, 0.7) !important;
  border-radius: 0.2rem;
}

.page-home .site-header--home .site-nav-toggle,
.site-nav-toggle,
.navbar-scrolled .site-nav-toggle {
  color: #061f40 !important;
  border: 1px solid rgba(212, 156, 58, 0.45) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  border-radius: 0.2rem;
}

.page-home .site-header--home .site-nav-toggle {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}
.page-home .site-header--home .navbar-scrolled .site-nav-toggle {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(212, 156, 58, 0.45) !important;
}

.site-nav-toggle-bar,
.page-home .site-header--home .site-nav-toggle-bar,
.navbar-scrolled .site-nav-toggle-bar { background: #061f40 !important; }
.page-home .site-header--home .site-nav-toggle-bar { background: #ffffff !important; }
.page-home .site-header--home .navbar-scrolled .site-nav-toggle-bar { background: #061f40 !important; }

.nav-dropdown-menu {
  border-radius: 0.35rem;
  border: 1px solid rgba(212, 156, 58, 0.28);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 60px -32px rgba(6, 31, 64, 0.4);
}
.nav-dropdown-menu a { color: #061f40 !important; }
.nav-dropdown-menu a:hover { color: #0a2f5e !important; }

.site-navbar-mobile-cta--plan {
  background: #0a2f5e !important;
  color: #ffffff !important;
  border-radius: 0.2rem;
  font-size: 0.68rem;
}

.site-header--modern .site-logo-img { height: 40px; max-width: 13rem; }
@media (min-width: 1280px) {
  .site-header--modern .site-logo-img { height: 42px; max-width: 13rem; }
}

/* Off-canvas drawer */
.site-nav-mobile-panel,
.mobile-menu,
#mobile-menu {
  background: linear-gradient(165deg, #061f40 0%, #0a2f5e 120%) !important;
  color: #ffffff !important;
  border-left: 1px solid rgba(212, 156, 58, 0.28);
  box-shadow: -24px 0 60px -20px rgba(6, 31, 64, 0.55);
}

.mobile-menu-header__title,
.mobile-nav-link,
.mobile-nav-expand,
.mobile-menu-header,
.mobile-menu-close {
  color: #ffffff !important;
}

.mobile-nav-link:hover,
.mobile-nav-link-active,
.mobile-nav-expand:hover {
  color: #d49c3a !important;
}

.mobile-menu-quick-link {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(212, 156, 58, 0.25);
}

/* Dark drawer: keep header, close, and accordion labels readable */
.site-header--modern .mobile-menu-header {
  background: transparent !important;
  border-bottom-color: rgba(212, 156, 58, 0.22) !important;
}

.site-header--modern .mobile-menu-header__title {
  color: #ffffff !important;
}

.site-header--modern .mobile-menu-close {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
}

.site-header--modern .mobile-menu-close:hover {
  background: rgba(212, 156, 58, 0.18) !important;
  border-color: #d49c3a !important;
  color: #d49c3a !important;
}

.site-header--modern .mobile-menu-cta--primary {
  border-bottom-color: rgba(212, 156, 58, 0.22) !important;
}

.site-header--modern .mobile-nav-group {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.site-header--modern .mobile-nav-group .mobile-nav-expand,
.site-header--modern .mobile-nav-group .mobile-nav-expand span {
  color: #ffffff !important;
}

.site-header--modern .mobile-nav-group .mobile-nav-expand:hover,
.site-header--modern .mobile-nav-group .mobile-nav-expand.open {
  color: #d49c3a !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.site-header--modern .mobile-nav-group .mobile-nav-expand.open span {
  color: #d49c3a !important;
}

.site-header--modern .mobile-nav-group .mobile-nav-expand .mobile-nav-chevron {
  color: rgba(255, 255, 255, 0.72) !important;
}

.site-header--modern .mobile-nav-submenu {
  border-left-color: rgba(212, 156, 58, 0.28);
}

.site-header--modern .mobile-nav-submenu a {
  color: rgba(255, 255, 255, 0.92) !important;
}

.site-header--modern .mobile-nav-submenu a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #d49c3a !important;
}

/* Beat .navbar-scrolled #mobile-menu a { color: #3d4f66 } on the navy drawer */
html body .site-header.site-header--modern #mobile-menu .mobile-nav-link,
html body .site-header.site-header--modern #main-navbar.navbar-scrolled #mobile-menu .mobile-nav-link,
html body .site-header.site-header--modern #main-navbar.navbar-solid #mobile-menu .mobile-nav-link {
  color: #ffffff !important;
}

html body .site-header.site-header--modern #mobile-menu .mobile-nav-link:hover {
  color: #d49c3a !important;
}

html body .site-header.site-header--modern #mobile-menu .mobile-nav-link-active,
html body .site-header.site-header--modern #main-navbar.navbar-scrolled #mobile-menu .mobile-nav-link-active,
html body .site-header.site-header--modern #main-navbar.navbar-solid #mobile-menu .mobile-nav-link-active,
html body .site-header.site-header--modern #mobile-menu .mobile-nav-link-active:hover {
  color: #061f40 !important;
  background: #f8efd8 !important;
}

html body .site-header.site-header--modern #mobile-menu .mobile-nav-submenu a,
html body .site-header.site-header--modern #main-navbar.navbar-scrolled #mobile-menu .mobile-nav-submenu a,
html body .site-header.site-header--modern #main-navbar.navbar-solid #mobile-menu .mobile-nav-submenu a {
  color: #f4f7fb !important;
}

html body .site-header.site-header--modern #mobile-menu .mobile-nav-submenu a:hover,
html body .site-header.site-header--modern #main-navbar.navbar-scrolled #mobile-menu .mobile-nav-submenu a:hover {
  color: #d49c3a !important;
}

html body .site-header.site-header--modern #mobile-menu .nav-dropdown-hint,
html body .site-header.site-header--modern #main-navbar.navbar-scrolled #mobile-menu .nav-dropdown-hint {
  color: rgba(244, 247, 251, 0.72) !important;
}

/* Hero */
.page-home .hero-home--centered {
  min-height: min(78svh, 38rem);
}

.page-home .hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 31, 64, 0.62) 0%, rgba(6, 31, 64, 0.28) 48%, rgba(6, 31, 64, 0.12) 100%),
    linear-gradient(180deg, rgba(6, 31, 64, 0.18) 0%, rgba(6, 31, 64, 0.08) 40%, rgba(6, 31, 64, 0.55) 100%);
}

.hero-watermark { display: none; }

.page-home .hero-home-inner {
  align-items: flex-start;
  text-align: left;
  max-width: 42rem;
  margin: 0 auto 0 0;
  width: min(100%, 88rem);
  padding-top: calc(var(--header-total-h) + 2rem);
  padding-bottom: 3.5rem;
}

.hero-heading {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  max-width: 14ch;
  margin-top: 0.85rem;
}

.hero-lead {
  margin: 0.85rem 0 0;
  max-width: 32rem;
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.hero-trust-badge {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  border-radius: 999px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.75rem;
}

.btn-hero-plan,
.btn-hero-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
}

.btn-hero-plan { background: var(--crimson); color: #fff; }
.btn-hero-plan:hover { background: var(--crimson-deep); }
.btn-hero-contact {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}
.btn-hero-contact:hover { background: #fff; color: var(--ink); }

.hero-carousel-arrow {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(26, 39, 64, 0.35);
  backdrop-filter: blur(10px);
  color: #fff;
}
.hero-carousel-arrow:hover { background: var(--crimson); border-color: var(--crimson); }

/* Light stats — not a dark overlay */
.stats-band {
  background: var(--paper);
  padding: 1.25rem 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.hero-stat,
.page-home .hero-stat {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.15rem;
  padding: 1.2rem 1.1rem 1.3rem;
  text-align: center;
  box-shadow: 0 16px 40px -30px rgba(6, 31, 64, 0.35);
}

.hero-stat-value,
.page-home .hero-stat-value {
  color: var(--crimson) !important;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1;
}

.hero-stat-label,
.page-home .hero-stat-label {
  margin-top: 0.45rem;
  color: rgba(26, 39, 64, 0.58) !important;
  font-size: 0.78rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}

@media (max-width: 639px) {
  .page-home .hero-home-inner {
    text-align: center;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 2.75rem;
  }
  .hero-heading { max-width: none; }
  .hero-lead { margin-inline: auto; }
  .hero-cta-row {
    flex-direction: column;
    width: 100%;
    max-width: 22rem;
  }
  .btn-hero-plan,
  .btn-hero-contact { width: 100%; }
  .page-home .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 31, 64, 0.22) 0%, rgba(6, 31, 64, 0.25) 40%, rgba(6, 31, 64, 0.72) 100%);
  }
}

/* Ticker */
.marquee,
.ticker {
  overflow: hidden;
  border: 0;
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 0.85rem 0;
  margin-top: 2rem;
}

.marquee-track,
.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: Outfit, sans-serif;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 39, 64, 0.55);
}

.marquee-track span,
.ticker-track span { white-space: nowrap; }

.marquee-track span::after,
.ticker-track span::after {
  content: " · ";
  color: var(--crimson);
  padding-left: 2.5rem;
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Why us — editorial, airy */
.why-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.why-editorial {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .why-editorial {
    grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: start;
  }
  .why-editorial__intro {
    position: sticky;
    top: calc(var(--header-total-h, 7.25rem) + 1.5rem);
  }
}

.why-section .title {
  font-size: clamp(1.65rem, 3vw, 2.25rem) !important;
  max-width: 14ch;
}

.why-editorial__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .why-editorial__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }
}

.why-choose-card {
  background: transparent !important;
  backdrop-filter: none !important;
  border: 0 !important;
  border-top: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 1.35rem 0 1.5rem !important;
  transition: transform 0.4s ease;
}

.why-choose-card:hover {
  transform: translateX(4px);
  background: transparent !important;
}

.why-choose-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  border: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--azure);
}

.why-choose-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.25;
  margin: 0.4rem 0 0;
  letter-spacing: -0.02em;
}

.why-choose-card p {
  margin: 0.45rem 0 0;
  color: rgba(26, 39, 64, 0.62);
  line-height: 1.65;
  font-size: 0.92rem;
}

/* WhatsApp — clear of mobile CTA bar */
.site-whatsapp-float {
  z-index: 40 !important;
  right: 0.85rem !important;
  bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px)) !important;
  width: 3.1rem !important;
  height: 3.1rem !important;
}

.site-whatsapp-float::before {
  animation: none;
}

@media (min-width: 1024px) {
  .site-whatsapp-float {
    right: 1.35rem !important;
    bottom: 1.5rem !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
  }
}

/* About */
.about-cinematic {
  display: grid;
  gap: 2rem;
}
@media (min-width: 960px) {
  .about-cinematic {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 0;
  }
  .about-cinematic .about-section-visual {
    transform: translateX(2rem);
    z-index: 1;
  }
  .about-cinematic .about-section-content {
    position: relative;
    z-index: 2;
    margin-left: -4rem;
    background: rgba(255,255,255,.58);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 1.75rem;
    padding: 3rem;
  }
}
.about-section-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 1.75rem;
}
.about-section-badge {
  right: 1.1rem;
  left: auto;
  bottom: 1.1rem;
  background: rgba(26, 39, 64,.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 1.15rem;
  color: #fff;
}
.about-section-badge-num {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.about-section-check { background: var(--azure); color: #fff; border-radius: 999px; }
.about-section-heading { font-family: "Playfair Display", serif; font-weight: 500; }
.about-section-link { color: var(--crimson); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; font-weight: 700; }

/* Horizontal rail */
.rail {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.85rem 0.15rem 1.5rem;
  scrollbar-width: thin;
}
.rail > .package-card {
  flex: 0 0 min(78vw, 18.5rem);
  scroll-snap-align: start;
}

/* Quotes */
.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.5;
  color: var(--crimson);
  opacity: 0.35;
}

/* Footer */
.site-footer,
.site-footer--modern,
.site-footer--lux { background: var(--night); color: #b7b3ad; }
.site-footer-cta,
.site-footer--modern .site-footer-cta {
  background: linear-gradient(135deg, var(--crimson-deep), #0a2f5e 55%, #0a2f5e);
  border: 0;
}
.site-footer-cta__title,
.site-footer--modern .site-footer-cta__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}
.site-footer-btn--primary {
  background: #fff;
  color: var(--crimson);
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.site-footer-trust { background: #0c1016; border: 0; }
.site-footer-col__title {
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-family: Outfit, sans-serif;
}
.site-footer-bottom { background: #05070a; }
.mobile-cta-bar { background: rgba(6, 31, 64,.92); border: 0; }
.mobile-cta-bar__primary {
  background: var(--crimson);
  color: #fff;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Inner heroes */
.page-header,
.packages-page-hero,
.plan-tour-hero,
.contact-hero,
.auth-page-hero,
.booking-page-hero,
.heritage-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(10, 47, 94,.28), transparent 40%),
    linear-gradient(180deg, #061f40, #061f40);
}
.heritage-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 31, 64,.15), rgba(6, 31, 64,.78)),
    linear-gradient(90deg, rgba(6, 31, 64,.55), transparent 70%);
}
.packages-page-hero__title,
.plan-tour-hero-title,
.contact-hero-title,
.booking-page-title,
.heritage-title,
.ed-title,
.title {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 600 !important;
  font-size: clamp(1.7rem, 3vw, 2.45rem) !important;
  line-height: 1.18 !important;
}
.packages-page-hero__eyebrow,
.heritage-kicker,
.plan-tour-hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--azure-mist) !important;
}

.packages-page-nav,
.sticky-jump {
  background: rgba(244,241,236,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.packages-page-nav__link.is-active,
.jump-chip.is-active,
.jump-chip:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
}
.jump-chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #5c5852;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.45rem 0.9rem;
}

.heritage-cta-band {
  background: var(--night);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
}
.heritage-cta-band h2 { color: #fff; }

.contact-input,
.plan-tour-input,
.auth-input,
.pkg-quote-control {
  border-radius: 0.9rem !important;
}
.contact-submit,
.plan-tour-submit,
.auth-btn-primary,
.pkg-quote-submit,
.pkg-sidebar-cta,
.pkg-detail-booking-submit {
  background: var(--crimson) !important;
  color: #fff !important;
  border-radius: 999px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem !important;
}

.faq-item {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
}

[data-gallery-filter].active,
[data-package-filter].active,
[data-dest-filter].active {
  background: var(--crimson) !important;
  color: #fff !important;
}

.section-eyebrow {
  font-family: Outfit, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--azure);
  font-weight: 600;
}
.section-eyebrow::before,
.section-eyebrow::after { display: none; }

.letters-bento {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 860px) {
  .letters-bento {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
  }
  .letters-bento > :first-child { grid-row: span 2; }
}

.journal-bento {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 860px) {
  .journal-bento { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 639px) {
  .about-cinematic .about-section-content {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }
  .page-home .hero-home-inner { text-align: center; }
}

/* -------------------------------------------------------------------------- */
/* Homepage atelier system                                                     */
/* -------------------------------------------------------------------------- */

.ed-wrap,
.shell {
  width: min(100% - 1.5rem, 88rem);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .ed-wrap,
  .shell { width: min(100% - 3rem, 92rem); }
}

.ed-display,
.display {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.atelier-section {
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
}

.atelier-section--flush { padding-top: 0; }

.atelier-section--rail {
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
}

.atelier-section--night {
  background: var(--night);
  color: #fff;
}

.atelier-intro { max-width: 36rem; margin-bottom: 1.5rem; }

.atelier-intro--row {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.atelier-copy {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(26, 39, 64, 0.68);
}

.atelier-copy strong { color: var(--crimson); font-weight: 600; }

.atelier-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.atelier-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--crimson);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
.atelier-text-link:hover { color: var(--azure); gap: 0.7rem; }

.btn-gradient,
.btn-ghost,
.btn-light,
.btn-ghost--light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-gradient {
  background: var(--crimson) !important;
  color: #fff !important;
  border: 0;
}

.btn-ghost {
  background: transparent;
  color: var(--crimson);
  border: 1px solid var(--crimson);
}
.btn-ghost:hover { background: var(--crimson); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--crimson);
}
.btn-light:hover { transform: translateY(-3px); }

.btn-ghost--light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}
.btn-ghost--light:hover { background: #fff; color: var(--ink); }

.about-section-image-wrap { position: relative; overflow: hidden; border-radius: 1.75rem; }

.about-section-badge { position: absolute; padding: 1rem 1.15rem; }

.about-section-lead {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.about-section-text {
  margin-top: 0.9rem;
  line-height: 1.75;
  color: rgba(26, 39, 64, 0.68);
}

.about-section-features {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
  list-style: none;
  padding: 0;
}
@media (min-width: 640px) {
  .about-section-features { grid-template-columns: 1fr 1fr; }
}

.about-section-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.about-section-check {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kicker--mist { color: var(--azure-mist) !important; }

.rail-bleed {
  padding-inline: max(1.25rem, calc(50vw - 46rem));
}

.rail {
  padding-bottom: 1.75rem;
  -webkit-overflow-scrolling: touch;
}

.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: rgba(10, 47, 94,.35); border-radius: 99px; }

.rail-empty {
  flex: 1;
  padding: 3rem 1.5rem;
  text-align: center;
  border: 1px dashed rgba(26, 39, 64,.18);
  border-radius: 1.5rem;
  background: rgba(255,255,255,.4);
}

.rail-empty a { color: var(--crimson); font-weight: 600; }

.home-pkg-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.home-pkg-cats__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(10, 47, 94, 0.18);
  background: #ffffff;
  color: #061f40;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-pkg-cats__chip span {
  min-width: 1.35rem;
  padding: 0.08rem 0.4rem;
  background: rgba(10, 47, 94, 0.1);
  color: #0a2f5e;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
}

.home-pkg-cats__chip:hover {
  background: #0a2f5e;
  border-color: #0a2f5e;
  color: #ffffff;
}

.home-pkg-cats__chip:hover span {
  background: rgba(255, 255, 255, 0.18);
  color: #f0d48a;
}

.home-pkg-cat {
  margin-top: 2.25rem;
}

.pkg-slider {
  position: relative;
}

.pkg-slider__track {
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-top: 0.85rem;
  padding-bottom: 1.75rem;
}

.pkg-slider__track::-webkit-scrollbar {
  display: none;
}

.pkg-slider__btn {
  position: absolute;
  top: calc(50% - 0.75rem);
  z-index: 6;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(15, 46, 93, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #0f2e5d;
  box-shadow: 0 8px 24px rgba(15, 46, 93, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.pkg-slider.is-scrollable .pkg-slider__btn {
  display: inline-flex;
}

.pkg-slider__btn--prev {
  left: max(0.35rem, calc(50vw - 46rem - 0.85rem));
}

.pkg-slider__btn--next {
  right: max(0.35rem, calc(50vw - 46rem - 0.85rem));
}

.pkg-slider__btn:hover:not(:disabled) {
  background: #0f2e5d;
  border-color: #0f2e5d;
  color: #fff;
  transform: translateY(-1px);
}

.pkg-slider__btn:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: none;
}

@media (max-width: 767px) {
  .pkg-slider__btn {
    width: 2.35rem;
    height: 2.35rem;
  }

  .pkg-slider__btn--prev { left: 0.4rem; }
  .pkg-slider__btn--next { right: 0.4rem; }
}

.home-pkg-cat__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  margin-bottom: 1.1rem;
}

.home-pkg-cat__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 600;
  color: #061f40;
}

.home-pkg-cat__intro {
  margin: 0.4rem 0 0;
  max-width: 42rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5c6b80;
}

/* Luxury overlapping package card */
.package-card,
.pkg-lux {
  --pkg-navy: #0F2E5D;
  --pkg-gold: #DC9C32;
  --pkg-text: #1E293B;
  --pkg-muted: #64748B;
  --pkg-cloud: #F4F7F9;
  --pkg-white: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--pkg-text);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.pkg-lux__frame {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--pkg-white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15, 46, 93, 0.08);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.package-card:hover,
.pkg-lux:hover {
  transform: none;
  z-index: 2;
}

.package-card:hover .pkg-lux__frame,
.pkg-lux:hover .pkg-lux__frame,
.pkg-lux:focus-within .pkg-lux__frame {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 46, 93, 0.14);
}

.pkg-lux__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pkg-cloud);
}

.pkg-lux__visual img,
.pkg-lux__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.package-card:hover .pkg-lux__visual img,
.pkg-lux:hover .pkg-lux__visual img {
  transform: scale(1.05);
}

.pkg-lux__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(145deg, #0F2E5D 0%, #1a4a8a 100%);
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
}

.pkg-lux__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 46, 93, 0.08) 0%, transparent 38%, rgba(15, 46, 93, 0.28) 100%);
  pointer-events: none;
}

.pkg-lux__flag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  max-width: calc(100% - 7.5rem);
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: var(--pkg-gold);
  color: var(--pkg-navy);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 8px 18px rgba(220, 156, 50, 0.35);
}

.pkg-lux__rating {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--pkg-navy);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 46, 93, 0.12);
  backdrop-filter: blur(10px);
}

.pkg-lux__rating svg { color: var(--pkg-gold); flex-shrink: 0; }

.pkg-lux__rating span {
  color: var(--pkg-muted);
  font-weight: 600;
  font-size: 0.64rem;
}

.pkg-lux__chip {
  position: absolute;
  left: 0.9rem;
  bottom: 5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 46, 93, 0.78);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.pkg-lux__sheet {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: -2.6rem 0.75rem 0.75rem;
  padding: 1.35rem 1.1rem 1rem;
  background: var(--pkg-white);
  border-radius: 1.15rem;
  box-shadow: 0 10px 28px rgba(15, 46, 93, 0.08);
}

.pkg-lux__price-float {
  position: absolute;
  top: 0;
  right: 1rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--pkg-gold);
  color: var(--pkg-navy);
  box-shadow: 0 10px 22px rgba(220, 156, 50, 0.38);
  white-space: nowrap;
}

.pkg-lux__price-was {
  font-size: 0.62rem;
  font-weight: 600;
  text-decoration: line-through;
  opacity: 0.7;
}

.pkg-lux__price-now {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pkg-lux__price-unit {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.pkg-lux__eyebrow {
  margin: 0 0 0.35rem;
  padding-right: 6rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pkg-gold);
}

.pkg-lux__title,
.package-card h3.pkg-lux__title,
.package-card.pkg-lux h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--pkg-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pkg-lux__route {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pkg-navy);
  line-height: 1.4;
}

.pkg-lux__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.pkg-lux__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--pkg-cloud);
  color: var(--pkg-muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.pkg-lux__includes {
  margin-top: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.9rem;
  background: var(--pkg-cloud);
}

.pkg-lux__includes-title {
  margin: 0 0 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pkg-navy);
}

.pkg-lux__includes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pkg-lux__includes li {
  position: relative;
  padding: 0.12rem 0 0.12rem 1.05rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--pkg-text);
}

.pkg-lux__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--pkg-gold);
}

.pkg-lux__visits {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--pkg-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pkg-lux__visits strong {
  color: var(--pkg-navy);
  font-weight: 700;
  margin-right: 0.25rem;
}

.pkg-lux__trust {
  margin: 0.7rem 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pkg-navy);
}

.pkg-lux__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.95rem;
}

.pkg-lux__from {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pkg-lux__from span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pkg-muted);
}

.pkg-lux__from strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--pkg-navy);
}

.pkg-lux__from em {
  font-style: normal;
  font-size: 0.62rem;
  color: var(--pkg-muted);
  margin-top: 0.1rem;
}

.pkg-lux__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.pkg-lux__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 2.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.pkg-lux__cta--outline {
  border: 1px solid rgba(15, 46, 93, 0.18);
  color: var(--pkg-navy);
  background: transparent;
}

.pkg-lux__cta--outline:hover {
  border-color: var(--pkg-navy);
  background: var(--pkg-cloud);
}

.pkg-lux__cta--gold,
.pkg-lux__cta--ghost {
  background: var(--pkg-gold);
  color: var(--pkg-navy);
  box-shadow: 0 8px 18px rgba(220, 156, 50, 0.28);
}

.pkg-lux__cta--gold:hover,
.pkg-lux__cta--ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(220, 156, 50, 0.4);
}

@media (max-width: 639px) {
  .pkg-lux:not(.pkg-lux--compact) .pkg-lux__foot {
    flex-direction: column;
    align-items: stretch;
  }

  .pkg-lux:not(.pkg-lux--compact) .pkg-lux__actions {
    width: 100%;
  }

  .pkg-lux:not(.pkg-lux--compact) .pkg-lux__cta {
    flex: 1;
  }
}

.pkg-lux--compact .pkg-lux__chip { bottom: 4.75rem; }

.pkg-lux--compact .pkg-lux__title {
  font-size: 1rem;
  min-height: 2.55rem;
}

.pkg-lux--compact .pkg-lux__from {
  display: none;
}

.pkg-lux--compact .pkg-lux__foot {
  justify-content: flex-end;
  padding-top: 0.75rem;
}

.pkg-lux--compact .pkg-lux__cta--ghost {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .pkg-lux--compact .pkg-lux__cta--ghost {
    opacity: 0;
    transform: translateY(6px);
  }

  .pkg-lux--compact:hover .pkg-lux__cta--ghost,
  .pkg-lux--compact:focus-within .pkg-lux__cta--ghost {
    opacity: 1;
    transform: none;
  }
}

.pkg-card-compact .pkg-card-hit {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: 1.5rem;
}

.rail > .package-card {
  display: flex;
  min-height: 0;
  height: auto;
}

@media (min-width: 1024px) {
  .packages-category-grid > :first-child .package-card,
  .packages-category-grid > :first-child .pkg-lux__frame {
    height: 100%;
  }

  .packages-category-grid > :first-child .pkg-lux__visual {
    aspect-ratio: auto;
    min-height: 22rem;
    flex: 1 1 auto;
  }

  .packages-category-grid > :first-child .pkg-lux__sheet {
    flex: 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pkg-lux__frame,
  .pkg-lux__visual img,
  .pkg-lux__cta {
    transition: none;
  }

  .package-card:hover .pkg-lux__frame,
  .package-card:hover .pkg-lux__visual img {
    transform: none;
  }
}

/* Letters + journal */
.letter-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.5rem;
  padding: 1.75rem 1.6rem;
  backdrop-filter: blur(16px);
  color: #fff;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.letter-card:hover { transform: translateY(-8px); }

.letter-card--lead {
  padding: clamp(2rem, 4vw, 3rem);
}

.letter-card--lead p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.letter-card--crimson {
  background: var(--crimson);
  border-color: transparent;
}

.letter-card .star-filled {
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
  color: #f4c56d;
}

.letter-card footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.16);
}

.letter-card footer img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: cover;
  border-radius: 999px;
}

.letter-card cite {
  font-style: normal;
  font-weight: 600;
  color: #fff;
}

.letter-card footer p {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
}

.journal-card {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 1.5rem;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.journal-card:hover { transform: translateY(-8px); }

.journal-card-media {
  display: block;
  overflow: hidden;
}

.journal-card-media img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.journal-card--lead .journal-card-media img { height: 22rem; }

.journal-card:hover img { transform: scale(1); }

.journal-card-body { padding: 1.4rem 1.5rem 1.6rem; }

.journal-card-body time {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: rgba(26, 39, 64,.5);
}

.journal-card-body h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0.7rem 0 0;
}

.journal-card--lead h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }

.journal-card-body h3 a {
  color: inherit;
  text-decoration: none;
}
.journal-card-body h3 a:hover { color: var(--crimson); }

.journal-card-body p {
  margin: 0.7rem 0 0;
  color: rgba(26, 39, 64,.68);
  line-height: 1.65;
}

.journal-card-body .atelier-text-link { margin-top: 1rem; }

.journal-empty {
  text-align: center;
  padding: 4rem 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,.5);
  border: 1px solid var(--line);
}

.journal-empty-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.journal-empty p { margin-top: 0.6rem; color: rgba(26, 39, 64,.65); }
.journal-empty .btn-gradient { margin-top: 1.5rem; }

/* Homepage reviews + blogs — screenshot match */
.review-board {
  padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
  background: #f7f4ee;
}

.blog-board {
  padding: clamp(2.25rem, 4.5vw, 3.5rem) 0 3.25rem;
  background: #f4f7f9;
}

.review-board__head,
.blog-board__head {
  margin-bottom: 2rem;
}

.blog-board__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
}

.review-board__head h2,
.blog-board__head h2 {
  margin: 0.35rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0f2e5d;
}

.review-board__grid,
.blog-board__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .review-board__grid,
  .blog-board__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.review-tile {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem 1.2rem 1.15rem;
  background: #efebe3;
  border: 1px solid transparent;
  border-radius: 1.15rem;
  transition: border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.review-tile:hover,
.review-board__grid .review-tile:nth-child(2) {
  border-color: #e4d3b0;
}

.review-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(15, 46, 93, 0.08);
}

.review-tile__stars {
  display: flex;
  gap: 0.15rem;
  color: #dc9c32;
  margin-bottom: 1rem;
}

.review-tile p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
}

.review-tile footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.35rem;
}

.review-tile footer img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.review-tile cite {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f2e5d;
}

.review-tile footer span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: #64748b;
}

.blog-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(15, 46, 93, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.blog-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 46, 93, 0.12);
}

.blog-tile__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e8eef4;
}

.blog-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-tile:hover .blog-tile__media img {
  transform: scale(1.05);
}

.blog-tile__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.05rem 1.15rem 1.15rem;
}

.blog-tile__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
}

.blog-tile__meta span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f2e5d;
}

.blog-tile__meta time {
  font-size: 0.8rem;
  color: #64748b;
}

.blog-tile h3 {
  margin: 0.5rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.blog-tile h3 a {
  color: #0f2e5d;
  text-decoration: none;
}

.blog-tile h3 a:hover {
  color: #dc9c32;
}

.blog-tile__body p {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-tile__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f2e5d;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.blog-tile__more:hover {
  color: #dc9c32;
  gap: 0.55rem;
}

@media (prefers-reduced-motion: reduce) {
  .review-tile,
  .blog-tile,
  .blog-tile__media img {
    transition: none;
  }

  .review-tile:hover,
  .blog-tile:hover,
  .blog-tile:hover .blog-tile__media img {
    transform: none;
  }
}

.cinematic-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 18rem;
  display: flex;
  align-items: center;
}

.cinematic-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cinematic-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.cinematic-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 40%, rgba(10, 47, 94,.45), transparent 42%),
    linear-gradient(180deg, rgba(6, 31, 64,.55), rgba(6, 31, 64,.88));
}

.cinematic-cta-copy {
  margin: 1.15rem 0 0;
  max-width: 28rem;
  color: rgba(255,255,255,.75);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.heritage-cta-band.cinematic-cta { background: var(--night); }

/* Media reveal + fade */
.media-reveal { overflow: hidden; }
.media-reveal img {
  transform: scale(1.08);
  transition: transform 1.1s cubic-bezier(0.16,1,0.3,1);
}
.media-reveal:hover img { transform: scale(1); }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.hero-animate,
.why-choose-card,
.letter-card,
.journal-card,
.package-card {
  animation: rise-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.why-choose-card:nth-child(2) { animation-delay: 0.05s; }
.why-choose-card:nth-child(3) { animation-delay: 0.1s; }
.why-choose-card:nth-child(4) { animation-delay: 0.15s; }

/* Inner pages */
.contact-page,
.plan-tour-page,
.packages-page,
.auth-page,
main.bg-brand-cream {
  background:
    radial-gradient(circle at 8% 0%, rgba(10, 47, 94,.08), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(212, 156, 58,.08), transparent 30%),
    var(--paper) !important;
}

.packages-page-hero,
.plan-tour-hero,
.contact-hero,
.auth-page-hero,
.booking-page-hero {
  min-height: 16rem;
}

.packages-category-grid {
  gap: 1.35rem !important;
}

@media (min-width: 1024px) {
  .packages-category-grid > :nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.packages-category-grid .package-card {
  height: 100%;
}

.pkg-quote-title,
.plan-tour-form-card-title,
.contact-form-title,
.contact-aside-title {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.03em;
}

.plan-tour-card {
  border-radius: 1.5rem !important;
  overflow: hidden;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.7) !important;
  box-shadow: none !important;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.plan-tour-card:hover { transform: translateY(-8px); }

.masonry-grid img,
[data-gallery-category] img {
  border-radius: 1.15rem;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
[data-gallery-category]:hover img { transform: scale(1.04); }

.site-nav-mobile-panel,
.mobile-menu,
#mobile-menu {
  background: linear-gradient(165deg, #061f40 0%, #0a2f5e 130%) !important;
  color: #ffffff !important;
}

.heritage-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 26rem;
  display: flex;
  align-items: flex-end;
  background: #061f40;
}
.heritage-hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
  padding: calc(var(--header-total-h, 7.25rem) + 3rem) 0 4.5rem;
}

main.bg-brand-cream article.group {
  border-radius: 0.35rem;
  overflow: hidden;
  background: #ffffff;
  backdrop-filter: none;
  border: 1px solid rgba(212, 156, 58, 0.22) !important;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
main.bg-brand-cream article.group:hover { transform: translateY(-8px); }

.itinerary-rail {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.15rem 0 1rem;
  scrollbar-width: thin;
}

.itinerary-step {
  flex: 0 0 min(78vw, 17.5rem);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(212, 156, 58, 0.22);
  border-radius: 0.35rem;
  padding: 1.1rem;
}

.itinerary-step img {
  width: 100% !important;
  height: 8.5rem !important;
  object-fit: cover;
  border-radius: 0.2rem !important;
}

.pkg-detail-accordion {
  background: #ffffff;
  border: 1px solid rgba(212, 156, 58, 0.22) !important;
  border-radius: 0.35rem;
  padding: 0.35rem 1.1rem;
  margin-bottom: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none; }
}

/* -------------------------------------------------------------------------- */
/* Luxury 2026 architecture — bento, overlap, brass rules                     */
/* -------------------------------------------------------------------------- */
.lux-page { background: #f4f7fb; color: #1a2740; }
.lux-kicker,
.heritage-kicker {
  color: #d49c3a !important;
  font-family: Outfit, sans-serif;
  letter-spacing: 0.28em;
}

.lux-title,
.heritage-title {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 600 !important;
}

.lux-hero {
  position: relative;
  min-height: min(48svh, 26rem) !important;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #061f40;
}
@media (min-width: 1024px) {
  .lux-hero { min-height: min(52svh, 28rem) !important; }
}

.lux-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(6, 31, 64,.78) 0%, rgba(10, 47, 94,.42) 48%, rgba(6, 31, 64,.18) 100%),
    linear-gradient(180deg, rgba(6, 31, 64,.15) 0%, rgba(6, 31, 64,.72) 100%);
}

.heritage-hero__veil {
  background:
    linear-gradient(105deg, rgba(6, 31, 64,.72) 0%, rgba(10, 47, 94,.38) 55%, transparent 100%),
    linear-gradient(180deg, rgba(6, 31, 64,.08), rgba(6, 31, 64,.7)) !important;
}

.lux-overlap {
  display: grid;
  gap: 2rem;
}
@media (min-width: 960px) {
  .lux-overlap {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    align-items: center;
  }
  .lux-overlap__media { transform: translateX(1.5rem); }
  .lux-overlap__copy {
    position: relative;
    z-index: 2;
    margin-left: -4.5rem;
    background: #ffffff;
    border: 1px solid rgba(212, 156, 58,.28);
    padding: clamp(2rem, 4vw, 3.5rem);
    box-shadow: 0 40px 80px -48px rgba(6, 31, 64,.45);
  }
}

.lux-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .lux-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(10rem, auto);
  }
  .lux-bento > :nth-child(1) { grid-column: span 4; grid-row: span 2; }
  .lux-bento > :nth-child(2) { grid-column: span 2; }
  .lux-bento > :nth-child(3) { grid-column: span 2; }
  .lux-bento > :nth-child(4) { grid-column: span 3; }
  .lux-bento > :nth-child(5) { grid-column: span 3; }
  .lux-bento > :nth-child(6) { grid-column: span 6; }
}

.lux-tile {
  background: #ffffff;
  border: 1px solid rgba(212, 156, 58,.22);
  padding: 1.75rem 1.6rem;
  min-height: 100%;
}
.lux-tile--navy { background: #061f40; color: #ffffff; border-color: transparent; }
.lux-tile--emerald { background: #0a2f5e; color: #ffffff; border-color: transparent; }

.lux-rule {
  width: 3.25rem;
  height: 1px;
  background: #d49c3a;
  margin: 1.1rem 0;
}

.btn-lux,
a.inline-flex.rounded-full.bg-brand-maroon {
  border-radius: 0.2rem !important;
}

.site-footer-cta,
.site-footer--modern .site-footer-cta {
  background: linear-gradient(120deg, #0a2f5e 0%, #061f40 55%, #061f40 100%) !important;
  border-top: 1px solid rgba(212, 156, 58,.35);
}

.site-footer.site-footer--lux {
  background:
    radial-gradient(1200px 420px at 8% -10%, rgba(10, 47, 94, 0.45), transparent 58%),
    radial-gradient(900px 380px at 100% 0%, rgba(212, 156, 58, 0.08), transparent 52%),
    #0b1220 !important;
  color: rgba(255, 255, 255, 0.72);
}

.stats-band { background: #f4f7fb; }
.hero-stat { background: #ffffff; border: 1px solid rgba(212, 156, 58,.22); border-radius: 0.3rem; }
.hero-stat-value, .page-home .hero-stat-value { color: #0a2f5e !important; font-family: "Playfair Display", Georgia, serif !important; }

.marquee, .ticker { background: #061f40; border: 0; }
.marquee-track, .ticker-track { color: #f0d48a; }
.ticker-track span::after { color: #d49c3a; }

.btn-hero-plan { background: #d49c3a !important; color: #061f40 !important; border-radius: 0.2rem; }
.btn-hero-plan:hover { background: #f0d48a !important; }
.btn-hero-contact { border-radius: 0.2rem; }

.heritage-cta-band {
  background: #061f40 !important;
  border-top: 1px solid rgba(212, 156, 58,.28);
}

.jump-chip.is-active,
.packages-page-nav__link.is-active {
  background: #0a2f5e !important;
  border-color: #d49c3a !important;
  color: #ffffff !important;
}

.contact-page,
.plan-tour-page,
.packages-page,
.auth-page,
main.bg-brand-cream,
main.bg-\[\#f4f7fb\],
main.bg-\[\#f4f7fb\] {
  background:
    radial-gradient(circle at 12% 0%, rgba(10, 47, 94,.08), transparent 36%),
    radial-gradient(circle at 88% 8%, rgba(212, 156, 58,.1), transparent 32%),
    #f4f7fb !important;
}

/* Contact — overlapping atelier + brief */
.contact-page .contact-hero {
  background: transparent !important;
  border: 0 !important;
}

.contact-lux-layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  overflow: visible;
}

@media (min-width: 1024px) {
  .contact-lux-layout {
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: 1.75rem;
  }
  .contact-lux-form {
    position: relative;
    z-index: 2;
    margin: 0;
    align-self: start;
  }
}

.contact-lux-aside {
  min-width: 0;
}

.contact-lux-aside__panel {
  background: #061f40;
  color: #ffffff;
  border: 1px solid rgba(212, 156, 58, 0.28);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  min-height: 100%;
  overflow: visible;
}

.contact-lux-aside .contact-aside-title {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(1.75rem, 3vw, 2.35rem) !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

.contact-lux-aside .contact-aside-sub { color: rgba(255, 255, 255, 0.7) !important; }

.contact-lux-info li { align-items: flex-start; }
.contact-lux-aside .contact-info-label {
  color: #d49c3a !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.65rem;
}
.contact-lux-aside .contact-info-value,
.contact-lux-aside .contact-info-link { color: #ffffff !important; }
.contact-lux-aside .contact-info-icon {
  background: rgba(212, 156, 58, 0.12);
  color: #d49c3a;
  border: 1px solid rgba(212, 156, 58, 0.28);
}

.contact-lux-aside .contact-quick-actions {
  border-top-color: rgba(212, 156, 58, 0.22);
}

.contact-lux-aside .contact-hours {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 156, 58, 0.22);
}
.contact-lux-aside .contact-hours-title { color: #d49c3a !important; }
.contact-lux-aside .contact-hours-row {
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-lux-aside .contact-hours-row dt,
.contact-lux-aside .contact-hours-row dd {
  color: rgba(255, 255, 255, 0.78) !important;
  white-space: normal;
  overflow-wrap: anywhere;
}
.contact-lux-aside .contact-hours-row dt { flex: 0 1 42%; }
.contact-lux-aside .contact-hours-row dd {
  flex: 1 1 52%;
  text-align: right;
  min-width: 0;
}
.contact-lux-aside .contact-hours-row dd.is-highlight { color: #d49c3a !important; }

.contact-page .contact-form-card {
  background: #ffffff !important;
  border: 1px solid rgba(212, 156, 58, 0.28) !important;
  border-radius: 0 !important;
  box-shadow: 0 40px 80px -48px rgba(6, 31, 64, 0.45);
  padding: clamp(1.75rem, 4vw, 3rem) !important;
}
.contact-page .contact-form-title {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(1.75rem, 3vw, 2.4rem) !important;
  font-weight: 600 !important;
  color: #061f40 !important;
}
.contact-page .contact-form-sub { color: #5c6b80 !important; margin-bottom: 1.5rem; }

.contact-page .contact-submit {
  width: 100%;
  background: #0a2f5e !important;
  color: #ffffff !important;
  border: 1px solid #d49c3a !important;
  border-radius: 0.2rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  min-height: 3.15rem;
  margin-top: 0.5rem;
}

.contact-page .contact-btn {
  border-radius: 0.2rem !important;
}
.contact-page .contact-btn--outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(212, 156, 58, 0.45) !important;
}
.contact-page .contact-btn--whatsapp {
  background: #d49c3a !important;
  color: #061f40 !important;
  border: 1px solid #d49c3a !important;
}

.contact-lux-map {
  padding: 0 0 5rem;
}
.contact-lux-map .contact-map-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-lux-map .contact-map-title {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  color: #061f40 !important;
}
.contact-lux-map .contact-map-link {
  color: #0a2f5e;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 600;
}
.contact-lux-map .contact-map-embed {
  overflow: hidden;
  border: 1px solid rgba(212, 156, 58, 0.28);
  min-height: 22rem;
}
.contact-lux-map .contact-map-embed iframe {
  width: 100%;
  height: 22rem;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
}

@media (max-width: 1023px) {
  .contact-lux-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .contact-lux-form {
    margin: 0;
    order: -1;
  }
}

/* -------------------------------------------------------------------------- */
/* Homepage split masthead — navy editorial + cinematic stage                 */
/* -------------------------------------------------------------------------- */
.page-home .hero-home.hero-split,
.hero-home.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  background: #061f40 !important;
  background-image: none !important;
  overflow: hidden;
}

.hero-split__copy {
  position: relative;
  z-index: 3;
  background: #061f40;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-total-h, 7.25rem) + 1.5rem) 1.5rem 2.5rem;
}

.hero-split__year {
  position: absolute;
  right: 0.4rem;
  top: calc(var(--header-total-h, 7.25rem) + 0.25rem);
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(212, 156, 58, 0.12);
  pointer-events: none;
  user-select: none;
}

.hero-split__stage {
  position: relative;
  min-height: min(48vh, 22rem);
  overflow: hidden;
  order: -1;
}

.hero-split .hero-slideshow {
  position: absolute !important;
  inset: 0;
  z-index: 0;
}

.hero-split .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 31, 64, 0.12) 0%, rgba(6, 31, 64, 0.08) 50%, rgba(6, 31, 64, 0.35) 100%) !important;
}

.hero-split .hero-carousel-nav {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  pointer-events: none;
}

.hero-split .hero-carousel-arrow {
  pointer-events: auto;
  width: 2.6rem;
  height: 2.6rem;
}

.hero-split .hero-carousel-controls {
  position: absolute;
  left: 1rem;
  bottom: 1.15rem;
  z-index: 3;
  pointer-events: none;
}

.hero-split .hero-carousel-controls--hidden { display: block; }

.page-home .hero-split .hero-home-inner,
.hero-split .hero-home-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  text-align: left !important;
  max-width: 34rem;
  margin: 0 !important;
  width: 100%;
  padding: 0 !important;
}

.hero-split .hero-heading {
  max-width: 11ch;
  color: #ffffff;
  text-shadow: none;
  margin-top: 1.25rem;
}

.hero-split .hero-lead {
  margin-inline: 0 !important;
  color: rgba(255, 255, 255, 0.78);
}

.hero-split .hero-cta-row {
  flex-direction: row;
  width: auto;
  max-width: none;
}

.hero-split .btn-hero-plan,
.hero-split .btn-hero-contact {
  width: auto;
}

.stats-band--overlap {
  position: relative;
  z-index: 4;
  margin-top: -1.5rem;
  padding: 0 1rem 0;
  background: transparent;
}

.stats-band--overlap .stats-grid {
  background: #ffffff;
  border: 1px solid rgba(212, 156, 58, 0.28);
  padding: 0.65rem;
  gap: 0.65rem;
}

.stats-band--overlap .hero-stat {
  box-shadow: none;
  border-radius: 0;
  background: #f4f7fb;
}

@media (min-width: 1024px) {
  .page-home .hero-home.hero-split,
  .hero-home.hero-split {
    grid-template-columns: minmax(22rem, 0.9fr) minmax(0, 1.2fr);
    min-height: 100svh;
  }

  .hero-split__stage {
    order: 0;
    min-height: 100%;
  }

  .hero-split__copy {
    padding: calc(var(--header-total-h, 7.25rem) + 3rem) 3.25rem 4.5rem 3.5rem;
    align-items: flex-end;
  }

  .hero-split__year {
    top: auto;
    bottom: 1.5rem;
    right: 1.25rem;
    font-size: clamp(6rem, 9vw, 10rem);
  }

  .stats-band--overlap {
    margin-top: -3.25rem;
    padding: 0 2rem 0;
  }

  .stats-band--overlap .stats-grid {
    max-width: 56rem;
    margin-left: auto;
    margin-right: 2rem;
  }
}

@media (max-width: 639px) {
  .hero-split .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }
  .hero-split .btn-hero-plan,
  .hero-split .btn-hero-contact {
    width: 100%;
  }
}

/* -------------------------------------------------------------------------- */
/* Landwey header + hero — navy grid, gold clip, floating bento               */
/* -------------------------------------------------------------------------- */
:root {
  --forest: #061f40;
  --forest-card: #0a2f5e;
  --mustard: #d49c3a;
  --mustard-soft: #e8c56a;
}

.site-topbar { display: none !important; }

.site-header,
.site-header--modern {
  background: transparent;
}

.site-navbar,
.site-header--modern .site-navbar--modern,
.site-header--inner .site-navbar,
.navbar-scrolled,
.site-header--modern .navbar-scrolled.site-navbar--modern,
.page-home .site-header--home .site-navbar,
.page-home .site-header--home .site-navbar--modern,
.page-home .site-header--home .navbar-scrolled {
  background: rgba(6, 31, 64, 0.88) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 156, 58, 0.18) !important;
  box-shadow: none !important;
}

.page-home .site-header--home .navbar-scrolled {
  background: rgba(6, 31, 64, 0.94) !important;
  border-bottom-color: rgba(212, 156, 58, 0.22) !important;
}

.site-nav-list .nav-link,
.site-header--modern .site-nav-list .nav-link,
.page-home .site-header--home .nav-link,
.navbar-scrolled .site-nav-list .nav-link,
.navbar-solid .site-nav-list .nav-link {
  color: #f4efe4 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-size: 0.68rem !important;
  font-weight: 500;
}

.site-nav-list .nav-link:hover,
.site-nav-list .nav-link.active,
.page-home .site-header--home .nav-link:hover,
.page-home .site-header--home .nav-link.active,
.navbar-scrolled .site-nav-list .nav-link:hover,
.navbar-scrolled .site-nav-list .nav-link.active {
  color: var(--mustard) !important;
}

.site-nav-list .nav-link::after { background: var(--mustard); }

.site-nav-btn--primary {
  background: var(--mustard) !important;
  color: #061f40 !important;
  border: 0 !important;
  border-radius: 0.15rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.site-nav-country { margin: 0; }
.site-nav-country .site-topbar-country-select {
  background: transparent !important;
  color: #f4efe4 !important;
  border: 0 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em;
  min-height: 2.2rem;
  cursor: pointer;
}
.site-nav-country .site-topbar-country-select option { color: #061f40; }

.page-home .site-header--home .site-nav-toggle,
.site-nav-toggle,
.navbar-scrolled .site-nav-toggle {
  background: transparent !important;
  border-color: rgba(244, 239, 228, 0.35) !important;
}
.site-nav-toggle-bar,
.page-home .site-header--home .site-nav-toggle-bar,
.navbar-scrolled .site-nav-toggle-bar { background: #f4efe4 !important; }

.page-home {
  background: #061f40;
}

.hero-home.hero-landwey {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: min(78svh, 40rem);
  background: #061f40 !important;
  background-image: none !important;
  overflow: hidden;
  color: #f4efe4;
}

.hero-landwey .hero-slideshow,
.hero-landwey .hero-overlay {
  opacity: 0;
  pointer-events: none;
}

.hero-landwey__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 156, 58, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 156, 58, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 40% 40%, #000 35%, transparent 80%);
}

.hero-landwey::before {
  content: "";
  position: absolute;
  inset: 12% 18% auto auto;
  width: 42%;
  height: 50%;
  background: radial-gradient(circle, rgba(212, 156, 58, 0.14), transparent 68%);
  z-index: 1;
  pointer-events: none;
}

.hero-landwey__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  gap: 2rem;
  width: min(100% - 2rem, 70rem);
  margin: 0 auto;
  padding: calc(var(--header-total-h, 5.5rem) + 2.5rem) 0 2rem;
  align-items: center;
}

.hero-landwey .hero-home-inner {
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.hero-landwey__overline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  color: #f4efe4;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}
.hero-landwey__overline::before,
.hero-landwey__overline::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--mustard);
}

.hero-landwey .hero-heading {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.95rem, 4.2vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #f4efe4;
  text-shadow: none;
  max-width: 14ch;
  margin: 0;
}

.hero-heading__gold {
  display: block;
  color: var(--mustard);
  font-style: italic;
  font-weight: 600;
}

.hero-landwey .hero-lead {
  margin: 0.9rem 0 1.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  color: rgba(244, 239, 228, 0.82);
  max-width: 28rem;
}

.btn-clip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.65rem;
  padding: 0.7rem 1.6rem 0.7rem 1.15rem;
  background: var(--mustard) !important;
  color: #061f40 !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.btn-clip__icon {
  display: inline-flex;
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid rgba(6, 31, 64, 0.35);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
}
.btn-clip__icon svg { width: 0.85rem; height: 0.85rem; }

.hero-places-slider {
  width: 100%;
  max-width: 34rem;
  justify-self: stretch;
}

.hero-places-slider .carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 156, 58, 0.32);
  border-radius: 0.28rem;
  background: #0a2f5e;
  box-shadow: 0 22px 44px -24px rgba(0, 0, 0, 0.7);
}

.hero-places-slider .carousel.pointer-event {
  touch-action: pan-y;
}

.hero-places-slider .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-places-slider .carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.hero-places-slider .carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

.hero-places-slider .carousel-item.active,
.hero-places-slider .carousel-item-next,
.hero-places-slider .carousel-item-prev {
  display: block;
}

.hero-places-slider .carousel-item-next:not(.carousel-item-start),
.hero-places-slider .active.carousel-item-end {
  transform: translateX(100%);
}

.hero-places-slider .carousel-item-prev:not(.carousel-item-end),
.hero-places-slider .active.carousel-item-start {
  transform: translateX(-100%);
}

.hero-places-slide {
  position: relative;
  display: block;
  isolation: isolate;
  height: 22rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.hero-places-slide__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.hero-places-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 31, 64, 0.08) 20%, rgba(6, 31, 64, 0.82) 100%);
}

.hero-places-slide:hover .hero-places-slide__img {
  transform: scale(1.08);
}

.hero-places-slide__index {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(244, 239, 228, 0.72);
}

.hero-places-slide__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.2rem 2.4rem;
}

.hero-places-slide__label {
  margin: 0 0 0.2rem;
  color: var(--mustard);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-places-slide__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: #f4efe4;
  line-height: 1.15;
}

.hero-places-slider .carousel-control-prev,
.hero-places-slider .carousel-control-next {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  opacity: 1;
}

.hero-places-slider .carousel-control-prev { left: 0.7rem; }
.hero-places-slider .carousel-control-next { right: 0.7rem; }

.hero-places-slider__arrow {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 239, 228, 0.45);
  border-radius: 999px;
  background: rgba(6, 31, 64, 0.42);
  color: #f4efe4;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-places-slider__arrow svg {
  width: 0.9rem;
  height: 0.9rem;
}

.hero-places-slider .carousel-control-prev:hover .hero-places-slider__arrow,
.hero-places-slider .carousel-control-next:hover .hero-places-slider__arrow {
  background: var(--mustard);
  border-color: var(--mustard);
  color: #061f40;
}

.hero-places-slider .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0.7rem;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-places-slider .carousel-indicators [data-bs-target] {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.4);
  opacity: 1;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-places-slider .carousel-indicators .active {
  width: 1.15rem;
  background: var(--mustard);
}

@media (prefers-reduced-motion: reduce) {
  .hero-places-slider .carousel-item {
    transition: none;
  }
  .hero-places-slide__img {
    transition: none;
  }
}

.hero-landwey__bar {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.25rem;
  width: min(100% - 2rem, 70rem);
  margin: 0 auto;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid rgba(212, 156, 58, 0.18);
}

.hero-expert-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(244, 239, 228, 0.45);
  color: #f4efe4;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}
.hero-expert-btn svg { width: 1rem; height: 1rem; }

.hero-landwey__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0;
}

.hero-landwey .hero-stat {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  text-align: center;
  padding: 0.35rem 0.5rem;
}

.hero-landwey .hero-stat-value,
.hero-landwey .hero-stat-value.stat-count {
  color: var(--mustard) !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 600;
}

.hero-landwey .hero-stat-label {
  margin-top: 0.25rem;
  color: rgba(244, 239, 228, 0.78) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (min-width: 900px) {
  .hero-landwey__inner {
    grid-template-columns: minmax(0, 1fr) minmax(26rem, 34rem);
    gap: 2.25rem;
    padding-top: calc(var(--header-total-h, 5.5rem) + 3.5rem);
  }
  .hero-places-slider {
    max-width: none;
  }
  .hero-landwey__bar {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem;
  }
  .hero-landwey__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .hero-landwey .hero-stat + .hero-stat {
    border-left: 1px solid rgba(212, 156, 58, 0.22);
  }
}

@media (max-width: 899px) {
  .hero-places-slider { justify-self: stretch; width: 100%; max-width: none; }
  .hero-places-slide { height: 16.5rem; }
  .btn-clip { width: 100%; }
}

.nav-dropdown-menu {
  background: #061f40 !important;
  border-color: rgba(212, 156, 58, 0.25) !important;
}
.nav-dropdown-menu a { color: #f4efe4 !important; }

/* ------------------------------------------------------------------
   Navbar lock — ivory links on navy glass (beats style.css + earlier atelier)
   ------------------------------------------------------------------ */
html body .site-header.site-header--modern #main-navbar .site-nav-list .nav-link,
html body .site-header.site-header--modern #main-navbar.navbar-scrolled .site-nav-list .nav-link,
html body .site-header.site-header--modern #main-navbar.navbar-solid .site-nav-list .nav-link,
html body .page-home .site-header--home #main-navbar .site-nav-list .nav-link,
html body .page-home .site-header--home #main-navbar.navbar-scrolled .site-nav-list .nav-link {
  color: #f4f7fb !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body .site-header.site-header--modern #main-navbar .site-nav-list .nav-link:hover,
html body .site-header.site-header--modern #main-navbar .site-nav-list .nav-link.active,
html body .site-header.site-header--modern #main-navbar.navbar-scrolled .site-nav-list .nav-link:hover,
html body .site-header.site-header--modern #main-navbar.navbar-scrolled .site-nav-list .nav-link.active,
html body .page-home .site-header--home #main-navbar .site-nav-list .nav-link:hover,
html body .page-home .site-header--home #main-navbar .site-nav-list .nav-link.active {
  color: var(--mustard, #d49c3a) !important;
  background: transparent !important;
}

html body .site-header.site-header--modern #main-navbar .nav-dropdown-icon {
  color: inherit !important;
  opacity: 0.85;
}

html body .site-header.site-header--modern .site-brand-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-width: max-content;
  max-width: 13.75rem;
  position: relative;
  z-index: 4;
  background: #ffffff;
  border: 0;
  border-radius: 0.45rem;
  padding: 0.12rem 0.35rem;
  line-height: 0;
  box-shadow: none;
  overflow: hidden;
}

html body .site-header.site-header--modern .site-logo-img {
  height: 40px !important;
  max-width: 12.75rem !important;
  width: auto;
  object-fit: contain;
  background: transparent !important;
  filter: none !important;
}

@media (min-width: 1280px) {
  html body .site-header.site-header--modern .site-navbar-row {
    display: grid !important;
    grid-template-columns: max-content minmax(0, 1fr) max-content !important;
    gap: 1.35rem !important;
    align-items: center;
  }

  html body .site-header.site-header--modern .site-nav-pill,
  html body .site-header.site-header--modern .site-nav-pill.site-nav-desktop {
    justify-self: stretch !important;
    min-width: 0 !important;
    overflow: visible;
  }

  html body .site-header.site-header--modern .site-nav-list {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.05rem;
  }

  html body .site-header.site-header--modern #main-navbar .site-nav-list .nav-link {
    padding: 0.45rem 0.55rem !important;
    white-space: nowrap;
  }

  html body .site-header.site-header--modern .site-logo-img {
    height: 42px !important;
    max-width: 13rem !important;
  }
}

html body .site-header.site-header--modern .site-navbar-actions .site-nav-btn--primary,
html body .site-header.site-header--modern .site-navbar-mobile-cta--plan {
  background: var(--mustard, #d49c3a) !important;
  color: #061f40 !important;
  border: 0 !important;
  border-radius: 0 !important;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
  padding: 0.62rem 1.35rem 0.62rem 1.1rem !important;
  letter-spacing: 0.16em;
  font-weight: 700;
}

html body .site-header.site-header--modern .site-nav-country .site-topbar-country-select {
  color: #f4f7fb !important;
  background: transparent !important;
  border: 0 !important;
  max-width: 11.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

html body .site-header.site-header--modern .site-nav-country .site-topbar-country-select option {
  color: #061f40;
  background: #f4f7fb;
}

/* ------------------------------------------------------------------
   Desktop nav dropdown — visible mega panel (navy · gold · white)
   ------------------------------------------------------------------ */
html body .site-header.site-header--modern #main-navbar,
html body .site-header.site-header--modern .site-navbar,
html body .site-header.site-header--modern .site-navbar-row,
html body .site-header.site-header--modern .site-nav-pill,
html body .site-header.site-header--modern .site-nav-list {
  overflow: visible !important;
}

html body .site-header.site-header--modern .nav-dropdown {
  position: relative;
  z-index: 6;
}

html body .site-header.site-header--modern .nav-dropdown:hover,
html body .site-header.site-header--modern .nav-dropdown:focus-within {
  z-index: 80;
}

html body .site-header.site-header--modern .nav-dropdown-menu,
html body .site-header.site-header--modern .nav-dropdown-menu--mega {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 90;
  min-width: 18.5rem;
  padding: 0.85rem 0.75rem 0.75rem;
  background: #ffffff !important;
  color: #061f40 !important;
  border: 1px solid rgba(212, 156, 58, 0.45) !important;
  border-radius: 0.35rem;
  box-shadow:
    0 22px 48px -18px rgba(6, 31, 64, 0.45),
    0 0 0 1px rgba(10, 47, 94, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

html body .site-header.site-header--modern .nav-dropdown:hover .nav-dropdown-menu,
html body .site-header.site-header--modern .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

html body .site-header.site-header--modern .nav-dropdown-menu::before {
  display: block !important;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
  width: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

html body .site-header.site-header--modern .nav-dropdown-title {
  margin: 0 0.4rem 0.65rem;
  padding: 0 0.35rem 0.55rem;
  border-bottom: 1px solid rgba(212, 156, 58, 0.35);
  color: #d49c3a !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

html body .site-header.site-header--modern .nav-dropdown-menu a {
  color: #061f40 !important;
  background: transparent;
  border-radius: 0.25rem;
  border-left: 2px solid transparent;
}

html body .site-header.site-header--modern .nav-dropdown-menu a:hover {
  background: #f8efd8 !important;
  color: #0a2f5e !important;
  border-left-color: #d49c3a;
}

html body .site-header.site-header--modern .nav-dropdown-hint {
  color: #5c6b80 !important;
}

html body .site-header.site-header--modern .nav-dropdown-menu a:hover .nav-dropdown-hint {
  color: #b88328 !important;
}

@media (min-width: 1280px) {
  html body .site-header.site-header--modern .nav-dropdown-menu-packages {
    min-width: 32rem;
  }

  html body .site-header.site-header--modern .site-nav-list > li:nth-last-child(-n + 2) .nav-dropdown-menu {
    left: auto;
    right: 0;
  }
}

/* -------------------------------------------------------------------------- */
/* Compact density — professional travel-site scale                            */
/* -------------------------------------------------------------------------- */
.heritage-title .block,
.heritage-title span.block {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem) !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  margin-top: 0.45rem !important;
  letter-spacing: -0.01em;
}

.about-section-heading,
.about-section h2,
.about-cinematic h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem) !important;
  line-height: 1.2;
}

.about-section-badge-num {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
}

.pkg-lux__from strong {
  font-size: 1.15rem;
}

.pkg-lux__sheet {
  margin-top: -2.15rem;
  padding: 1.1rem 1rem 0.9rem;
}

.home-pkg-cat__title {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.site-footer-cta__title,
.site-footer--modern .site-footer-cta__title {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.packages-page-hero__content {
  padding-top: calc(var(--header-total-h, 6.3rem) + 1.5rem) !important;
  padding-bottom: 2.25rem !important;
}

.packages-page-hero {
  min-height: 15rem !important;
}

@media (min-width: 640px) {
  .packages-page-hero {
    min-height: 18rem !important;
  }
}

main.bg-brand-cream section.py-12,
main.bg-brand-cream section.py-14,
main.bg-brand-cream section.sm\:py-14,
main.bg-brand-cream .py-12,
main.bg-brand-cream .py-16 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.plan-tour-hero,
.contact-hero,
.auth-page-hero,
.booking-page-hero,
.lux-hero.min-h-\[320px\],
.lux-hero.min-h-\[380px\] {
  min-height: 16.5rem;
}

.contact-submit,
.plan-tour-submit,
.auth-btn-primary,
.pkg-quote-submit,
.pkg-sidebar-cta,
.pkg-detail-booking-submit {
  min-height: 2.55rem !important;
  padding: 0.6rem 1.2rem !important;
}

.hero-split__year {
  font-size: clamp(3rem, 8vw, 5.5rem);
}

/* Homepage body sections — same inset as the header logo (max-w-7xl + px-4/6/8) */
.site-header.site-header--modern .max-w-7xl {
  max-width: 80rem;
  width: 100%;
  padding-inline: 1rem;
  box-sizing: border-box;
}

.page-home .why-section > .shell,
.page-home .atelier-section .shell,
.page-home .review-board > .shell,
.page-home .blog-board > .shell {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .site-header.site-header--modern .max-w-7xl,
  .page-home .why-section > .shell,
  .page-home .atelier-section .shell,
  .page-home .review-board > .shell,
  .page-home .blog-board > .shell {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-header.site-header--modern .max-w-7xl,
  .page-home .why-section > .shell,
  .page-home .atelier-section .shell,
  .page-home .review-board > .shell,
  .page-home .blog-board > .shell {
    padding-inline: 2rem;
  }
}

.page-home .pkg-slider__btn--prev { left: 0.15rem; }
.page-home .pkg-slider__btn--next { right: 0.15rem; }

.page-home .pkg-slider .rail {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 639px) {
  .page-home .why-editorial__grid {
    grid-template-columns: 1fr;
  }

  .page-home .atelier-actions .btn-ghost,
  .page-home .atelier-actions .btn-gradient {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .page-home .review-board__grid,
  .page-home .blog-board__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .page-home .review-board__grid,
  .page-home .blog-board__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


