@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --navy: #071521;
  --deep-blue: #0d2b3e;
  --ocean: #17485c;
  --ivory: #f5f0e6;
  --gold: #c9a56a;
  --burgundy: #542831;
  --teal: #527d7b;
  --pearl: #d8d8d2;
  --white: #ffffff;
  --ink: #17212a;
  --muted: #6f777c;
  --line: rgba(201, 165, 106, 0.34);
  --shadow: 0 24px 70px rgba(4, 13, 22, 0.22);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}
.site-header.scrolled,
.site-header.inner {
  background: rgba(7, 21, 33, 0.94);
  border-bottom: 1px solid rgba(201, 165, 106, 0.25);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}
.logo span { color: var(--gold); }
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}
.main-nav a { opacity: 0.86; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); opacity: 1; }
.header-cta, .btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #10171c;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover, .header-cta:hover { transform: translateY(-2px); background: #d7b77f; }
.btn.secondary {
  background: transparent;
  color: var(--white);
}
.btn.secondary:hover { background: rgba(255,255,255,0.09); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(7,21,33,0.55);
  color: var(--white);
  border-radius: 3px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  color: var(--white);
  isolation: isolate;
}
.hero.short { min-height: 58vh; padding-top: 80px; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7,21,33,0.92), rgba(7,21,33,0.54) 52%, rgba(7,21,33,0.28)),
              linear-gradient(0deg, rgba(7,21,33,0.82), rgba(7,21,33,0.1) 42%);
}
.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 130px 0 80px;
  max-width: 820px;
  justify-self: start;
}
.eyebrow, .kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.section:not(.dark) .kicker,
.form-panel .kicker,
.side-panel .kicker,
.legal-content .kicker {
  color: #315f65;
}
h1, h2, h3 {
  font-family: var(--serif);
  letter-spacing: 0;
  margin: 0;
  line-height: 0.96;
}
h1 { font-size: clamp(3.2rem, 8vw, 7.8rem); max-width: 900px; }
h2 { font-size: clamp(2.25rem, 4.8vw, 4.8rem); color: var(--navy); }
h3 { font-size: clamp(1.55rem, 2.2vw, 2.35rem); color: var(--navy); }
p { line-height: 1.75; }
.hero p { max-width: 690px; font-size: clamp(1rem, 1.7vw, 1.25rem); color: rgba(255,255,255,0.86); }
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.section { padding: 96px 0; }
.section.dark {
  background: radial-gradient(circle at 10% 0, rgba(82,125,123,0.22), transparent 32%), var(--navy);
  color: var(--white);
}
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark p, .section.dark li { color: rgba(255,255,255,0.76); }
.section.dark .card-body h3,
.section.dark .package-card h3,
.section.dark blockquote h3 {
  color: var(--navy);
}
.section.dark .card-body p,
.section.dark .card-body li,
.section.dark .package-card p,
.section.dark .package-card li,
.section.dark blockquote p {
  color: #26343b;
}
.section.dark blockquote cite {
  color: #4d5960;
}
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head p { color: #4d5960; margin: 0; }
.dark .section-head p { color: rgba(255,255,255,0.74); }

.intro-grid, .split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}
.image-frame {
  min-height: 460px;
  border: 1px solid var(--line);
  padding: 12px;
  background: rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.image-frame img { border-radius: 2px; }
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.stat, .notice {
  border: 1px solid var(--line);
  padding: 22px;
  background: rgba(255,255,255,0.5);
}
.stat strong { display: block; font-family: var(--serif); font-size: 2.25rem; color: var(--burgundy); line-height: 1; }
.stat span { color: #4d5960; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid rgba(13,43,62,0.12);
  box-shadow: 0 14px 45px rgba(13,43,62,0.09);
  overflow: hidden;
  border-radius: 4px;
}
.card:hover .card-media img, .destination-card:hover img { transform: scale(1.04); }
.card-media { height: 250px; overflow: hidden; }
.card-media img, .destination-card img { transition: transform 0.5s ease; }
.card-body { padding: 26px; }
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 14px 0;
}
.tag {
  display: inline-flex;
  border: 1px solid var(--line);
  color: var(--burgundy);
  padding: 6px 9px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.card-body p,
.package-card p,
.notice p,
.legal-content p,
.form-panel p,
.side-panel p {
  color: #35434a;
}
.card ul, .rich-list { padding-left: 18px; color: #35434a; line-height: 1.8; }
.package-card {
  padding: 30px;
  background: linear-gradient(180deg, #ffffff, #f7f2e8);
  border-top: 4px solid var(--gold);
}
.price { color: var(--burgundy); font-weight: 800; margin: 12px 0; text-transform: uppercase; }
.experience-tile {
  min-height: 390px;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.experience-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,21,33,0.9), rgba(7,21,33,0.08));
}
.experience-tile img { position: absolute; inset: 0; }
.experience-tile div { position: relative; z-index: 1; padding: 26px; }
.experience-tile h3 { color: var(--white); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.step { padding: 30px; border-right: 1px solid var(--line); background: rgba(255,255,255,0.04); }
.step:last-child { border-right: 0; }
.step b { color: var(--gold); font-family: var(--serif); font-size: 2rem; }

.destination-card {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  color: var(--white);
}
.destination-card img { position: absolute; inset: 0; }
.destination-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,21,33,0.88), rgba(7,21,33,0.12)); }
.destination-card div { position: relative; z-index: 1; padding: 26px; }
.destination-card h3 { color: var(--white); }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
blockquote { margin: 0; padding: 28px; background: var(--white); border-left: 3px solid var(--gold); box-shadow: 0 12px 34px rgba(13,43,62,0.08); }
blockquote p { font-family: var(--serif); font-size: 1.35rem; color: var(--navy); }
blockquote cite { color: #4d5960; font-style: normal; font-weight: 800; }

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 110px 0;
}
.cta-band img { position: absolute; inset: 0; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(7,21,33,0.72); z-index: -1; }
.cta-band h2 { color: var(--white); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.filter-btn.active, .filter-btn:hover { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.voyage-card[hidden] { display: none; }

.comparison { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow); }
.comparison th, .comparison td { padding: 18px; border: 1px solid rgba(13,43,62,0.12); text-align: left; vertical-align: top; }
.comparison th { background: var(--navy); color: var(--white); }
.comparison td { color: #26343b; }
.comparison td:first-child { font-weight: 800; color: var(--burgundy); }

.form-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr); gap: 34px; align-items: start; }
.form-panel, .side-panel {
  background: var(--white);
  border: 1px solid rgba(13,43,62,0.12);
  box-shadow: var(--shadow);
  padding: 30px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field.full { grid-column: 1 / -1; }
label { display: block; font-weight: 800; margin-bottom: 8px; color: var(--navy); }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(13,43,62,0.18);
  background: #fbfaf6;
  color: var(--ink);
  padding: 12px 13px;
  border-radius: 3px;
}
textarea { min-height: 130px; resize: vertical; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; }
.checkbox input { width: auto; min-height: auto; margin-top: 6px; }
.success-message { display: none; margin-top: 18px; padding: 16px; background: rgba(82,125,123,0.14); border: 1px solid var(--teal); color: var(--navy); font-weight: 700; }
.success-message.show { display: block; }

.legal-content {
  max-width: 900px;
  background: var(--white);
  padding: 42px;
  border: 1px solid rgba(13,43,62,0.12);
  box-shadow: var(--shadow);
}
.legal-content h2 { font-size: 2.2rem; margin-top: 34px; }

.site-footer {
  background: #050e17;
  color: rgba(255,255,255,0.76);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
}
.site-footer h3 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.84rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a { display: block; margin: 10px 0; color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--gold); }
.footer-email {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,0.75);
}
.side-panel .footer-email {
  display: inline;
  margin: 0;
  color: #35434a;
}
.age-note { border-top: 1px solid rgba(201,165,106,0.22); margin-top: 34px; padding-top: 22px; font-size: 0.86rem; }

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: rgba(7,21,33,0.96);
  color: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: var(--shadow);
}
.cookie-banner.show { display: grid; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button, .cookie-actions a {
  border: 1px solid var(--gold);
  padding: 10px 13px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}
.cookie-actions button:first-child { background: var(--gold); color: #10171c; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    background: rgba(7,21,33,0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }
  .menu-open .main-nav { transform: translateY(0); }
  .main-nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .section-head, .intro-grid, .split, .form-layout { grid-template-columns: 1fr; }
  .card-grid, .card-grid.two, .card-grid.four, .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .nav-wrap { min-height: 68px; }
  h1 { font-size: clamp(2.7rem, 17vw, 4.2rem); }
  .hero-content { padding-top: 104px; }
  .section { padding: 68px 0; }
  .card-grid, .card-grid.two, .card-grid.four, .quote-grid, .stats, .steps, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .step, .step:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .comparison, .comparison thead, .comparison tbody, .comparison tr, .comparison th, .comparison td { display: block; }
  .comparison thead { display: none; }
  .comparison tr { margin-bottom: 16px; border: 1px solid rgba(13,43,62,0.12); background: var(--white); }
  .comparison td { border: 0; border-bottom: 1px solid rgba(13,43,62,0.08); }
  .comparison td::before { content: attr(data-label); display: block; color: var(--muted); font-size: 0.76rem; text-transform: uppercase; font-weight: 800; margin-bottom: 6px; }
  .cookie-banner { grid-template-columns: 1fr; }
  .image-frame { min-height: 330px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
