:root {
  --marine-900: #0b2f45;
  --marine-800: #123b57;
  --marine-700: #1a4a6b;
  --azure-600: #226b95;
  --azure-500: #2e86ab;
  --azure-400: #5db2d8;
  --sand-100: #fbf3e7;
  --sand-050: #fffbf4;
  --white: #ffffff;
  --coral-500: #ff6b4a;
  --coral-600: #e2502f;
  --green-500: #2f9e6b;
  --green-600: #237a53;
  --gold-400: #f5b942;
  --text-900: #14293a;
  --text-600: #3e5870;
  --text-muted: #64798c;
  --border-soft: rgba(11, 47, 69, 0.1);

  --font-head: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 18px 40px -18px rgba(11, 47, 69, 0.42);
  --shadow-card: 0 10px 30px -14px rgba(11, 47, 69, 0.28);
  --container-w: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16.5px;
}
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--marine-900); line-height: 1.15; margin: 0 0 .5em; }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: var(--azure-600); text-decoration-thickness: 1.5px; }
a:hover { color: var(--coral-600); }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--coral-600);
  margin-bottom: .6em;
}
.section-head { max-width: 720px; margin: 0 0 2.4rem; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
section { padding: 5rem 0; }
.bg-sand { background: var(--sand-100); }
.link-inline { color: var(--azure-600); font-weight: 700; text-underline-offset: 3px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .95em 1.9em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-500); color: var(--white); box-shadow: 0 12px 26px -10px rgba(47,158,107,.55); }
.btn-primary:hover { background: var(--green-600); color: var(--white); }
.btn-secondary { background: transparent; color: var(--marine-900); border-color: var(--marine-900); }
.btn-secondary:hover { background: var(--marine-900); color: var(--white); }
.btn-light { background: var(--white); color: var(--marine-900); }
.btn-light:hover { background: var(--gold-400); color: var(--marine-900); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: var(--white); color: var(--marine-900); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 47, 69, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-bar { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { flex: none; display: block; width: 42px; height: 42px; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--white); }

.site-nav ul { display: flex; align-items: center; gap: 1.7rem; }
.site-nav a { color: rgba(255,255,255,.88); text-decoration: none; font-weight: 600; font-size: .94rem; position: relative; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--coral-500); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--white); position: relative; }
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--white); transition: transform .2s ease;
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.hamburger[aria-expanded="true"] span { background: transparent; }
.hamburger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; padding: 0; overflow: hidden; color: var(--white); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,47,69,.86) 0%, rgba(11,47,69,.76) 45%, rgba(11,47,69,.94) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 5.5rem 24px 4.5rem; max-width: 780px; }
.hero-content h1 { color: var(--white); font-size: clamp(2.2rem, 1.7rem + 2.4vw, 3.4rem); margin-bottom: .7rem; }
.hero-intro { font-size: 1.12rem; color: rgba(255,255,255,.92); max-width: 620px; }

.fact-card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: 1.8rem;
}
.fact-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: .65rem; padding: 1rem .6rem;
}
.fact-icon {
  flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--sand-100);
  display: flex; align-items: center; justify-content: center; color: var(--azure-600); font-size: 1.3rem;
}
.fact-card h3 { font-size: .98rem; margin-bottom: 0; }
.fact-card p { font-size: .86rem; color: var(--text-muted); margin: 0; }

.gallery-container { max-width: 1280px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card);
  aspect-ratio: 4/3; border: none; padding: 0; margin: 0; display: block; width: 100%;
  background: none; cursor: default; appearance: none; font: inherit;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,47,69,.6) 100%);
  transition: opacity .25s ease;
}
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }
.gallery-zoom {
  position: absolute; right: 12px; bottom: 12px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--marine-900); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease;
}
.gallery-item:hover .gallery-zoom, .gallery-item:focus-visible .gallery-zoom { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 300;
  box-sizing: border-box; padding: 3.4rem 1.2rem;
  background: rgba(11,47,69,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-frame { position: relative; max-width: 100%; max-height: 100%; display: flex; }
.lightbox img {
  display: block; max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; border-radius: var(--radius-md); box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 40px; height: 40px; border-radius: 50%;
  background: var(--marine-900); color: var(--white); border: 2px solid rgba(255,255,255,.5); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .15s ease;
  box-shadow: 0 6px 18px -4px rgba(0,0,0,.6);
}
.lightbox-close:hover { background: var(--green-600); }
.lightbox-close svg { width: 20px; height: 20px; }

.story-grid { display: grid; grid-template-columns: 1fr; gap: 2.6rem; align-items: center; }
.story-text p { color: var(--text-600); }

.panel-card { background: var(--sand-100); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 2rem; }
.panel-card h4 { margin-bottom: 1.2rem; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--marine-900); }
.stat-list { display: flex; flex-direction: column; gap: 1.3rem; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: var(--azure-600); line-height: 1; margin-bottom: .3rem; }
.stat-label { font-size: .88rem; color: var(--text-muted); }

.quote-panel { background: var(--marine-900); color: var(--white); border-radius: var(--radius-lg); padding: 2.2rem; }
.quote-panel p { color: rgba(255,255,255,.92); font-family: var(--font-head); font-size: 1.15rem; font-style: italic; margin-bottom: .8rem; }
.quote-panel cite { color: var(--gold-400); font-size: .8rem; font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

.itinerary-wrap { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.timeline { position: relative; padding-left: 2.6rem; }
.timeline::before {
  content: ""; position: absolute; left: 11px; top: 10px; bottom: 10px; width: 3px;
  background: linear-gradient(180deg, var(--coral-500), var(--azure-500));
  border-radius: 3px;
}
.timeline-item { position: relative; padding-bottom: 2.2rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -2.6rem; top: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--coral-500); border: 4px solid var(--sand-100); box-shadow: 0 0 0 2px var(--coral-500);
}
.timeline-item.is-end .timeline-dot { background: var(--azure-600); box-shadow: 0 0 0 2px var(--azure-600); }
.timeline-item h3 { margin-bottom: .25rem; font-size: 1.15rem; }
.timeline-item .duration { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--azure-600); background: var(--sand-100); padding: .2em .7em; border-radius: 999px; margin-bottom: .4rem; }
.timeline-item p { color: var(--text-muted); margin-bottom: 0; }

.cta-banner {
  background: linear-gradient(120deg, var(--marine-900), var(--marine-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  text-align: center;
  margin: 0 auto;
}
.cta-banner h3 { color: var(--white); font-size: 1.5rem; }
.cta-banner p { color: rgba(255,255,255,.82); }
.cta-banner .btn-row { justify-content: center; }
.cta-wrap { padding: 0 0 5rem; }

.onboard-grid { display: grid; grid-template-columns: 1fr; gap: 2.6rem; align-items: start; }
.highlight-list { display: grid; gap: .9rem; margin-bottom: 1.6rem; }
.highlight-list li { display: flex; gap: .8rem; align-items: flex-start; font-size: .98rem; }
.highlight-list li::before { content: "◆"; color: var(--coral-500); font-size: .7rem; margin-top: .45em; flex: none; }
.watch-box { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 1.3rem 1.4rem; margin-bottom: 1.2rem; }
.watch-box h4 { margin-bottom: .5rem; font-size: 1rem; color: var(--marine-900); }
.watch-box p { margin-bottom: 0; font-size: .92rem; color: var(--text-muted); }
.watch-box ul { display: flex; flex-direction: column; gap: .45rem; margin-top: .3rem; }
.watch-box li { font-size: .92rem; color: var(--text-muted); display: flex; gap: .5rem; }
.watch-box li::before { content: "✓"; color: var(--azure-600); font-weight: 700; flex: none; }

.legend-grid { display: grid; grid-template-columns: 1fr; gap: 2.6rem; align-items: start; }

.meeting-wrap { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.meeting-card {
  background: var(--marine-900); color: var(--white); border-radius: var(--radius-lg); padding: 2.4rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.meeting-card h3 { color: var(--white); }
.meeting-card p { color: rgba(255,255,255,.85); margin-bottom: 0; }
.meeting-addr { font-weight: 700; color: var(--gold-400); }

.faq-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.faq-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 1.5rem 1.5rem 1.6rem; box-shadow: var(--shadow-card); }
.faq-card h3 { font-size: 1.05rem; margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem; }
.faq-card ul { display: flex; flex-direction: column; gap: .5rem; }
.faq-card li { font-size: .93rem; display: flex; gap: .55rem; }
.faq-card.faq-yes li::before { content: "✓"; color: var(--azure-600); font-weight: 700; }
.faq-card.faq-no li::before { content: "✕"; color: var(--coral-600); font-weight: 700; }
.faq-card.faq-neutral li::before { content: "•"; color: var(--marine-900); font-weight: 700; }

.reviews-grid { columns: 1; column-gap: 1.4rem; }
.review-card {
  break-inside: avoid; background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-md); padding: 1.4rem 1.4rem 1.5rem; box-shadow: var(--shadow-card);
  margin-bottom: 1.4rem;
}
.review-stars { color: var(--gold-400); font-size: 1rem; letter-spacing: .12em; margin-bottom: .5rem; }
.review-card p.review-text { color: var(--text-900); font-size: .96rem; }
.review-meta { display: flex; flex-direction: column; margin-bottom: .55rem; }
.review-name { font-weight: 700; font-family: var(--font-head); color: var(--marine-900); }
.review-loc { font-size: .8rem; color: var(--text-muted); }
.review-reply {
  margin-top: .9rem; padding: .8rem 1rem; background: var(--sand-100); border-radius: 10px;
  font-size: .87rem; color: var(--marine-800);
}
.review-reply strong { color: var(--azure-600); }

.precta { background: var(--green-500); color: var(--white); }
.precta .container { display: grid; grid-template-columns: 1fr; gap: 1.6rem; align-items: center; padding-top: 3.2rem; padding-bottom: 3.2rem; }
.precta h3 { color: var(--white); font-size: 1.7rem; margin-bottom: .4rem; }
.precta p { color: rgba(255,255,255,.94); margin-bottom: 0; }
.precta-btn { display: flex; }

.site-footer { background: var(--marine-900); color: rgba(255,255,255,.82); padding: 3.6rem 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.4rem; margin-bottom: 2.4rem; }
.footer-cta-col { background: rgba(255,255,255,.06); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.footer-cta-col h4 { color: var(--white); font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 0; }
.footer-cta-col p { color: rgba(255,255,255,.8); margin-bottom: 0; font-size: .95rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; }
.footer-brand .brand-mark { width: 38px; height: 38px; }
.footer-brand-name { font-family: var(--font-head); color: var(--white); font-size: 1.1rem; font-weight: 600; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .94rem; }
.footer-col a:hover { color: var(--gold-400); }
.footer-col p { font-size: .94rem; margin-bottom: .4rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.4rem; display: flex; flex-direction: column; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.6); text-align: center; }

.back-to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-500); color: var(--white); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(47,158,107,.6);
  cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

@media (max-width: 899px) {
  .hamburger { display: inline-flex; }
  .site-nav {
    position: fixed; top: 70px; left: 0; right: 0;
    height: calc(100vh - 70px); height: calc(100dvh - 70px);
    background: var(--marine-900);
    transform: translateX(100%); transition: transform .28s ease;
    padding: 1.6rem 0; overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li { border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav a { display: block; padding: 1.05rem 24px; font-size: 1.05rem; }
  .site-nav a::after { display: none; }

  .btn { width: min(86vw, 340px); }
  .btn-row { flex-direction: column; align-items: center; }
  .btn-row .btn { width: min(86vw, 340px); }
  .cta-banner .btn-row, .precta-btn { justify-content: center; }

  /* Full-size photo preview is desktop-only; strip the affordance on mobile. */
  .gallery-zoom { display: none; }
  .gallery-item::after { display: none; }
  .gallery-hint { display: none; }
}

@media (min-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 640px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 780px) {
  .meeting-wrap { grid-template-columns: 1.1fr .9fr; }
  .reviews-grid { columns: 2; }
}

@media (min-width: 900px) {
  .hamburger { display: none; }
  .site-nav { position: static; transform: none; background: transparent; padding: 0; overflow: visible; }
  .site-nav ul { flex-direction: row; }
  .site-nav li { border: none; }
  .site-nav a { padding: 0; }

  .gallery-item { cursor: pointer; }

  .story-grid { grid-template-columns: 1fr 1fr; }
  .itinerary-wrap { grid-template-columns: 1fr .85fr; }
  .onboard-grid { grid-template-columns: .95fr 1.05fr; }
  .legend-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: repeat(3, 1fr); }
  .precta .container { grid-template-columns: 1fr auto; text-align: left; }
  .footer-grid { grid-template-columns: 1.1fr 1fr 1fr 1.2fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
}


@media (min-width: 1100px) {
  .reviews-grid { columns: 3; }
}
