/* ============================================
   LAND CRUISE — calmer, editorial pass
   "All-Inclusive Fun. No Ocean Required."
   ============================================ */

:root {
  --blue:        #0B3B8C;
  --blue-deep:   #062463;
  --blue-mid:    #1B5BC9;
  --blue-light:  #4A8AE6;
  --sky:         #BCDCFF;

  --yellow:      #FFD23F;
  --yellow-deep: #F4B819;
  --gold:        #E8A82C;

  --white:       #FFFFFF;
  --cream:       #FBF7EE;
  --sand:        #F5EFE0;
  --line:        #E8E0CC;

  --ink:         #0B1E47;
  --ink-soft:    #2A3963;
  --muted:       #5B6789;

  --font-display: 'Luckiest Guy', 'Bebas Neue', Impact, sans-serif;
  --font-body:    'Open Sans', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(11,30,71,0.06), 0 2px 6px rgba(11,30,71,0.06);
  --shadow-md: 0 4px 12px rgba(11,30,71,0.08), 0 12px 32px rgba(11,30,71,0.08);
  --shadow-lg: 0 8px 24px rgba(11,30,71,0.10), 0 24px 60px rgba(11,30,71,0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
  font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--yellow); color: var(--ink); }

svg { display: inline-block; vertical-align: middle; }

.container       { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide  { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.container-narrow{ width: 100%; max-width: 820px;  margin: 0 auto; padding: 0 24px; }

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-yellow:hover {
  background: var(--yellow-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-blue:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ===========================================
   NAVIGATION
   =========================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  padding: 16px 0;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(11, 30, 71, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.nav-logo .logo-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav-logo .logo-mark {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: var(--yellow);
}
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.nav-logo .logo-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding: 6px 0;
  text-shadow: 0 1px 7px rgba(0,0,0,0.58);
}
.nav-links > a:hover { color: var(--white); }

.nav-cta {
  background: var(--yellow);
  color: var(--ink) !important;
  padding: 9px 20px !important;
  border-radius: 999px;
  font-weight: 600 !important;
  text-shadow: none !important;
}
.nav-cta:hover { background: var(--yellow-deep); }

.nav-mobile-toggle {
  display: none;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 8px 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
  background: var(--blue-deep);
}

.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(7,20,55,0.55) 0%, rgba(7,20,55,0.35) 40%, rgba(7,20,55,0.7) 100%);
}

.hero-content {
  position: relative; z-index: 4;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}

.hero-presents {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title .line-1 {
  display: block;
  color: var(--white);
  font-size: clamp(4.2rem, 10vw, 9rem);
}
.hero-title .line-2 {
  display: block;
  color: var(--yellow);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  letter-spacing: 2px;
  margin-top: 8px;
}

.hero-ribbon {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  margin-bottom: 26px;
  background: transparent;
}
.hero-ribbon::before, .hero-ribbon::after { display: none; }

.hero-photo-strip {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 32px;
  margin-bottom: 36px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 30px rgba(0,0,0,0.3);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.hero-photo-track {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  width: max-content;
  animation: photo-scroll 32s linear infinite;
}
.hero-photo-track:hover { animation-play-state: paused; }

.photo-frame {
  width: 280px;
  height: 186px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes photo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================================
   TRIO BAR
   =========================================== */
.trio-bar {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trio-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 4px;
  color: var(--ink);
  text-transform: uppercase;
}
.trio-divider {
  width: 5px; height: 5px; border-radius: 50%; background: var(--yellow);
}

/* legacy bulb/pill — removed visual but keep selectors safe */
.bulb-strip, .pill-bar { display: none; }

/* ===========================================
   SECTIONS
   =========================================== */
.section { padding: 96px 0; position: relative; }
.section-cream  { background: var(--cream); }
.section-sand   { background: var(--sand); }
.section-blue   { background: var(--blue); color: var(--white); }
.section-blue-deep { background: var(--blue-deep); color: var(--white); }
.section-tropical {
  background:
    linear-gradient(180deg, rgba(7,20,55,0.78) 0%, rgba(7,20,55,0.85) 100%),
    url('../images/optimized/home/hero-bg-1600.jpg') center/cover no-repeat;
  color: var(--white);
}

.palm-deco { display: none; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--yellow-deep);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.section-blue .section-eyebrow,
.section-blue-deep .section-eyebrow,
.section-tropical .section-eyebrow { color: var(--yellow); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--ink);
  text-transform: uppercase;
}
.section-blue .section-title,
.section-blue-deep .section-title,
.section-tropical .section-title { color: var(--white); }

.section-title .accent { color: var(--blue); }
.section-blue .section-title .accent,
.section-blue-deep .section-title .accent,
.section-tropical .section-title .accent { color: var(--yellow); }

.section-script { display: none; } /* retired */

.section-subtitle {
  margin: 18px auto 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 620px;
}
.section-blue .section-subtitle,
.section-blue-deep .section-subtitle,
.section-tropical .section-subtitle { color: rgba(255,255,255,0.78); }

/* ===========================================
   EXPERIENCE TILES
   =========================================== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.experience-tile {
  text-align: center;
}

.tile-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 260px;
  margin: 0 auto 22px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.experience-tile:hover .tile-photo { transform: translateY(-3px); }
.tile-photo img { width: 100%; height: 100%; object-fit: cover; }

.tile-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px; height: 44px;
  background: var(--white);
  color: var(--blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.tile-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.tile-script { display: none; }
.tile-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 260px;
  margin: 0 auto;
}

/* ===========================================
   ISLAND IRONY
   =========================================== */
.irony-block {
  text-align: center;
  position: relative;
}
.irony-block h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}
.irony-block h2 .accent { color: var(--yellow); }
.irony-block .irony-tag {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-top: 22px;
  letter-spacing: 0.3px;
}

/* ===========================================
   CRUISE CARDS
   =========================================== */
.cruise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cruise-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.cruise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cruise-card:hover .card-image img { transform: scale(1.04); }

.card-corner {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 999px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
  box-shadow: var(--shadow-sm);
}
.card-corner.featured { background: var(--yellow); color: var(--ink); }

.card-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }

.card-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--yellow-deep);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 14px;
}

.card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 22px;
}

.card-meta {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px;
}
.chip {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: var(--cream);
  color: var(--ink-soft);
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.card-footer {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.card-status {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow-deep);
}

/* ===========================================
   INCLUSIONS
   =========================================== */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.inclusion-card {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: left;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.inclusion-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,210,63,0.4);
  transform: translateY(-2px);
}

.inclusion-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  background: rgba(255,210,63,0.12);
  color: var(--yellow);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.inclusion-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
}
.inclusion-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}

/* ===========================================
   GALLERY MASONRY
   =========================================== */
.gallery-masonry {
  columns: 4;
  column-gap: 14px;
}
.gallery-masonry.collapsed .gallery-item:nth-child(n+28) { display: none; }
.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-masonry .gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.gallery-masonry .gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-masonry .gallery-item:hover img { transform: scale(1.03); }

.gallery-overlay { display: none; }

/* ===========================================
   ITINERARY TIMELINE
   =========================================== */
.itinerary-timeline {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.itinerary-day {
  display: flex; gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}
.day-marker { flex-shrink: 0; }
.day-number {
  width: 96px; height: 96px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
}
.day-number .day-label { font-size: 0.75rem; opacity: 0.75; letter-spacing: 2px; }
.day-number .num { font-size: 2.4rem; line-height: 1; color: var(--yellow); }

.itinerary-day:nth-child(2) .day-number { background: var(--yellow); }
.itinerary-day:nth-child(2) .day-number .num { color: var(--blue); }
.itinerary-day:nth-child(2) .day-number .day-label { color: var(--ink); opacity: 0.7; }
.itinerary-day:nth-child(3) .day-number { background: var(--ink); }

.day-content { flex: 1; }
.day-content h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.day-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--yellow-deep);
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

.day-events { display: flex; flex-direction: column; gap: 0; }
.day-event {
  display: flex; gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-left: 0;
  border-radius: 0;
}
.day-event:last-child { border-bottom: 0; }
.event-time {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue);
  min-width: 76px;
  text-transform: uppercase;
}
.event-name { color: var(--ink-soft); font-size: 0.95rem; }

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials-track {
  display: flex; gap: 22px;
  overflow-x: auto;
  padding: 4px 4px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.testimonial-card {
  flex: 0 0 360px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  border: 1px solid var(--line);
}
.testimonial-card:nth-child(2n) { background: var(--white); border-color: var(--line); }

.testimonial-stars { color: var(--yellow-deep); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-weight: 400;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.testimonial-card:nth-child(2n) .testimonial-avatar { background: var(--ink); color: var(--yellow); }
.testimonial-name { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.testimonial-location { font-size: 0.82rem; color: var(--muted); }

/* ===========================================
   DATES BOARD
   =========================================== */
.dates-board {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  max-width: 820px;
  margin: 0 auto;
  backdrop-filter: blur(6px);
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.date-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  color: var(--white);
}
.date-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,210,63,0.5);
  transform: translateY(-2px);
}
.date-card .date-cal { display: none; }
.date-card .date-month {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--yellow);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.date-card .date-days {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}
.date-card .date-theme {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  font-weight: 500;
}
.date-card.featured {
  background: var(--yellow);
  border-color: var(--yellow);
}
.date-card.featured .date-month { color: var(--blue-deep); }
.date-card.featured .date-days  { color: var(--ink); }
.date-card.featured .date-theme { color: var(--ink-soft); font-weight: 700; }
.date-card.special {
  background: var(--white);
  border-color: var(--white);
}
.date-card.special .date-month { color: var(--blue); }
.date-card.special .date-days { color: var(--ink); }
.date-card.special .date-theme { color: var(--muted); font-weight: 600; }

/* legacy plank — hide if it shows up */
.dates-plank { background: none; border: none; padding: 0; box-shadow: none; }
.dates-plank::before, .dates-plank::after { display: none; }

/* row-based dates list */
.dates-list { display: flex; flex-direction: column; }
.dates-year {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  color: var(--yellow);
  padding: 18px 4px 10px;
  border-bottom: 2px solid rgba(255,210,63,0.4);
  margin-bottom: 4px;
}
.dates-year:not(:first-child) { margin-top: 18px; }
.date-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.date-row:hover { background: rgba(255,255,255,0.04); }
.date-row:last-child { border-bottom: none; }
.date-when {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--white);
}
.date-when .date-month {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
}
.date-when .date-days {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}
.cruise-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--white);
}
.cruise-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.tag-original::before  { background: rgba(255,255,255,0.55); }
.tag-gals::before      { background: #F5A6C9; }
.tag-comedy::before    { background: var(--yellow); }
.tag-christmas::before { background: #E8453E; }
.tag-special::before   { background: var(--blue-light); }

@media (max-width: 720px) {
  .date-row {
    grid-template-columns: 1fr auto;
    gap: 12px 14px;
  }
  .date-row .date-cruise { grid-column: 1 / -1; order: 3; }
}
.plank-title { display: none; }

/* ===========================================
   FINAL CTA BANNER
   =========================================== */
.cta-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.cta-bg { position: absolute; inset: 0; z-index: 1; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(7,20,55,0.7), rgba(7,20,55,0.85));
}
.cta-content { position: relative; z-index: 3; }

.cta-banner-ribbon {
  display: inline-block;
  background: transparent;
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(255,210,63,0.5);
  border-radius: 999px;
  box-shadow: none;
  margin-bottom: 26px;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.cta-title .accent { color: var(--yellow); }
.cta-subtitle {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}
.cta-phone {
  display: block;
  margin-top: 22px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
}
.cta-phone:hover { color: var(--yellow); }

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.footer-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--yellow);
  display: block;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.65); margin-bottom: 22px; max-width: 380px; line-height: 1.65; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--ink); }

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer ul a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ===========================================
   LIGHTBOX
   =========================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,20,55,0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 600;
  transition: background var(--transition);
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }

/* ===========================================
   SCROLL REVEAL
   =========================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in, .reveal.visible { opacity: 1; transform: none; }
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.40s; }
.stagger-7 { transition-delay: 0.47s; }
.stagger-8 { transition-delay: 0.54s; }

/* ===========================================
   ACCORDION
   =========================================== */
.accordion-list { display: flex; flex-direction: column; gap: 10px; }
.accordion-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  color: var(--ink);
  text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.accordion-icon { font-size: 1.3rem; color: var(--blue); transition: transform var(--transition); }
.accordion-item.active .accordion-icon { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.accordion-content-inner { padding: 0 24px 24px; color: var(--muted); }

/* ===========================================
   GALLERY FILTER BUTTONS
   =========================================== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1080px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .cruise-cards    { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .inclusions-grid { grid-template-columns: repeat(2, 1fr); }
  .dates-grid      { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { columns: 3; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(11,30,71,0.96);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.active { display: flex; }
  .nav-links > a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links > a:last-child { border-bottom: 0; }
  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }
  .nav-mobile-toggle { display: flex; }
  .hero { min-height: 88vh; padding-top: 84px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 64px 0; }
  .itinerary-day { flex-direction: column; align-items: center; text-align: center; gap: 18px; padding: 24px; }
  .day-events .day-event { flex-direction: column; gap: 4px; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-masonry { columns: 2; }
  .dates-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { flex: 0 0 300px; }
  .trio-bar-inner { gap: 18px; font-size: 0.9rem; letter-spacing: 3px; }
}

@media (max-width: 480px) {
  .nav-logo { gap: 10px; }
  .nav-logo .logo-text { font-size: 1.25rem; letter-spacing: 1.5px; }
  .nav-logo .logo-tag { font-size: 0.56rem; letter-spacing: 0.8px; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .dates-grid { grid-template-columns: 1fr; }
  .irony-block h2 { font-size: 1.4rem; letter-spacing: 0; }
}
