/* ═══════════════════════════════════════════════
   THE WATER TRAVELER — styles.css
   Shared across all pages
═══════════════════════════════════════════════ */

/* ─── RESET & TOKENS ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:   #0c1b2e;
  --navy2:  #152538;
  --teal:   #1a6b72;
  --teal2:  #22868e;
  --gold:   #c4922a;
  --gold2:  #d4a845;
  --sand:   #f4ede0;
  --sand2:  #faf7f2;
  --white:  #ffffff;
  --tm:     #4a5568;
  --tl:     #8a9bb0;
  --bdr:    rgba(196, 146, 42, 0.22);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sand2);
  color: var(--navy);
  overflow-x: hidden;
}

/* ─── NAVIGATION ─────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(12, 27, 46, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bdr);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
}

.nav-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
}
.nav-logo-img {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.nav-logo-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; display: block; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 500; letter-spacing: .1em;
  color: #fff; text-transform: uppercase;
}

.nav-right { display: flex; align-items: center; gap: 4px; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links li { position: relative; }
.nav-links a {
  font-size: .72rem; font-weight: 500; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255,255,255,.72);
  text-decoration: none; padding: 8px 13px; display: block;
  transition: color .2s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold2); }

.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--navy2);
  border: 1px solid var(--bdr); border-top: 2px solid var(--gold);
  min-width: 210px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px); transition: all .2s;
}
.nav-links li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a { padding: 9px 16px; font-size: .68rem; border-bottom: 1px solid rgba(255,255,255,.06); }

/* Hamburger */
.ham-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.ham-btn span { display: block; width: 24px; height: 2px; background: #fff; transition: all .3s; }
.ham-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham-btn.open span:nth-child(2) { opacity: 0; }
.ham-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 190;
  overflow-y: auto; padding: 20px 0 40px;
}
.mob-menu.open { display: block; }
.mob-menu a {
  display: block; width: 100%; padding: 14px 28px;
  font-size: .85rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.06);
}
.mob-menu a:hover { color: var(--gold2); }
.mob-sub { padding-left: 48px !important; font-size: .75rem !important; color: rgba(255,255,255,.5) !important; }
/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: .72rem; font-weight: 500; letter-spacing: .13em;
  text-transform: uppercase; text-decoration: none;
  padding: 13px 28px; border-radius: 2px;
  transition: all .2s; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline-w { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.42); }
.btn-outline-w:hover { border-color: var(--gold); color: var(--gold2); }
.btn-outline-g { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-g:hover { background: var(--gold); color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy2); }

/* ─── LAYOUT HELPERS ─────────────────────────── */
.px { padding-left: clamp(20px, 5vw, 80px); padding-right: clamp(20px, 5vw, 80px); }
.py { padding-top: clamp(60px, 8vw, 100px); padding-bottom: clamp(60px, 8vw, 100px); }
.py-sm { padding-top: 50px; padding-bottom: 50px; }

.tag {
  font-size: .67rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.tag::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.tag-w { color: rgba(255,255,255,.6); }
.tag-w::before { background: rgba(255,255,255,.4); }

h2.title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300; line-height: 1.12; color: var(--navy); margin-bottom: 18px;
}
h2.title em { font-style: italic; color: var(--teal); }

h2.title-w {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300; line-height: 1.12; color: #fff; margin-bottom: 18px;
}
h2.title-w em { font-style: italic; color: var(--gold2); }

.body-text { font-size: .95rem; line-height: 1.78; color: var(--tm); max-width: 540px; }
.body-text-w { font-size: .95rem; line-height: 1.78; color: rgba(255,255,255,.68); max-width: 540px; }
.gold-rule { width: 52px; height: 2px; background: var(--gold); margin: 18px 0; }
.center { text-align: center; }
.center .tag { justify-content: center; }
.center .tag::before { display: none; }
.mt-btn { margin-top: 28px; display: inline-block; }

/* ─── HERO (home) ────────────────────────────── */
.hero {
  height: 100vh; min-height: 580px;
  position: relative; overflow: hidden; margin-top: 68px;
  display: flex; align-items: flex-end;
  padding: 0 clamp(20px, 5vw, 80px) clamp(48px, 6vw, 80px);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04); transition: transform 7s ease;
}
/* NOTE: .hero-bg overlay is replaced by .hero-overlay on the home carousel.
   Inner-page loc-hero still uses its own ::after below. */
.hero-body { position: relative; z-index: 1; max-width: 640px; }
.hero-tag {
  font-size: .67rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold2);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.hero-tag::before { content: ''; width: 34px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.07; color: #fff; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold2); }
.hero p { font-size: .97rem; line-height: 1.72; color: rgba(255,255,255,.8); max-width: 480px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── HERO CAROUSEL ──────────────────────────── */

/* Stacks all slides absolutely inside .hero */
.carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Each slide: full-cover, invisible by default */
.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 7s ease;
  will-change: opacity, transform;
}

/* Active slide fades in and slowly zooms */
.carousel-slide.active {
  opacity: 1;
  transform: scale(1.08);
}

/* Dark gradient overlay — sits above slides, below content */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(12, 27, 46, 0.88) 0%,
    rgba(12, 27, 46, 0.50) 55%,
    rgba(12, 27, 46, 0.15) 100%
  );
  pointer-events: none;
}

/* Hero content sits above overlay */
.hero-body { z-index: 2; }

/* Dot indicators — bottom-center of hero */
.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.65);
}

/* Prev / Next arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(12, 27, 46, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}

.carousel-arrow:hover {
  background: rgba(196, 146, 42, 0.7);
  border-color: var(--gold);
}

.carousel-prev { left: clamp(14px, 3vw, 32px); }
.carousel-next { right: clamp(14px, 3vw, 32px); }

@media (max-width: 480px) {
  .carousel-arrow { display: none; }
  .carousel-dots  { bottom: 18px; }
}

/* ─── LOCATION HERO (inner pages) ───────────── */
.loc-hero {
  height: clamp(320px, 45vh, 540px);
  position: relative; overflow: hidden; margin-top: 68px;
  display: flex; align-items: flex-end;
  padding: clamp(28px, 4vw, 52px) clamp(20px, 5vw, 80px);
}
.loc-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.loc-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,27,46,.88) 0%, rgba(12,27,46,.3) 65%, transparent 100%);
}
.loc-hero-body { position: relative; z-index: 1; }
.loc-hero-body h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300; color: #fff; line-height: 1.08; margin-bottom: 8px;
}
.loc-hero-body p { font-size: .95rem; color: rgba(255,255,255,.75); max-width: 480px; }

/* ─── DESTINATION CARDS ──────────────────────── */
.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--bdr);
  margin-top: clamp(36px, 4vw, 60px);
}
.dest-card {
  position: relative; overflow: hidden; cursor: pointer;
  height: clamp(320px, 40vw, 520px);
  border-right: 1px solid var(--bdr);
}
.dest-card:last-child { border-right: none; }
.dest-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease; filter: brightness(.52);
}
.dest-card:hover .dest-bg { transform: scale(1.06); filter: brightness(.42); }
.dest-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(20px, 3vw, 32px) 24px;
  background: linear-gradient(to top, rgba(12,27,46,.94) 0%, transparent 100%);
}
.dest-sub { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold2); margin-bottom: 6px; font-weight: 500; }
.dest-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300; color: #fff; margin-bottom: 8px; line-height: 1.08;
}
.dest-card p { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.55; margin-bottom: 16px; }
.dest-list {
  list-style: none; display: grid; gap: 6px; margin: 0 0 16px;
  font-size: .76rem; line-height: 1.4; color: rgba(255,255,255,.78);
}
.dest-list li { display: flex; gap: 7px; align-items: flex-start; }
.dest-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold2); margin-top: 8px; flex-shrink: 0; }
.dest-link {
  font-size: .67rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold2); font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.dest-link::after { content: '→'; transition: transform .2s; }
.dest-card:hover .dest-link::after { transform: translateX(4px); }
.dest-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--navy);
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 9px; font-weight: 500;
}

/* ─── TWO-COLUMN LAYOUT ──────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.img-frame { aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--bdr); background: var(--navy2); }
.img-frame img,
.img-frame video,
.img-frame div { width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center; }

/* ─── GALLERY LINKS & PAGES ──────────────────── */
.gallery-link-grid {
  display: grid; gap: 1px; background: var(--bdr); border: 1px solid var(--bdr);
  margin-top: clamp(32px, 4vw, 52px);
}
.gallery-link-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-link-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-link-grid.cols-1 { grid-template-columns: minmax(280px, 520px); }
.gallery-link-card {
  position: relative; min-height: 280px; overflow: hidden; text-decoration: none; display: flex; align-items: flex-end;
}
.gallery-link-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,27,46,.08), rgba(12,27,46,.88));
}
.gallery-link-card > div[style] {
  position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center;
  transition: transform .35s, filter .35s;
}
.gallery-link-card:hover > div[style] { transform: scale(1.05); filter: brightness(.82); }
.gallery-link-body { position: relative; z-index: 1; padding: 28px; }
.gallery-link-body h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400;
  color: #fff; margin-bottom: 6px;
}
.gallery-link-body p { font-size: .82rem; line-height: 1.55; color: rgba(255,255,255,.68); margin-bottom: 14px; }
.gallery-page-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px; margin-top: clamp(32px, 4vw, 52px);
}
.gallery-page-grid a {
  display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy2);
  border: 1px solid var(--bdr);
}
.gallery-page-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.gallery-page-grid a:hover img { transform: scale(1.04); }
.gallery-empty { color: var(--tm); font-size: .92rem; margin-top: 24px; }
.lightbox-open > :not(.gallery-lightbox) { filter: blur(8px); }
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: none; align-items: center; justify-content: center;
  padding: clamp(20px, 4vw, 56px);
  background: rgba(12,27,46,.72);
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox-inner {
  position: relative; max-width: min(1100px, 92vw); max-height: 88vh;
  background: rgba(12,27,46,.92); border: 1px solid var(--bdr);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.gallery-lightbox img {
  display: block; max-width: 100%; max-height: 88vh; width: auto; height: auto;
  object-fit: contain;
}
.gallery-lightbox-close {
  position: absolute; top: 10px; right: 10px; width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.25); background: rgba(12,27,46,.8);
  color: #fff; font-size: 1.35rem; line-height: 1; cursor: pointer;
}
.gallery-lightbox-close:hover { border-color: var(--gold); color: var(--gold2); }

/* ─── WAIVER ─────────────────────────────────── */
.waiver-panel {
  background: var(--sand2); border: 1px solid var(--bdr);
  padding: clamp(28px, 5vw, 56px); margin-top: clamp(32px, 4vw, 52px);
}
.waiver-panel h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400;
  margin: 28px 0 10px; color: var(--navy);
}
.waiver-panel h3:first-child { margin-top: 0; }
.waiver-panel p,
.waiver-panel li { font-size: .9rem; line-height: 1.75; color: var(--tm); }
.waiver-panel ul { padding-left: 20px; margin: 8px 0 16px; }
.waiver-fields {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px; margin-bottom: 24px;
}
.waiver-field { border-bottom: 1px solid var(--bdr); padding-bottom: 8px; color: var(--tm); font-size: .88rem; }

/* ─── OFFERINGS GRID ─────────────────────────── */
.offer-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px; background: var(--bdr); border: 1px solid var(--bdr);
  margin-top: clamp(32px, 4vw, 52px);
}
.offer-card {
  background: var(--sand2); padding: clamp(28px, 3vw, 40px) 32px;
  position: relative; overflow: hidden;
}
.offer-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--gold);
  transform: scaleY(0); transform-origin: bottom; transition: transform .3s;
}
.offer-card:hover::before { transform: scaleY(1); }
.offer-icon { font-size: 1.9rem; margin-bottom: 18px; display: block; }
.offer-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400; margin-bottom: 4px; color: var(--navy); }
.offer-size { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 12px; }
.offer-price { font-size: .85rem; color: var(--gold); font-weight: 500; margin-bottom: 12px; }
.offer-card p { font-size: .88rem; line-height: 1.7; color: var(--tm); margin-bottom: 22px; }

/* ─── SIGHTS GRID ────────────────────────────── */
.sights-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px; margin-top: clamp(32px, 4vw, 50px);
}
.sight {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  padding: 24px 22px; border-radius: 2px; transition: all .2s;
}
.sight:hover { background: rgba(196,146,42,.09); border-color: rgba(196,146,42,.3); }
.sight h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 400; color: #fff; margin-bottom: 8px; }
.sight p { font-size: .8rem; line-height: 1.62; color: rgba(255,255,255,.52); }

/* ─── ADD-ONS GRID ───────────────────────────── */
.addon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: clamp(16px, 2vw, 24px); margin-top: clamp(32px, 4vw, 50px); }
.addon { background: #fff; border: 1px solid var(--bdr); padding: 28px 24px; position: relative; transition: box-shadow .2s, border-color .2s; }
.addon:hover { box-shadow: 0 8px 28px rgba(12,27,46,.08); border-color: var(--gold); }
.addon h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--navy); margin-bottom: 4px; }
.addon-sub { font-size: .72rem; color: var(--tm); margin-bottom: 10px; }
.addon-price { font-size: .9rem; font-weight: 500; color: var(--gold); }

/* ─── PACKAGE BANNER ─────────────────────────── */
.pkg-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  padding: clamp(40px, 5vw, 60px) clamp(20px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px;
}
.pkg-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 300; color: #fff; margin-bottom: 8px; }
.pkg-items { display: flex; gap: clamp(16px, 3vw, 28px); flex-wrap: wrap; margin-bottom: 14px; }
.pkg-item-label { font-size: .78rem; color: rgba(255,255,255,.58); }
.pkg-item-val { font-size: .92rem; color: #fff; font-weight: 500; }
.pkg-total { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--gold2); font-style: italic; }

/* ─── WINTER CARDS ───────────────────────────── */
.winter-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: clamp(16px, 2vw, 24px); margin-top: clamp(32px, 4vw, 50px); }
.winter-card { background: #fff; border: 1px solid var(--bdr); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.winter-card:hover { box-shadow: 0 8px 28px rgba(12,27,46,.1); border-color: var(--gold); }
.winter-card-img { height: 180px; background-size: cover; background-position: center; }
.winter-card-body { padding: 24px 22px; }
.winter-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--navy); margin-bottom: 8px; }
.winter-card p { font-size: .85rem; line-height: 1.68; color: var(--tm); margin-bottom: 12px; }
.winter-price { font-size: .9rem; font-weight: 500; color: var(--gold); }

/* ─── CREW ───────────────────────────────────── */
.crew-grid { display: grid; grid-template-columns: minmax(280px, 420px); justify-content: center; gap: 1px; 
  /* background: var(--bdr);  */
  background: var(--sand2);
  border: 1px solid var(--bdr); margin-top: clamp(36px, 4vw, 60px); }
.crew-card { background: var(--sand2); padding: clamp(36px, 4vw, 52px) 36px; text-align: center; }
.crew-ava { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 18px; overflow: hidden; border: 3px solid var(--gold); background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; }
.crew-ava img { width: 100%; height: 100%; object-fit: cover; }
.crew-role { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 7px; }
.crew-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400; margin-bottom: 12px; }
.crew-card p { font-size: .87rem; line-height: 1.7; color: var(--tm); }

/* ─── CONTACT ────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--bdr); margin-top: clamp(36px, 4vw, 60px); }
.contact-info { background: var(--navy); padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 52px); }
.contact-form-panel { background: var(--sand2); padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 52px); }
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; color: #fff; margin-bottom: 28px; }
.cinfo { display: flex; gap: 12px; margin-bottom: 20px; align-items: flex-start; }
.cinfo-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.cinfo-text { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.cinfo-text a { color: rgba(255,255,255,.82); text-decoration: none; }
.cinfo-text a:hover { color: var(--gold2); }
.flabel { display: block; font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; color: var(--tm); font-weight: 500; margin-bottom: 7px; }
.finput, .ftextarea {
  width: 100%; padding: 11px 14px; border: 1px solid rgba(0,0,0,.14);
  background: #fff; font-family: 'DM Sans', sans-serif; font-size: .9rem;
  color: var(--navy); border-radius: 2px; outline: none; transition: border-color .2s;
}
.finput:focus, .ftextarea:focus { border-color: var(--teal); }
.ftextarea { resize: vertical; min-height: 110px; }
.fgroup { margin-bottom: 18px; }

/* ─── TESTIMONIAL ────────────────────────────── */
.testi-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.quote-glyph { font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: .55; color: var(--gold); opacity: .45; display: block; margin-bottom: 14px; }
blockquote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-style: italic; font-weight: 300; color: #fff; line-height: 1.6; margin-bottom: 22px; }
.testi-attr { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold2); font-weight: 500; }

/* ─── PARTNERS ───────────────────────────────── */
.partners-wrap { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; }
.partner { font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; color: var(--tm); font-weight: 500; text-decoration: none; border: 1px solid rgba(0,0,0,.1); padding: 7px 14px; transition: all .2s; opacity: .7; }
.partner:hover { opacity: 1; border-color: var(--gold); }
.section-label { font-size: .63rem; letter-spacing: .2em; text-transform: uppercase; color: var(--tl); text-align: center; margin-bottom: 24px; }

/* ─── STATS STRIP ────────────────────────────── */
.stats-strip { background: var(--teal); padding: clamp(28px, 4vw, 44px) clamp(20px, 5vw, 80px); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 0 12px; }
.stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.15); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: #fff; margin-bottom: 4px; }
.stat-label { font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.62); font-weight: 500; }

/* ─── BACKGROUNDS ────────────────────────────── */
.bg-navy  { background: var(--navy); }
.bg-sand  { background: var(--sand); }
.bg-sand2 { background: var(--sand2); }
.bg-white { background: #fff; }
.bg-teal  { background: var(--teal); }

/* ─── NOTICE BOX ─────────────────────────────── */
.notice {
  padding: 28px 32px; background: var(--navy); border-left: 3px solid var(--gold);
  font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.6;
  margin-top: 36px;
}
.notice strong { color: #fff; }
.notice a { color: var(--gold2); }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--navy); border-top: 1px solid var(--bdr);
  padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 80px) 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 52px); margin-bottom: 48px; }
.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: .83rem; line-height: 1.7; color: rgba(255,255,255,.44); margin-bottom: 18px; }
.footer-logo { width: 36px; height: 36px; object-fit: contain; display: block; margin-bottom: 14px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.44); text-decoration: none; font-size: .78rem; transition: all .2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: .83rem; color: rgba(255,255,255,.44); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.88); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.26); }
.footer-phone { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold2); letter-spacing: .04em; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .ham-btn { display: flex; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card { height: 280px; border-right: none; border-bottom: 1px solid var(--bdr); }
  .dest-card:last-child { border-bottom: none; }
  .gallery-link-grid.cols-3,
  .gallery-link-grid.cols-2,
  .gallery-link-grid.cols-1 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 20px; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 20px; }
}
@media (max-width: 600px) {
  .hero { align-items: center; padding-bottom: 0; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .offer-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .sights-grid { grid-template-columns: 1fr; }
  .winter-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pkg-banner { flex-direction: column; align-items: flex-start; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
}
