/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --sea-deep:   #0a2236;
  --sea:        #1a4a6b;
  --sea-mid:    #2563a8;
  --sea-bright: #3b82d4;
  --sea-light:  #7ab8e8;
  --sea-pale:   #e8f4fd;
  --sand:       #f7f4ef;
  --sand-mid:   #ede8df;
  --sand-dark:  #ddd5c8;
  --warm:       #d4845a;
  --gold:       #c49a3c;
  --gold-light: #f5e4b0;
  --text:       #151512;
  --text-mid:   #3d3d38;
  --text-muted: #7a7a72;
  --white:      #ffffff;
  --glass:      rgba(255,255,255,0.18);
  --glass-b:    rgba(255,255,255,0.30);
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  34px;
  --r-2xl: 48px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sand);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 14px; left: 14px; right: 14px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  border-radius: var(--r-xl);
  background: rgba(10,34,54,0.2);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border: 1px solid var(--glass-b);
  transition: background 0.35s, box-shadow 0.35s;
  box-shadow: 0 4px 24px rgba(10,34,54,0.12), inset 0 1px 0 rgba(255,255,255,0.22);
}
.nav.scrolled {
  background: rgba(10,34,54,0.78);
  box-shadow: 0 8px 36px rgba(10,34,54,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 20px;
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover { background: rgba(255,255,255,0.14); color: var(--white); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(168deg, rgba(6,22,36,0.82) 0%, rgba(13,44,69,0.72) 25%, rgba(26,74,107,0.58) 55%, rgba(37,99,168,0.45) 80%, rgba(59,130,212,0.35) 100%),
    url('https://images.unsplash.com/photo-1500514966906-fe245eea9344?auto=format&fit=crop&w=2400&q=85') center 60% / cover no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(110,185,240,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 5% 90%, rgba(6,22,36,0.65) 0%, transparent 65%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -1px; left: -8%; right: -8%;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='%23f7f4ef' d='M0,120L60,112C120,104,240,88,360,93.3C480,99,600,125,720,130.7C840,136,960,112,1080,98.7C1200,85,1320,83,1380,82.7L1440,82L1440,200L0,200Z'/%3E%3C/svg%3E") center bottom / cover no-repeat;
}
.hero-content {
  position: relative; z-index: 1;
  padding: 130px 28px 104px;
  max-width: 740px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 5px 15px; border-radius: 20px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(70px, 14vw, 140px);
  font-weight: 300; line-height: 0.88;
  color: var(--white); margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.52); }
.hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.58);
  font-weight: 300; margin-bottom: 44px; line-height: 1.9;
}
.hero-stats {
  display: flex; align-items: stretch;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--glass-b);
  border-radius: var(--r-lg);
  padding: 18px 0; width: fit-content;
  box-shadow: 0 8px 32px rgba(10,34,54,0.22), inset 0 1px 0 rgba(255,255,255,0.28);
}
.stat { display: flex; flex-direction: column; gap: 4px; padding: 0 26px; }
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 29px; font-weight: 300;
  color: var(--white); line-height: 1;
}
.stat-lbl { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.48); }
.stat-div { width: 1px; background: rgba(255,255,255,0.16); align-self: stretch; }
.hero-scroll {
  position: absolute; bottom: 108px; right: 28px;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); z-index: 1; writing-mode: vertical-rl;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0); opacity: 0.28; }
  50% { transform: translateY(8px); opacity: 0.55; }
}

/* ─── SECTIONS ───────────────────────────────────────────── */
.section { padding: 88px 0 96px; }
.section.alt { background: linear-gradient(180deg, var(--sand-mid) 0%, var(--sand) 100%); }
.container { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.section-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sea-mid); margin-bottom: 11px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 300; line-height: 1.08;
  color: var(--sea-deep); margin-bottom: 52px;
}

/* ─── ROUTE TIMELINE ─────────────────────────────────────── */
.route-timeline {
  display: flex; flex-direction: column;
  border-left: 2px solid var(--sand-dark);
  margin-left: 14px; padding-left: 36px;
}
.rt-item { position: relative; padding-bottom: 36px; }
.rt-item:last-child { padding-bottom: 0; }
.rt-dot {
  position: absolute; left: -45px; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  border: 2.5px solid var(--sand-dark); background: var(--sand);
}
.rt-dot.shore { background: var(--sand-dark); border-color: var(--text-muted); }
.rt-dot.sail {
  background: linear-gradient(135deg, var(--sea-bright), var(--sea-mid));
  border-color: var(--sea-mid);
  box-shadow: 0 0 0 4px rgba(37,99,168,0.12);
}
.rt-dot.highlight {
  width: 20px; height: 20px; left: -47px; top: 1px;
  background: linear-gradient(135deg, #f5d060, var(--gold));
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(196,154,60,0.18);
}
.rt-date { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.rt-place { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--sea-deep); line-height: 1; margin-bottom: 4px; }
.rt-item.star .rt-place { color: var(--gold); }
.rt-note { font-size: 13px; color: var(--text-muted); }

/* ─── STOPS GRID ─────────────────────────────────────────── */
.stops-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 20px; }

.stop-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow:
    0 1px 3px rgba(10,34,54,0.04),
    0 8px 24px rgba(10,34,54,0.07),
    0 24px 56px rgba(10,34,54,0.06),
    inset 0 1px 0 rgba(255,255,255,1);
  transition: transform 0.28s cubic-bezier(.22,.68,0,1.18), box-shadow 0.28s;
}
/* gloss sheen */
.stop-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 48%; border-radius: var(--r-xl) var(--r-xl) 60% 60% / var(--r-xl) var(--r-xl) 30% 30%;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
  pointer-events: none; z-index: 3;
}
.stop-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 2px 6px rgba(10,34,54,0.06),
    0 16px 40px rgba(10,34,54,0.13),
    0 40px 80px rgba(10,34,54,0.1),
    inset 0 1px 0 rgba(255,255,255,1);
}

.stop-card.highlight-card {
  background: linear-gradient(148deg, #0c3454 0%, #1a4a6b 45%, #1e5a82 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 2px 8px rgba(10,34,54,0.22),
    0 16px 48px rgba(10,34,54,0.38),
    0 40px 80px rgba(10,34,54,0.22),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.stop-card.highlight-card::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 100%);
}

.stop-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 82px; font-weight: 300; line-height: 1;
  color: rgba(0,0,0,0.04); padding: 22px 26px 0;
  letter-spacing: -0.03em; position: relative; z-index: 2;
}
.highlight-card .stop-num { color: rgba(255,255,255,0.07); }

.stop-header {
  padding: 4px 26px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.055);
  position: relative; z-index: 2;
}
.highlight-card .stop-header { border-color: rgba(255,255,255,0.09); }

.stop-date {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sea-mid); margin-bottom: 4px;
}
.highlight-card .stop-date { color: rgba(255,255,255,0.48); }

.stop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 400;
  color: var(--sea-deep); line-height: 1; margin-bottom: 4px;
}
.highlight-card .stop-name { color: var(--white); }

.stop-route { font-size: 12px; color: var(--text-muted); }
.highlight-card .stop-route { color: rgba(255,255,255,0.42); }

.stop-body { padding: 20px 26px; flex: 1; display: flex; flex-direction: column; position: relative; z-index: 2; }
.stop-body p { font-size: 14px; color: var(--text-mid); line-height: 1.68; margin-bottom: 16px; }
.highlight-card .stop-body p { color: rgba(255,255,255,0.7); }

.stop-section-lbl {
  font-size: 9px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sea-mid); margin: 14px 0 8px;
}
.highlight-card .stop-section-lbl { color: rgba(255,255,255,0.4); }

.stop-bays { display: flex; flex-direction: column; gap: 7px; margin-bottom: 4px; }
.bay {
  font-size: 13px; color: var(--text-mid);
  padding: 9px 13px;
  background: var(--sea-pale);
  border-radius: var(--r-md);
  line-height: 1.5;
  border: 1px solid rgba(37,99,168,0.1);
  border-left: 3px solid var(--sea-light);
}
.highlight-card .bay {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.68);
}
.bay-name { font-weight: 500; color: var(--sea); }
.highlight-card .bay-name { color: var(--white); }

.rests { display: flex; flex-direction: column; gap: 9px; }
.rest-item {
  background: var(--sand);
  border-radius: var(--r-md);
  padding: 12px 14px;
  border: 1px solid var(--sand-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 1px 3px rgba(10,34,54,0.04);
}
.highlight-card .rest-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09);
}
.rest-name { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.highlight-card .rest-name { color: var(--white); }
.rest-stars { font-size: 11px; color: var(--gold); font-weight: 400; margin-left: 3px; }
.rest-desc { font-size: 12px; color: var(--text-muted); line-height: 1.55; }
.highlight-card .rest-desc { color: rgba(255,255,255,0.48); }

.hydra-tip {
  margin-top: 16px; padding: 13px 15px;
  background: rgba(196,154,60,0.1);
  border-radius: var(--r-md);
  border: 1px solid rgba(196,154,60,0.22);
  font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.65;
}
.hydra-tip strong { color: #f5d060; }

.stop-tag {
  padding: 12px 26px;
  background: linear-gradient(90deg, var(--sea-pale) 0%, rgba(232,244,253,0.35) 100%);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; color: var(--sea-mid); text-transform: uppercase;
  border-top: 1px solid rgba(37,99,168,0.07);
  position: relative; z-index: 2;
}
.highlight-card .stop-tag {
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.42);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ─── PHOTOS ─────────────────────────────────────────────── */
.photos-intro { font-size: 16px; color: var(--text-mid); max-width: 540px; line-height: 1.72; margin-bottom: 32px; }
.photos-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 40px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--sea-mid) 0%, var(--sea) 100%);
  color: var(--white); text-decoration: none;
  padding: 15px 30px; border-radius: 40px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  box-shadow: 0 4px 18px rgba(37,99,168,0.38), inset 0 1px 0 rgba(255,255,255,0.22);
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,168,0.45), inset 0 1px 0 rgba(255,255,255,0.28);
}
.photos-hint { font-size: 12px; color: var(--text-muted); }
.photos-embed-wrapper {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--sand-dark);
  min-height: 380px; background: var(--white);
  box-shadow: 0 2px 8px rgba(10,34,54,0.05), 0 16px 48px rgba(10,34,54,0.08), inset 0 1px 0 rgba(255,255,255,0.95);
}
.photos-placeholder {
  min-height: 380px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; color: var(--text-muted); text-align: center; padding: 48px;
}
.photos-placeholder-icon { font-size: 52px; }
.photos-placeholder p { font-size: 14px; line-height: 1.7; max-width: 340px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: linear-gradient(158deg, var(--sea-deep) 0%, var(--sea) 100%);
  padding: 56px 0 44px; position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center; position: relative; z-index: 1;
}
.footer-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: var(--white); letter-spacing: 0.03em; }
.footer-sub { font-size: 12px; color: rgba(255,255,255,0.42); letter-spacing: 0.08em; }
.footer-crew { font-size: 13px; color: rgba(255,255,255,0.32); margin-top: 8px; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { top: 10px; left: 10px; right: 10px; padding: 12px 18px; }
  .nav-links { display: none; }
  .hero-content { padding: 104px 20px 96px; }
  .container { padding: 0 16px; }
  .section { padding: 60px 0 68px; }
  .stops-grid { grid-template-columns: 1fr; }
  .hero-stats { width: 100%; }
  .stat { padding: 0 14px; }
  .stat-val { font-size: 24px; }
  .route-timeline { margin-left: 8px; padding-left: 26px; }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .stops-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── FADE IN ────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.55s cubic-bezier(.22,.68,0,1), transform 0.55s cubic-bezier(.22,.68,0,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
