/* ==========================================================================
   OMNIVA TRAVEL — Shared Stylesheet
   Palette: Navy #0B2144 / Deep Navy #081833 / Gold #C99A46 / Gold Light #E4C583
            Sky #1C88C4 / Sky Light #3FB0E8 / Cream #FBF7EE
   Type: 'Playfair Display' (display serif) + 'EB Garamond' (body serif)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;0,8..60,700;1,8..60,500&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');
/* NOTE: "Minion Variable Concept" is not a licensed/embeddable web font (Minion is an Adobe
   commercial typeface). Using Source Serif 4 as the closest open-source stand-in until a
   licensed webfont file is supplied — see @font-face block below, ready to receive it. */
@font-face{
  font-family: 'Minion Variable Concept';
  src: local('Minion Variable Concept');
  font-display: swap;
  /* Drop real font files in /assets/fonts/ and uncomment below to activate: */
  /* src: url('assets/fonts/MinionVariableConcept.woff2') format('woff2'); */
}

:root{
  --navy: #02204A;
  --navy-deep: #01142E;
  --navy-soft: #0A2B5C;
  --gold: #D89F3B;
  --gold-light: #E8BE72;
  --gold-deep: #A9761F;
  --sky: #1C88C4;
  --sky-light: #3FB0E8;
  --sky-pale: #6FC6EE;
  --cream: #FBF7EE;
  --cream-warm: #F3E7CE;
  --ink: #1B2430;
  --white: #ffffff;

  --font-display: 'Minion Variable Concept', 'Source Serif 4', 'Playfair Display', 'Georgia', serif;
  --font-body: 'Minion Variable Concept', 'Source Serif 4', 'EB Garamond', 'Georgia', serif;

  --container: 1240px;
  --radius: 20px;
  --shadow-soft: 0 20px 45px rgba(11, 33, 68, 0.18);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
html, body{ max-width: 100%; overflow-x: clip; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{ font-family: var(--font-display); margin: 0; line-height: 1.15; }
p{ margin: 0 0 1em; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-gold{
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: var(--navy-deep);
  box-shadow: 0 8px 20px rgba(201,154,70,.35);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201,154,70,.45); }
.btn-outline{
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--gold-light);
}
.btn-outline:hover{ background: rgba(228,197,131,.12); }

.btn-square{
  border-radius: 14px;
}

.eyebrow{
  font-family: var(--font-body);
  font-style: italic;
  letter-spacing: .08em;
  color: var(--gold);
}

/* ---------- Header / Nav ---------- */
.site-header{
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(228,197,131,.25);
}
.nav-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
  gap: 24px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark{ width: 300px; height: auto; flex-shrink: 0; object-fit: contain; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 20px;
}
.nav-links a{
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color .2s ease;
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold-light);
  transition: width .25s ease;
}
.nav-links a:hover{ color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ width: 100%; }
.nav-links a[aria-current="page"]{ color: var(--gold-light); }

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  width: 42px; height: 38px;
  color: var(--cream);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ---------- Footer (compact single-row bar, 1920x160 design) ---------- */
.site-footer{
  position: relative;
  background: var(--navy-deep);
  color: var(--cream);
  overflow: hidden;
  height: clamp(120px, 8.33vw, 120px);
  display: flex;
  align-items: center;
}
.footer-waves{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 60px;
  line-height: 0;
}
.footer-inner{
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-brand .brand-mark{ width: 250px; height: auto; }
.footer-links{
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a{
  font-family: var(--font-display);
  font-size: .88rem;
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.footer-links a:hover{ color: var(--gold-light); border-color: var(--gold-light); }
.footer-copy{
  font-size: .76rem;
  color: rgba(251,247,238,.55);
  white-space: nowrap;
}
.footer-plane{
  position: absolute;
  left: 30%;
  top: 22%;
  width: 50px;
  transform: rotate(14deg);
  z-index: 1;
  pointer-events: none;
  opacity: .85;
}
.footer-ship{
  position: absolute;
  right: 3%;
  bottom: 2px;
  width: 80px;
  z-index: 1;
  pointer-events: none;
  opacity: .9;
}
@media (max-width: 700px){
  .site-footer{ height: auto; padding: 20px 0 26px; }
  .footer-inner{ flex-direction: column; text-align: center; gap: 10px; }
  .footer-plane{ display: none; }
}
@media (max-width: 700px){
  .footer-plane{ width: 60px; bottom: 58%; }
  .footer-ship{ width: 120px; }
}

/* ---------- Decorative plane / ship SVG shared bits ---------- */
.deco{ position: absolute; pointer-events: none; }

/* ---------- Utility ---------- */
.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }

/* ===================== LEGAL PAGES (Terms / Privacy) ===================== */
.legal-page{ padding: 64px 0 96px; }
.legal-effective{ color: var(--navy-soft); font-size: .95rem; margin-bottom: 36px; }
.legal-page h2{ color: var(--navy); font-size: 1.3rem; margin: 40px 0 12px; }
.legal-page h2:first-of-type{ margin-top: 0; }
.legal-page p{ color: var(--ink); line-height: 1.7; margin: 0 0 14px; }
.legal-page ul{ margin: 0 0 14px; padding-left: 22px; }
.legal-page li{ color: var(--ink); line-height: 1.7; margin-bottom: 8px; }
.legal-page li strong{ color: var(--navy); }
.legal-contact{ list-style: none; padding-left: 0; margin-top: 8px; }
.legal-contact li{ margin-bottom: 4px; }
.legal-contact a{ color: var(--navy-soft); }
.legal-contact a:hover{ color: var(--gold-deep); }
.text-center{ text-align: center; }
.max-w{ max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .nav-links{ display: none; }
  .nav-toggle{ display: inline-flex; align-items: center; justify-content: center; }
  .nav-row.open .nav-links{
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(228,197,131,.25);
  }
  .container{ padding: 0 20px; }
  .section{ padding: 64px 0; }
}

@media (max-width: 480px){
  .nav-row{ padding: 14px 16px; gap: 12px; }
  .brand{ gap: 8px; }
  .brand-mark{ width: 100px; height: auto; }
  .nav-row > .btn-gold{ padding: 10px 16px; font-size: .88rem; }
  .nav-toggle{ width: 36px; height: 34px; font-size: 1.1rem; }
}

/* ==========================================================================
   HOMEPAGE — Hero (1920x640 design)
   ========================================================================== */
.hero{
  position: relative;
  height: clamp(460px, 33.33vw, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.hero-photo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.hero-scrim{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(8,16,32,.45) 0%, rgba(8,16,32,.25) 40%, rgba(8,16,32,.5) 78%, rgba(8,16,32,.68) 100%);
}
.hero-content{
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.hero-title{
  font-size: clamp(1.7rem, 3.9vw, 3.3rem);
  color: var(--white);
  text-shadow: 0 4px 22px rgba(0,0,0,.45);
  letter-spacing: .01em;
  white-space: nowrap;
  margin: 0 auto;
}
.hero-sub{
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  color: var(--white);
  margin: 20px 0 22px;
  text-shadow: 0 3px 16px rgba(0,0,0,.4);
  white-space: nowrap;
}
.hero-tag{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 26px;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.hero-eyebrow{
  font-size: 1.15rem;
  color: var(--cream);
  opacity: .95;
  margin-bottom: 38px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 12px;
}
.hero-star{
  height: 30px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.affiliations{
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.affil-label{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--cream);
}
.affil-logos{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 42px;
}
.affil-logos li{
  display: flex;
  align-items: center;
}
.affil-logos img{
  height: 46px;
  width: auto;
  background: rgba(251,247,238,.92);
  padding: 6px 12px;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.affil-logos-solo{ justify-content: center; }
.affil-logos-solo img{
  height: 88px;
  padding: 14px 30px;
  border-radius: 12px;
}
@media (max-width: 640px){
  .affil-logos-solo img{ height: 64px; padding: 10px 20px; }
}
.affil-text-badge{
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 16px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--navy);
  font-size: 0.95rem;
  background: rgba(251,247,238,.92);
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}

/* ==========================================================================
   PROMO — pinned scroll stage (1920x800 design), plane + ship + ocean
   ========================================================================== */
.promo{
  position: relative;
  height: clamp(480px, 41.67vw, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.promo-scene{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.promo-content{
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.promo-partner-logo{
  height: 54px;
  width: auto;
  background: rgba(251,247,238,.92);
  padding: 8px 18px;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  margin-bottom: 26px;
}

/* Sky layer — drifting clouds, flying birds, gusts of wind */
.promo-sky{
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.cloud{
  position: absolute;
  width: 90px;
  height: 34px;
  background: rgba(255,255,255,.75);
  border-radius: 50px;
  box-shadow:
    28px -14px 0 -4px rgba(255,255,255,.65),
    -24px -6px 0 -8px rgba(255,255,255,.55);
  animation: cloudDrift linear infinite;
}
.cloud-1{ top: 12%; left: -18%; width: 100px; height: 36px; animation-duration: 46s; }
.cloud-2{ top: 24%; left: -40%; width: 70px; height: 26px; opacity: .7; animation-duration: 62s; animation-delay: -18s; }
.cloud-3{ top: 7%; left: -60%; width: 130px; height: 44px; opacity: .5; animation-duration: 74s; animation-delay: -34s; }
@keyframes cloudDrift{ from{ transform: translateX(0); } to{ transform: translateX(160vw); } }

.bird{ position: absolute; width: 26px; height: 14px; opacity: .85; animation: birdFly linear infinite; }
.bird-1{ top: 15%; left: -8%; animation-duration: 16s; }
.bird-2{ top: 22%; left: -8%; animation-duration: 21s; animation-delay: -5s; }
.bird-3{ top: 10%; left: -8%; animation-duration: 26s; animation-delay: -12s; opacity: .6; }
@keyframes birdFly{
  0%{ transform: translate(0, 0); }
  50%{ transform: translate(65vw, -22px); }
  100%{ transform: translate(135vw, 4px); }
}

.wind-line{
  position: absolute;
  left: -160px;
  width: 130px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  animation: windGust linear infinite;
}
.wind-1{ top: 34%; animation-duration: 7s; animation-delay: 0s; }
.wind-2{ top: 52%; animation-duration: 9s; animation-delay: 3.5s; }
@keyframes windGust{
  0%{ left: -160px; opacity: 0; }
  12%{ opacity: .8; }
  88%{ opacity: .8; }
  100%{ left: 110%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
  .cloud, .bird, .wind-line{ animation: none; opacity: 0; }
}

/* Ship — stays in place, floating with a gentle bob synced to the ocean wave cycle */
.js-sailing-ship{
  position: absolute;
  right: 8%;
  bottom: 0%;
  width: 230px;
  z-index: 2;
  pointer-events: none;
}
.ship-bob{
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.3));
  animation: shipFloat 8s ease-in-out infinite; /* matches .ocean-front's 8s wave cycle */
}
@keyframes shipFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce){ .ship-bob{ animation: none; } }

/* Animated ocean band pinned to the bottom of the promo panel */
.promo-ocean{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  z-index: 1;
  overflow: hidden;
}
.ocean-layer{ position: absolute; bottom: 0; width: 220%; height: 100%; }
.ocean-back path{ fill: #12428A; }
.ocean-mid path{ fill: #1C88C4; }
.ocean-front path{ fill: #3FB0E8; }
.ocean-back{ animation: oceanFlow 30s linear infinite; opacity: .9; }
.ocean-mid{ animation: oceanFlow 26s linear infinite reverse; opacity: .95; }
.ocean-front{ animation: oceanFlow 23s linear infinite; }
@keyframes oceanFlow{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (max-width: 640px){
  .promo{ height: auto; min-height: 560px; padding: 60px 0; }
  .js-sailing-ship{ width: 130px; }
}

.promo-title{
  font-size: clamp(2.6rem, 6.8vw, 4.6rem);
  color: var(--gold-light);
  text-shadow: 0 3px 12px rgba(0,0,0,.4);
}
.promo-dates{
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.35rem;
  margin-top: 16px;
}
.promo-link{
  display: inline-block;
  margin-top: 34px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 6px;
  transition: color .2s ease;
  cursor: pointer;
}
.promo-link:hover{ color: var(--gold-light); }

@media (max-width: 640px){
  .hero{ height: auto; min-height: 100vh; padding-top: 90px; }
  .hero-title, .hero-sub{ white-space: normal; }
}

/* ==========================================================================
   PLANNING PAGE
   ========================================================================== */
.planning-hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF3DF 45%, #E4B85B 100%);
  padding: 90px 0 120px;
}
.planning-globe{
  position: absolute;
  top: -40px;
  right: -80px;
  width: 560px;
  height: auto;
  opacity: 0.95;
}
.planning-inner{ position: relative; z-index: 1; }
.planning-title{
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  color: var(--navy);
  max-width: 14ch;
  margin-top: 6px;
  margin-bottom: 56px;
}
.plan-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.plan-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 34px 36px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.plan-card h3{
  color: var(--navy);
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 26px;
}
.plan-card ol{
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  counter-reset: step;
  flex-grow: 1;
}
.plan-card ol li{
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid var(--gold-light);
}
.plan-card ol li:last-child{ border-bottom: none; }
.plan-cta{ align-self: center; margin-top: 8px; }

@media (max-width: 900px){
  .plan-cards{ grid-template-columns: 1fr; }
  .planning-globe{ width: 320px; top: -20px; right: -120px; opacity: .55; }
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero{
  background: var(--navy-deep);
  color: var(--cream);
  padding: 90px 0 0px;
}
.about-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}
.about-heading{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.about-compass{ width: 56px; height: 56px; flex-shrink: 0; }
.about-heading h1{ color: var(--gold-light); font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.about-copy p{ font-size: 1.05rem; line-height: 1.7; color: var(--cream); }
.about-copy h4{
  color: var(--cream);
  letter-spacing: .08em;
  font-size: 1rem;
  margin: 26px 0 8px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
}
.about-copy p strong{ font-weight: 700; }
.contacts{ margin-top: 40px; }
.contacts-label{ font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 14px; }
.contact-icons{ display: flex; gap: 14px; }
.contact-icons a{
  width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.contact-icons a:hover{ transform: translateY(-3px); }
.contact-icons img{ width: 100%; height: 100%; object-fit: contain; }

.about-portrait{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 850px;
  margin-right: -250px; /* bleed the photo outside the container's padding, toward the page edge */
}
.portrait-ring{ position: absolute; top: -100px; right: -100px; width: 3000px; height: auto; opacity: .55; z-index: 0; }
.portrait-photo{
  position: relative;
  z-index: 1;
  width: max(100%, 1080px);
  height: max(100%, 1080px);
  max-height: 640px;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.4));
}
.portrait-caption{
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 70px;
  text-align: center;
  max-width: 320px;
}
.portrait-caption h3{ font-size: 1.3rem; color: var(--white); white-space: nowrap; }
.portrait-caption .role{ color: var(--gold-light); font-family: var(--font-display); font-size: 1.1rem; margin-top: 6px; }
.portrait-caption .cert{ font-size: .95rem; margin-top: 4px; color: var(--cream); }
.cert-trigger{ text-align: center; }

@media (max-width: 1080px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-portrait{
    margin-top: 40px;
    margin-right: 0;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .portrait-ring{ display: none; }
  .portrait-photo{ width: 280px; height: auto; max-height: none; object-fit: contain; }
  .portrait-caption{
    position: relative;
    left: auto; bottom: auto;
    margin-top: 50px;
    text-align: center;
    max-width: none;
  }
  .cert-trigger{ text-align: center; }
}

/* ==========================================================================
   DESTINATIONS PAGE (placeholder)
   ========================================================================== */
.dest-hero{
  background: linear-gradient(180deg, #FBF7EE, #F3E7CE);
  padding: 90px 0 60px;
  text-align: center;
}
.dest-title{ color: var(--navy); font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 10px auto 18px; max-width: 18ch; }
.dest-sub{ color: var(--navy-soft); font-size: 1.1rem; }
.dest-grid{ background: var(--cream); }
.dest-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.dest-card{
  background: var(--white);
  border: 1px solid var(--cream-warm);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(11,33,68,.08);
}
.dest-card-photo{
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.dest-card-body{ padding: 24px 28px 30px; }
.dest-card h3{ color: var(--navy); font-size: 1.35rem; margin-bottom: 12px; }
.dest-card p{ color: var(--ink); font-size: .98rem; margin: 0; }
@media (max-width: 900px){ .dest-cards{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .dest-cards{ grid-template-columns: 1fr; } }

/* ==========================================================================
   ANIMATIONS — reveal-on-scroll, floating cards, turning globe,
   drifting clouds/birds, wavy ocean, texture shimmer, flying icons
   ========================================================================== */

/* Ease-in reveal */
.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.16,.8,.24,1), transform .8s cubic-bezier(.16,.8,.24,1);
  will-change: opacity, transform;
}
.reveal.is-visible{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* Floating cards (Planning page) */
.plan-card{ animation: floatCard 6s ease-in-out infinite; }
.plan-card:nth-child(1){ animation-delay: 0s; }
.plan-card:nth-child(2){ animation-delay: .6s; }
.plan-card:nth-child(3){ animation-delay: 1.2s; }
@keyframes floatCard{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce){ .plan-card{ animation: none; } }

/* Floating cards (Destinations page) */
.dest-card{ animation: floatCard 6.5s ease-in-out infinite; }
.dest-card:nth-child(1){ animation-delay: 0s; }
.dest-card:nth-child(2){ animation-delay: .4s; }
.dest-card:nth-child(3){ animation-delay: .8s; }
.dest-card:nth-child(4){ animation-delay: 1.2s; }
.dest-card:nth-child(5){ animation-delay: 1.6s; }
.dest-card:nth-child(6){ animation-delay: 2s; }
@media (prefers-reduced-motion: reduce){ .dest-card{ animation: none; } }

/* Globe — slow 3D turning impression */
.planning-globe{
  animation: globeTurn 14s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 900px;
}
@keyframes globeTurn{
  0%, 100%{ transform: rotateY(-10deg) rotateX(1deg); }
  50%{ transform: rotateY(10deg) rotateX(-1deg); }
}
@media (prefers-reduced-motion: reduce){ .planning-globe{ animation: none; } }

@media (prefers-reduced-motion: reduce){
  .ocean-layer{ animation: none; }
}

/* Footer — ambient continuous fly/sail loop */
.footer-plane{ animation: footerFly 7s ease-in-out infinite; }
.footer-ship{ animation: footerSail 8s ease-in-out infinite; }
@keyframes footerFly{
  0%, 100%{ transform: rotate(14deg) translate(0,0); }
  50%{ transform: rotate(11deg) translate(10px, -5px); }
}
@keyframes footerSail{
  0%, 100%{ transform: translate(0,0); }
  50%{ transform: translate(-8px, -2px); }
}
@media (prefers-reduced-motion: reduce){
  .footer-plane, .footer-ship{ animation: none; }
}

/* About page — subtle animated texture so the navy panel doesn't feel static */
.about-hero{ position: relative; overflow: hidden; }
.about-hero::before{
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(232,190,114,.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(232,190,114,.05), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(255,255,255,.03), transparent 40%);
  animation: textureDrift 22s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.about-hero .container{ position: relative; z-index: 1; }
@keyframes textureDrift{
  0%, 100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-3%, 2%) scale(1.05); }
}
@media (prefers-reduced-motion: reduce){ .about-hero::before{ animation: none; } }

/* Certifications trigger + modal */
.cert-trigger{
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--cream);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(251,247,238,.4);
}
.cert-trigger:hover{ color: var(--gold-light); }
.cert-modal{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(1,20,46,.72);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cert-modal.open{ display: flex; }
.cert-modal-box{
  background: var(--white);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}
.cert-modal-box h3{ color: var(--navy); margin-bottom: 6px; }
.cert-modal-box p.cert-sub{ color: #4a5568; font-size: .92rem; margin-bottom: 20px; }
.cert-close{
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
  line-height: 1;
}
.cert-upload-label{
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  font-size: .92rem;
}
.cert-upload-label input{ display: none; }
.cert-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}
.cert-grid img{
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--cream-warm);
}
.cert-empty{ color: #6b7280; font-size: .92rem; grid-column: 1 / -1; }

/* ==========================================================================
   EMAIL SUBSCRIBE POPUP
   ========================================================================== */
.subscribe-modal-box{ max-width: 460px; text-align: center; }
.subscribe-modal-box .subscribe-icon{ font-size: 2.2rem; margin-bottom: 6px; }
.subscribe-modal-box h3{ font-size: 1.55rem; margin-bottom: 10px; }
.subscribe-sub{ color: #4a5568; font-size: .96rem; margin-bottom: 22px; line-height: 1.55; }
.subscribe-form{ text-align: left; }
.subscribe-form .booking-field{ margin-bottom: 10px; }
.subscribe-consent{
  font-size: .78rem;
  color: #8a94a6;
  line-height: 1.55;
  margin-top: 14px;
  text-align: center;
}
.subscribe-consent a{ color: var(--navy-soft); text-decoration: underline; text-underline-offset: 2px; }
.subscribe-consent a:hover{ color: var(--gold-deep); }
.subscribe-error{ color: #b3261e; font-size: .85rem; margin-top: 10px; text-align: center; }
.subscribe-maybe-later{
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: .85rem;
  color: #8a94a6;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.subscribe-maybe-later:hover{ color: var(--navy); }
.subscribe-success{ text-align: center; }
.subscribe-success .subscribe-icon{ font-size: 2.6rem; }
.subscribe-success p{ color: #4a5568; font-size: .96rem; }

/* ==========================================================================
   BOOKING MODAL — "Schedule via Calendar" / "Call Me Now"
   ========================================================================== */
.plan-cta-group{
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.plan-cta-group .btn{ width: 100%; text-align: center; }
.booking-modal-box{ text-align: left; }
.booking-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .88rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 16px;
}
.booking-field input{
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 12px;
  border: 1px solid var(--cream-warm);
  border-radius: 8px;
  color: var(--ink);
}
.booking-field input:focus{ outline: 2px solid var(--gold); outline-offset: 1px; }
.booking-field-row{ display: flex; gap: 16px; }
.booking-field-row .booking-field{ flex: 1; }
.booking-or{ text-align: center; color: #8a94a6; font-size: .85rem; margin: 14px 0; }
.booking-modal-box .btn{ width: 100%; display: block; text-align: center; }
.call-now-number{
  text-align: center;
  color: var(--navy);
  font-size: .95rem;
  font-weight: 600;
  margin-top: 10px;
}
.call-now-number a{ color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.booking-error{
  color: #b3261e;
  font-size: .88rem;
  margin-top: 14px;
  text-align: center;
}

/* Live Google Calendar embed inside the booking modal */
.booking-modal-box--calendar{ max-width: 640px; }
.booking-calendar-wrap{ margin: 18px 0 6px; }
.booking-calendar-frame{
  width: 100%;
  height: 560px;
  border: 1px solid var(--cream-warm);
  border-radius: 12px;
}
.booking-calendar-offline{
  padding: 30px 20px;
  text-align: center;
  color: #4a5568;
  font-size: .95rem;
  background: var(--cream);
  border: 1px dashed var(--cream-warm);
  border-radius: 12px;
}
.booking-calendar-fallback{ text-align: center; font-size: .85rem; margin: 6px 0 0; }
.booking-calendar-fallback a{ color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 640px){
  .booking-calendar-frame{ height: 460px; }
}

/* ==========================================================================
   SAIL-FREE OFFER LANDING PAGE
   ========================================================================== */
.lp-body{ background: var(--cream); }

.lp-header{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(228,197,131,.25);
}
.lp-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.lp-brand .brand-mark{ width: 300px; height: auto; }
.lp-partner-tag{
  font-size: .85rem;
  color: var(--gold-light);
  border-left: 1px solid rgba(228,197,131,.4);
  padding-left: 18px;
}
@media (max-width: 560px){
  .lp-partner-tag{ border-left: none; padding-left: 0; }
}

/* ---- Hero ---- */
.lp-hero{ position: relative; overflow: hidden; }
.lp-hero-photo{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.lp-hero-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(1,20,46,.88) 15%, rgba(1,20,46,.55) 55%, rgba(1,20,46,.3));
}
.lp-hero-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 90px 32px;
}
.lp-pitch{ color: var(--cream); }
.lp-badge{
  display: inline-block;
  background: rgba(228,197,131,.15);
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.lp-headline{
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}
.lp-subhead{
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--cream);
  max-width: 46ch;
}

/* Lead form card */
.lp-form-card{
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 32px;
}
.lp-form-card h2{
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.lp-form-sub{ color: #4a5568; font-size: .92rem; margin-bottom: 20px; }
.lp-form-cta{ width: 100%; margin-top: 6px; font-size: 1.02rem; }
.lp-form-micro{
  text-align: center;
  color: #6b7280;
  font-size: .82rem;
  margin-top: 12px;
}

/* ---- Offer highlights ---- */
.lp-offer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.lp-offer-card{
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--cream);
  box-shadow: var(--shadow-soft);
  animation: floatCard 6.5s ease-in-out infinite;
}
.lp-offer-grid .lp-offer-card:nth-child(1){ animation-delay: 0s; }
.lp-offer-grid .lp-offer-card:nth-child(2){ animation-delay: .6s; }
@media (prefers-reduced-motion: reduce){ .lp-offer-card{ animation: none; } }
.lp-offer-icon{ font-size: 2rem; display: block; margin-bottom: 14px; }
.lp-offer-card h3{
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.lp-offer-card ul{ margin: 0; padding-left: 20px; }
.lp-offer-card li{ margin-bottom: 6px; line-height: 1.5; }
.lp-offer-card--clickable{
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.lp-offer-card--clickable:hover, .lp-offer-card--clickable:focus-visible{
  border-color: var(--gold-light);
}
.lp-offer-hint{
  display: block;
  margin-top: 14px;
  font-size: .82rem;
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Option 1 guidelines modal */
.lp-guidelines-box{ max-width: 680px; text-align: left; }
.lp-guidelines-box h3{ color: var(--navy); margin-bottom: 4px; }
.lp-guidelines-box h4{
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 22px 0 8px;
}
.lp-guidelines-list{
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.65;
}
.lp-guidelines-list li{ margin-bottom: 10px; }
.lp-guidelines-sublist{
  list-style: circle;
  margin: 8px 0 0;
  padding-left: 20px;
}
.lp-guidelines-sublist li{ margin-bottom: 4px; }

/* ---- Why book with us ---- */
.lp-why-title{
  font-family: var(--font-display);
  color: var(--navy);
  text-align: center;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 40px;
}
.lp-benefit-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lp-benefit{ text-align: center; padding: 0 12px; }
.lp-benefit-icon{ font-size: 2.2rem; display: block; margin-bottom: 12px; }
.lp-benefit h3{
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.lp-benefit p{ color: #4a5568; font-size: .95rem; line-height: 1.6; }

/* ---- Terms & advisory accordion ---- */
.lp-terms{ background: var(--navy-deep); padding: 50px 0; }
.lp-accordion{
  border-top: 1px solid rgba(228,197,131,.25);
  padding: 18px 0;
}
.lp-accordion:last-child{ border-bottom: 1px solid rgba(228,197,131,.25); }
.lp-accordion summary{
  cursor: pointer;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-accordion summary::-webkit-details-marker{ display: none; }
.lp-accordion summary::after{
  content: '+';
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-left: 16px;
}
.lp-accordion[open] summary::after{ content: '−'; }
.lp-accordion-body{
  color: rgba(251,247,238,.8);
  font-size: .92rem;
  line-height: 1.7;
  padding-top: 14px;
  max-width: 78ch;
}

@media (max-width: 900px){
  .lp-hero-grid{ grid-template-columns: 1fr; padding: 60px 24px; }
  .lp-offer-grid{ grid-template-columns: 1fr; }
  .lp-benefit-grid{ grid-template-columns: 1fr; gap: 32px; }
}
