/* ============================================================
   BASE
============================================================ */

html {
  scroll-behavior: auto;
}

/* ── Global scrollbar ── */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb {
  background: rgba(10, 161, 175, 0.55);
  border-radius: 3px;
  transition: background 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(10, 161, 175, 0.9);
}
::-webkit-scrollbar-corner {
  background: transparent;
}

body {
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  overflow: hidden; /* locked during logo animation */
}

body.ready,
html.skip-intro body {
  overflow: auto;
}

/* ============================================================
   NAVIGATION
============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  opacity: 0;
  padding: 2rem var(--container-pad);
  transition: background var(--trans-mid), padding var(--trans-mid);
  pointer-events: none;
}

.nav.visible {
  pointer-events: auto;
}

.nav.scrolled {
  background: rgba(12, 30, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav__logo {
  flex-shrink: 0;
  color: var(--color-white);
  transition: opacity var(--trans-fast);
}

.nav__logo img { height: 52px; width: auto; display: block; }
.nav__logo:hover { opacity: 0.75; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin-left: auto;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: clamp(0.88rem, 1.05vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-white);
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
  position: relative;
  padding-bottom: 3px;
  transition: opacity var(--trans-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-white);
  transition: width 0.35s var(--ease-out);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__link.active { opacity: 1; }
.nav__links:has(.nav__link.active) .nav__link:not(.active) { opacity: 0.42; }

.nav__cta {
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 0.7rem 1.8rem;
  border-radius: 2px;
  transition: background var(--trans-fast), border-color var(--trans-fast);
  white-space: nowrap;
  margin-left: var(--space-sm);
}
.nav__cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--color-white);
  transition: transform var(--trans-fast), opacity var(--trans-fast);
}

/* ============================================================
   MOBILE DRAWER
============================================================ */

.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: rgba(8, 18, 30, 0.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--container-pad) 4rem;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav__drawer.open {
  transform: translateX(0);
}

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 3rem;
}

.nav__drawer-link {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 10vw, 4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
  line-height: 1.15;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.55rem 0;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.nav__drawer-link:hover {
  color: var(--color-white);
  padding-left: 0.5rem;
}

.nav__drawer-cta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 1rem 2rem;
  border-radius: 2px;
  width: fit-content;
  transition: background var(--trans-fast), border-color var(--trans-fast);
}

.nav__drawer-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
}

/* Hamburger → X when drawer is open */
.nav__hamburger.active span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.nav__hamburger.active span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ============================================================
   SCENE — auto-animated intro + hero
============================================================ */

.scene {
  position: relative;
  height: 100vh;
}

.scene__sticky {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* The photo — natural width × natural height, starts at top (y:0),
   JS ScrollTrigger pans it to -(naturalHeight_px - 100vh) by end of scroll */
.scene__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

/* Looping video — covers viewport, sits above photo, hidden until crossfade */
.scene__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  display: block;
  transform: translateZ(0);
  will-change: opacity;
}

/* Dark veil — smooth gradient top to bottom so the photo
   gradually bleeds through across the entire screen. */
.scene__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 20, 32, 0.95)    0%,
    rgba(8, 20, 32, 0.82)   22%,
    rgba(8, 20, 32, 0.62)   44%,
    rgba(8, 20, 32, 0.32)   68%,
    rgba(8, 20, 32, 0.08)   86%,
    transparent             100%
  );
  z-index: 1;
}

/* ── Intro logo (shown over the veil) ── */
.scene__logo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  /* starts invisible; JS fades it in on load */
  opacity: 0;
}

.scene__logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.scene__logo-mark {
  width: auto;
  height: clamp(140px, 18vw, 240px);
  margin-bottom: 0.5rem;
  opacity: 0;
  filter: blur(20px);
  display: block;
}

.scene__logo-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* The decorative horizontal rules flanking the main word */
.scene__logo-line {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  width: 0; /* animated in via JS */
}

.scene__logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 11rem);
  letter-spacing: 0.25em;
  color: var(--color-white);
  line-height: 1;
  white-space: nowrap;
  /* starts blurred; JS clears it */
  filter: blur(30px);
}

.scene__logo-sub {
  font-family: 'Abel', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  margin-top: 0.4rem;
  transition: letter-spacing 0.6s ease;
}

/* Hint state — tighter spacing fits the longer phrase */
.scene__logo-sub--hint {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  letter-spacing: 0.18em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.55);
}

.scene__scroll-hint {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  color: rgba(255, 255, 255, 0.45);
  animation: hintBounce 1.8s ease-in-out infinite;
}

.scene__scroll-hint svg {
  width: clamp(20px, 2vw, 28px);
  height: auto;
}

@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── Hero content (shown at end of scroll journey) ── */
.scene__hero {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 8vw 7vh;
  text-align: left;
  opacity: 0;
  pointer-events: none;
}

.scene__hero.active {
  pointer-events: auto;
}

/* Bottom gradient so text reads cleanly over the cove photo.
   Activated via .hero-visible class toggled by JS. */
.scene__sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 15, 25, 0.75) 0%,
    rgba(5, 15, 25, 0.3) 40%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.scene__sticky.hero-visible::after {
  opacity: 1;
}

/* ── Hero content elements ── */
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.4rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  justify-content: flex-start;
}

.hero__headline .word {
  display: inline-block;
}

.hero__subline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 4px;
  transition: gap var(--trans-fast), border-color var(--trans-fast);
}
.hero__cta:hover { gap: 1rem; border-color: var(--color-white); }
.hero__cta svg  { width: 20px; height: 20px; transition: transform var(--trans-fast); }
.hero__cta:hover svg { transform: translateX(4px); }

/* ============================================================
   INTRO SECTION
============================================================ */

.intro {
  background: var(--color-dark);
  color: var(--color-white);
  min-height: 100vh;
  overflow: hidden;
}

.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* ── Left: text ── */
.intro__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) 5vw var(--space-2xl) max(4rem, 6vw);
  gap: 2.2rem;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.intro__left.faded {
  opacity: 0;
  transform: translateX(-40px);
  pointer-events: none;
}

.intro__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(20px);
}

.intro__headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.intro__headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  margin-right: 0.22em;
}

.intro__body {
  opacity: 0;
  transform: translateY(24px);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 520px;
}

.intro__body p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.52);
}

.intro__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 6px;
  width: fit-content;
  opacity: 0;
  transform: translateY(16px);
  transition: gap var(--trans-fast), border-color var(--trans-fast);
}
.intro__cta:hover { gap: 1.1rem; border-color: var(--color-white); }
.intro__cta svg  { width: 20px; height: 20px; transition: transform var(--trans-fast); }
.intro__cta:hover svg { transform: translateX(4px); }

/* ── Right: video ── */
.intro__video-wrap {
  position: relative;
  overflow: hidden;
  background: var(--color-deep);
}

.intro__video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

.intro__video-overlay { display: none; }

.intro__play-btn {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  padding: 0;
}

.intro__play-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 20px rgba(255,255,255,0.05), 0 8px 40px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.intro__play-circle svg {
  width: 36px;
  height: 36px;
  margin-left: 6px;
}

.intro__play-btn:hover .intro__play-circle {
  transform: scale(1.08);
  border-color: rgba(255,255,255,1);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 28px rgba(255,255,255,0.07), 0 12px 50px rgba(0,0,0,0.35);
}

.intro__play-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

.intro__play-btn:hover .intro__play-label {
  color: rgba(255,255,255,1);
}

.intro__play-btn:hover .intro__play-label {
  color: rgba(255,255,255,0.95);
}

.intro__video-caption {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.intro__yt-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  display: block;
}

.intro__yt-wrap.playing {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9000;
  background: #000;
  opacity: 1;
  pointer-events: auto;
}

.intro__video-close {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.25s ease;
}

.intro__video-close svg { width: 18px; height: 18px; }

.intro__video-close.visible {
  opacity: 1;
  pointer-events: auto;
}

.intro__video-close:hover {
  background: rgba(255,255,255,0.22);
}

/* ── Right: static image (replaces old video) ── */
.intro__media {
  position: relative;
  overflow: hidden;
  background: var(--color-deep);
}
.intro__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
}
.intro__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(6,17,30,0.55) 100%);
  pointer-events: none;
}
.intro__image-caption {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── Vegan Sailing highlight card ── */
.intro__highlight {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.3rem;
  margin-top: 0.3rem;
  background: linear-gradient(135deg, rgba(10,161,175,0.08) 0%, rgba(10,161,175,0.02) 100%);
  border: 1px solid rgba(10,161,175,0.28);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  max-width: 440px;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
  position: relative;
  overflow: hidden;
}
.intro__highlight::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--color-primary);
  opacity: 0.85;
}
.intro__highlight:hover {
  border-color: rgba(10,161,175,0.55);
  background: linear-gradient(135deg, rgba(10,161,175,0.14) 0%, rgba(10,161,175,0.04) 100%);
}

.intro__highlight-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10,161,175,0.12);
  border: 1px solid rgba(10,161,175,0.35);
  color: var(--color-primary);
}
.intro__highlight-mark svg { width: 18px; height: 18px; }

.intro__highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.25;
  flex: 1;
  min-width: 0;
}
.intro__highlight-label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.85;
}
.intro__highlight-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.005em;
}
.intro__highlight-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: 0.15rem;
}
.intro__highlight-arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
  display: inline-flex;
  transition: transform 0.35s ease, color 0.35s ease;
}
.intro__highlight-arrow svg { width: 18px; height: 18px; }
.intro__highlight:hover .intro__highlight-arrow {
  color: var(--color-primary);
  transform: translateX(4px);
}

/* ============================================================
   SHARED SECTION UTILITIES
============================================================ */

.section-label {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
  display: block;
}

.section-label--light {
  color: rgba(255,255,255,0.55);
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ============================================================
   SERVICES SECTION — grid view + expanded sidebar view
============================================================ */

.srv-section {
  background: var(--color-dark);
}

/* ── STATE 1: 4×2 card grid ── */
.srv-grid {
  padding: var(--space-2xl) 0 calc(var(--space-2xl) + 1rem);
}

.srv-grid__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.srv-grid__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.srv-grid__header .section-heading {
  color: var(--color-white);
}

.srv-grid__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: clamp(0.5rem, 1vw, 0.9rem);
}

.srv-grid__card {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}

/* Inner image layer — zooms on hover independently of overlay */
.srv-grid__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.7s ease;
}

.srv-grid__card:hover .srv-grid__img {
  transform: scale(1.07);
}

.srv-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 14, 26, 0.88) 0%,
    rgba(6, 14, 26, 0.4) 55%,
    rgba(6, 14, 26, 0.1) 100%
  );
  transition: background 0.5s ease;
}

.srv-grid__card:hover .srv-grid__overlay {
  background: linear-gradient(
    to top,
    rgba(6, 14, 26, 0.7) 0%,
    rgba(6, 14, 26, 0.2) 55%,
    rgba(6, 14, 26, 0.05) 100%
  );
}

.srv-grid__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1rem, 2vw, 1.6rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.srv-grid__num {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  opacity: 0.85;
}

.srv-grid__name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.55rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.15;
}

.srv-grid__sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.38);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.srv-grid__card:hover .srv-grid__sub {
  opacity: 1;
  transform: translateY(0);
}

.srv-grid__arrow {
  position: absolute;
  top: clamp(0.8rem, 1.5vw, 1.2rem);
  right: clamp(0.8rem, 1.5vw, 1.2rem);
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  z-index: 2;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.srv-grid__card:hover .srv-grid__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* Teal bottom accent line */
.srv-grid__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: 3;
}

.srv-grid__card:hover::after {
  transform: scaleX(1);
}

/* ── STATE 2: expanded view — photo fills screen, sidebar floats ── */
.srv-expanded {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* ── LEFT sidebar — floating glass card over photo ── */
.srv__sidebar {
  position: absolute;
  top: clamp(5rem, 8vh, 7rem);
  left: 3.5rem;
  z-index: 10;
  width: clamp(260px, 21vw, 310px);
  max-height: calc(100vh - 8rem);
  display: flex;
  flex-direction: column;
  background: rgba(6, 17, 30, 0.76);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  overflow: hidden;
}

.srv__sidebar-top {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.srv__back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.25s;
  padding: 0;
}

.srv__back svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.srv__back:hover { color: var(--color-white); }
.srv__back:hover svg { transform: translateX(-3px); }

.srv__sidebar-brand {
  padding: 1.1rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.srv__sidebar-label {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.75;
  margin-bottom: 0.4rem;
  display: block;
}

.srv__sidebar-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-white);
}

/* Tabs list */
.srv__tabs {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}

.srv__tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.5rem;
  width: 100%;
  border: none;
  background: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: color var(--trans-fast), background var(--trans-fast);
}

.srv__tab:last-child { border-bottom: none; }

/* Left teal accent bar */
.srv__tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.srv__tab.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
}

.srv__tab.active::before { width: 2px; }

.srv__tab:hover:not(.active) {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.03);
}

.srv__tab-num {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  opacity: 0.65;
  min-width: 18px;
  flex-shrink: 0;
}

.srv__tab.active .srv__tab-num { opacity: 1; }

.srv__tab-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.srv__tab-name {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.srv__tab-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  opacity: 0.42;
}

.srv__tab-arrow {
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.25s, transform 0.25s ease;
  color: var(--color-primary);
  flex-shrink: 0;
}

.srv__tab-arrow svg { width: 14px; height: 14px; display: block; }

.srv__tab.active .srv__tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Sidebar footer */
.srv__sidebar-foot {
  padding: 1rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.srv__sidebar-foot p {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.srv__sidebar-foot a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.srv__sidebar-foot a:hover { opacity: 0.7; }

/* ── Photo content panels — full-bleed behind floating sidebar ── */
.srv__main {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.srv__panel-content {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
}

.srv__panel-content.active {
  opacity: 1;
  pointer-events: auto;
}

.srv__content-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(6,14,26,0.96) 0%, rgba(6,14,26,0.7) 38%, rgba(6,14,26,0.15) 65%, transparent 85%),
    linear-gradient(to top, rgba(6,14,26,0.5) 0%, transparent 35%),
    linear-gradient(to bottom, rgba(6,14,26,0.3) 0%, transparent 20%);
}

.srv__content-body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(400px, 52%, 680px);
  padding: clamp(3rem, 7vh, 5.5rem) clamp(3rem, 5vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  z-index: 2;
}

.srv__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.srv__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.srv__desc {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 540px;
}

.srv__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.srv__features li {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  padding-left: 1.2rem;
  position: relative;
}

.srv__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.srv__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.srv__tags span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 2px;
  padding: 0.22em 0.65em;
}

.srv__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  width: fit-content;
  transition: border-color 0.3s, background 0.3s, gap 0.2s;
}

.srv__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.srv__cta:hover {
  border-color: var(--color-primary);
  background: rgba(10, 161, 175, 0.1);
  gap: 1rem;
}

.srv__cta:hover svg { transform: translateX(4px); }

/* ============================================================
   DESTINATIONS SECTION
============================================================ */

/* ============================================================
   DESTINATIONS
============================================================ */
.destinations {
  background: var(--color-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.destinations__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ── Layout: left = label + heading + countries | right = info panel ── */
.destinations__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
  align-items: center;
}

.destinations__left {
  display: flex;
  flex-direction: column;
}

.destinations__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4rem;
}

.destinations__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 4rem);
  white-space: nowrap;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  transition: color 0.3s ease;
}

.destinations__title:hover {
  color: rgba(255,255,255,0.8);
}

.destinations__intro {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 34ch;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(6px);
}

/* ── Destination list ── */
.dest-list {
  display: flex;
  flex-direction: column;
}

.dest-item {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  align-items: center;
  gap: 0 1.5rem;
  padding: 2.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  position: relative;
  transition: none;
}

.dest-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.dest-item__num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.dest-item.active .dest-item__num {
  opacity: 1;
}

.dest-item__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.dest-item:hover .dest-item__name,
.dest-item.active .dest-item__name {
  color: var(--color-white);
  transform: translateX(5px);
}

.dest-item__sea {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.dest-item.active .dest-item__sea {
  color: rgba(255,255,255,0.5);
}

/* ── Info panel: right column, all panels stacked, crossfade on click ── */
.dest-info {
  display: grid;
}

.dest-info__panel {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
}

.dest-info__panel.active {
  opacity: 1;
  pointer-events: auto;
}

.dest-info__heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3.8vw, 4.8rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.dest-info__sub {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}

.dest-info__body {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.dest-info__specials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.dest-info__specials li {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}

.dest-info__specials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 1;
}

/* ============================================================
   VESSEL / FLEET SECTION
============================================================ */
.vessel {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 50% 50%;
  background: #06111e;
}

/* ── Sticky left column: photos + selector overlay ── */
.vessel__left {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  overflow: hidden;
}

/* ── Full-bleed photo ── */
.vessel__photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.vessel__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.vessel__photo.active {
  opacity: 1;
  transform: scale(1);
}

/* Right-edge blend — hidden in 50/50 layout */
.vessel__photo-fade {
  display: none;
}

/* ── Vessel selector — glass card overlaid on photo ── */
.vessel__selector {
  position: absolute;
  top: clamp(2.5rem, 5vh, 5rem);
  left: 3.7rem;
  z-index: 10;
  background: rgba(6, 17, 30, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  overflow: hidden;
  width: 317px;
}

.vessel__selector-head {
  padding: 1.2rem 1.5rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.vessel__selector-label {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.75;
  margin-bottom: 0.3rem;
}

.vessel__selector-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.15;
}

.vessel__tab {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.5rem;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  text-align: left;
  transition: color var(--trans-fast), background var(--trans-fast);
  position: relative;
}
.vessel__tab:last-child { border-bottom: none; }
.vessel__tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--color-primary);
  transition: width 0.35s var(--ease-out);
}
.vessel__tab.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
}
.vessel__tab.active::before { width: 2px; }
.vessel__tab:hover:not(.active) {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.03);
}

.vessel__tab-num {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  opacity: 0.7;
  min-width: 18px;
}
.vessel__tab.active .vessel__tab-num { opacity: 1; }

.vessel__tab-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.vessel__tab-name {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.vessel__tab-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  opacity: 0.45;
}

.vessel__tab-arrow {
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  color: var(--color-primary);
}
.vessel__tab-arrow svg { width: 16px; height: 16px; display: block; }
.vessel__tab.active .vessel__tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Right info panel — scrolls naturally with page ── */
.vessel__right {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Subtle ambient teal glow top-right */
.vessel__right::before {
  content: '';
  position: absolute;
  top: -120px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(10, 161, 175, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* CSS grid stacking — all panels occupy the same cell, only active is visible */
.vessel__panels {
  display: grid;
  flex: 1;
}

.vessel__panel {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.1rem;
  padding: clamp(1.5rem, 2.5vh, 2.5rem) clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 3vh, 2.5rem);
  min-height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}
.vessel__panel.active {
  opacity: 1;
  pointer-events: auto;
}

.vessel__panel-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.vessel__panel-label {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.85;
}
.vessel__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.vessel__type {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.1rem;
}

.vessel__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  border-left: 2px solid var(--color-primary);
  padding-left: 1.2rem;
}

/* Key specs — 4-col, 2-row grid */
.vessel__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
.vessel__spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.65rem 0.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--trans-fast);
}
.vessel__spec:nth-child(n+5) { border-bottom: none; }
.vessel__spec:nth-child(4n) { border-right: none; }
.vessel__spec:hover { background: rgba(10,161,175,0.06); }

/* Primary specs (first row) bigger */
.vessel__spec:nth-child(-n+4) .vessel__spec-val {
  font-size: clamp(1.1rem, 1.4vw, 1.55rem);
  color: var(--color-white);
}
.vessel__spec:nth-child(-n+4) .vessel__spec-key {
  color: rgba(255,255,255,0.4);
}

.vessel__spec-val {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.vessel__spec-key {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

/* Detail rows */
.vessel__details {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  overflow: hidden;
}
.vessel__detail-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.38rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--trans-fast);
}
.vessel__detail-row:hover { background: rgba(255,255,255,0.025); }
.vessel__detail-row:last-child {
  border-bottom: none;
  background: rgba(10,161,175,0.07);
}
.vessel__detail-row:last-child:hover { background: rgba(10,161,175,0.11); }
.vessel__detail-key {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  min-width: 110px;
  flex-shrink: 0;
}
.vessel__detail-val {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 0.96vw, 0.92rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
}
.vessel__detail-row:last-child .vessel__detail-val {
  color: var(--color-primary);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Features */
.vessel__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 2rem;
  padding: 0.7rem 1.2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
}
.vessel__features li {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 0.88vw, 0.86rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.4;
}
.vessel__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.6rem;
  top: 0.15em;
}

/* CTA */
.vessel__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(10,161,175,0.1);
  border: 1px solid rgba(10,161,175,0.35);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: background var(--trans-fast), border-color var(--trans-fast), gap var(--trans-fast);
}
.vessel__cta:hover {
  background: rgba(10, 161, 175, 0.2);
  border-color: var(--color-primary);
  gap: 1.4rem;
}
.vessel__cta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Responsive — below 900px stack vertically: menu, photo, info */
@media (max-width: 900px) {
  .vessel {
    display: flex;
    flex-direction: column;
    grid-template-columns: initial;
    min-height: 0;
  }

  .vessel__left {
    position: static;
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  /* Boat menu comes first, then photo, then info */
  .vessel__selector {
    order: 1;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    margin: 1.25rem 1rem 0;
    max-height: none;
    overflow: visible;
  }

  .vessel__photo-wrap {
    order: 2;
    position: relative;
    inset: auto;
    height: 55vh;
    min-height: 340px;
    margin: 1.25rem 1rem 0;
    border-radius: 6px;
  }

  .vessel__right {
    order: 3;
  }

  /* Tighter tab rows to fit more in less height */
  .vessel__tab {
    padding: 0.75rem 1.1rem;
  }

  .vessel__panels { display: block; }
  .vessel__panel { opacity: 0; pointer-events: none; display: none; min-height: 0; }
  .vessel__panel.active { opacity: 1; pointer-events: auto; display: flex; }
  .vessel__features { grid-template-columns: 1fr; }
  .vessel__specs { grid-template-columns: repeat(2, 1fr); }
  .vessel__spec:nth-child(4n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .vessel__spec:nth-child(2n) { border-right: none; }
}

/* ============================================================
   EXPERIENCES SECTION — scroll-pinned activity slider
============================================================ */
.exp {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--color-dark);
}

/* Stacked full-bleed backgrounds */
.exp__bgs { position: absolute; inset: 0; }
.exp__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.exp__bg.active { opacity: 1; }

/* Multi-directional overlay: darken bottom-left for text, keep rest airy */
.exp__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,    rgba(6, 14, 26, 0.96) 0%, rgba(6, 14, 26, 0.3) 45%, rgba(6, 14, 26, 0) 70%),
    linear-gradient(to right,  rgba(6, 14, 26, 0.88) 0%, rgba(6, 14, 26, 0.4) 40%, rgba(6, 14, 26, 0) 65%);
}

/* ── Info text — bottom-left ── */
.exp__info {
  position: absolute;
  z-index: 3;
  left: clamp(3rem, 6vw, 7rem);
  bottom: 110px;
  width: min(560px, 46%);
  min-height: 440px;
}
.exp__slide {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  opacity: 0;
  pointer-events: none;
}
.exp__slide.active {
  opacity: 1;
  pointer-events: auto;
}
.exp__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.exp__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.exp__desc {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 440px;
}
.exp__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.15rem;
}
.exp__features li {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.4;
}
.exp__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.65rem;
  top: 0.15em;
}
.exp__stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: 1.25rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.exp__stat { display: flex; flex-direction: column; gap: 0.3rem; }
.exp__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1;
}
.exp__stat-label {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

/* ── Right panel — large photo + thumbnail strip ── */
.exp__feature {
  position: absolute;
  z-index: 2;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  height: 58vh;
  width: 44%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exp__main-wrap {
  position: relative;
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  min-height: 0;
}
.exp__main {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.exp__main.active { opacity: 1; }

.exp__thumbs-wrap {
  position: relative;
  height: 130px;
  flex-shrink: 0;
}
.exp__thumbs {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.exp__thumbs.active {
  opacity: 1;
  pointer-events: auto;
}
.exp__thumb {
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity var(--trans-fast);
}
.exp__thumb:hover { opacity: 0.75; }

/* ── Bottom navigation tabs ── */
.exp__nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2.5rem);
  padding: 0 clamp(3rem, 6vw, 7rem) 2.25rem;
}
.exp__tab {
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 0 0.25rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  transition: transform 0.5s ease;
}
.exp__tab:hover { transform: translateY(-3px); }

.exp__tab-num {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.4s ease;
}
.exp__tab.active .exp__tab-num,
.exp__tab:hover .exp__tab-num { color: var(--color-white); }

.exp__tab-line {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.exp__tab-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-white));
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
  transition: width 0.7s ease;
}
.exp__tab.active .exp__tab-fill { width: 100%; }
.exp__tab:hover .exp__tab-fill { width: 40%; }
.exp__tab.active:hover .exp__tab-fill { width: 100%; }

.exp__tab-label {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.4s ease, text-shadow 0.4s ease;
}
.exp__tab.active .exp__tab-label {
  color: var(--color-white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
}
.exp__tab:hover .exp__tab-label { color: var(--color-white); }

/* Responsive */
@media (max-width: 1100px) {
  .exp__feature { width: 30%; right: 2rem; }
  .exp__info { width: min(420px, 52%); }
}
@media (max-width: 768px) {
  .exp__feature { display: none; }
  .exp__info { left: 1.5rem; width: calc(100% - 3rem); }
  .exp__nav { padding: 0 1.5rem 1.5rem; }
}

/* ============================================================
   STORY / TEAM SECTION
============================================================ */

.story {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.story__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.story__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,14,26,0.91);
}

.story__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  padding: var(--space-2xl) var(--container-pad);
  align-items: stretch;
}

/* ── Left panel ── */
.story__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.story__heading {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 7.5rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.story__intro {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
}

/* ── Team circles ── */
.story__team {
  display: flex;
  gap: 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  justify-content: space-between;
}

.story__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  flex: 1;
  position: relative;
}

/* Photo wrapper — holds the ring frame */
.story__member-photo-wrap {
  position: relative;
  width: 144px;
  height: 144px;
  flex-shrink: 0;
}

/* Outer decorative ring — always subtly visible */
.story__member-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 20px rgba(10,161,175,0.1), inset 0 0 12px rgba(10,161,175,0.05);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Teal accent arc */
.story__member-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--color-teal);
  border-right-color: var(--color-teal);
  opacity: 0.2;
  transition: opacity 0.4s ease;
  transform: rotate(-45deg);
}

.story__member-photo {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 4px rgba(10,161,175,0.07);
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.story__member:hover .story__member-photo {
  border-color: rgba(10,161,175,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.6), 0 0 0 4px rgba(10,161,175,0.2);
}
.story__member:hover .story__member-photo-wrap::before {
  border-color: rgba(10,161,175,0.4);
  box-shadow: 0 0 30px rgba(10,161,175,0.25), inset 0 0 16px rgba(10,161,175,0.1);
}
.story__member:hover .story__member-photo-wrap::after { opacity: 0.7; }

.story__member.active .story__member-photo {
  border-color: rgba(10,161,175,0.65);
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.6), 0 0 0 4px rgba(10,161,175,0.25);
}
.story__member.active .story__member-photo-wrap::before {
  border-color: rgba(10,161,175,0.45);
  box-shadow: 0 0 34px rgba(10,161,175,0.3), inset 0 0 16px rgba(10,161,175,0.12);
}
.story__member.active .story__member-photo-wrap::after {
  opacity: 1;
}

.story__member-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.story__member.active .story__member-name { color: var(--color-white); }
.story__member:hover .story__member-name  { color: rgba(255,255,255,0.9); }

.story__member-role {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.story__member.active .story__member-role { color: var(--color-white); opacity: 0.9; }

/* ── Right panel ── */
.story__right {
  display: flex;
  align-items: center;
  padding: var(--space-xl) 0;
}

.story__panels {
  display: grid;
  width: 100%;
  padding-left: 3.5rem;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.story__panel {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  opacity: 0;
  pointer-events: none;
}

.story__panel.active {
  opacity: 1;
  pointer-events: auto;
}

.story__panel-eyebrow {
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: -0.4rem;
}

.story__panel-body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  line-height: 2;
}

/* ============================================================
   JOURNAL SECTION — two-panel inline reader (.jrn)
============================================================ */

.journal {
  background: var(--color-deep);
  height: 100vh;
  overflow: hidden;
  padding: 4rem 4rem 4rem 5rem;
}

.jrn {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  height: 100%;
  overflow: hidden;
}

/* ── Reader (left) ── */
.jrn__reader {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: #07111e;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--color-teal);
  border-bottom: none;
  box-shadow: 0 8px 48px rgba(0,0,0,0.4);
}

.jrn__article {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 161, 175, 0.55) rgba(255, 255, 255, 0.04);
}
.jrn__article.active {
  opacity: 1;
  pointer-events: auto;
}

.jrn__article-inner {
  display: flex;
  flex-direction: column;
}

/* 1 — Title header */
.jrn__article-head {
  background-image: none !important;
  background: linear-gradient(to bottom, rgba(10,161,175,0.07) 0%, #07111e 100%) !important;
  flex-shrink: 0;
  order: 1;
}
.jrn__article-head-overlay {
  display: none;
}
.jrn__article-head-text {
  position: static;
  padding: 3rem 5rem 2rem;
}

.jrn__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.jrn__tag {
  background: var(--color-teal);
  color: #fff;
  padding: 0.2em 0.65em;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
}
.jrn__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--color-white);
  margin-top: 0.2rem;
}

/* 2 — 4-image horizontal strip */
.jrn__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  flex-shrink: 0;
  order: 2;
  padding: 0.5rem 5rem 2.5rem;
}
.jrn__gallery-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 5px;
  cursor: zoom-in;
  position: relative;
  transition: transform 0.55s ease;
}
.jrn__gallery-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 5px;
}
.jrn__gallery-img:hover { transform: scale(1.04); }
.jrn__gallery-img:hover::after { opacity: 1; }
.jrn__gallery-img--wide { display: none; }

/* 3 — Body text */
.jrn__body {
  padding: 2rem 5rem 4rem;
  background: #07111e;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  order: 3;
}
.jrn__lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  margin-bottom: 1.4rem;
}
.jrn__body p { margin-bottom: 1rem; }
.jrn__body h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-white);
  margin: 1.8rem 0 0.65rem;
}
.jrn__body blockquote {
  border-left: 2px solid var(--color-teal);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.6rem 0;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-size: 0.98rem;
}
.jrn__body blockquote cite {
  display: block;
  margin-top: 0.4rem;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  opacity: 0.65;
}

/* ── Sidebar (right) ── */
.jrn__sidebar {
  background: #07111e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.4);
}

.jrn__sidebar-head {
  padding: 2.4rem 2rem 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  background: linear-gradient(to bottom, rgba(10,161,175,0.1) 0%, transparent 100%);
}
.jrn__sidebar-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.55rem;
}
.jrn__sidebar-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.1;
}

.jrn__list {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 161, 175, 0.55) rgba(255, 255, 255, 0.04);
  padding: 1rem 0;
}

.jrn__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
  overflow: hidden;
  margin: 0 1rem;
  border-radius: 6px;
}
.jrn__item + .jrn__item {
  margin-top: 0.6rem;
}

.jrn__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--color-teal);
  transition: width 0.22s ease;
  border-radius: 2px 0 0 2px;
  z-index: 1;
}
.jrn__item.active::before { width: 3px; }
.jrn__item.active { background: rgba(255,255,255,0.06); }
.jrn__item:hover { background: rgba(255,255,255,0.05); }

.jrn__item-img {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px 0 0 4px;
  transition: transform 0.45s ease;
}
.jrn__item:hover .jrn__item-img { transform: scale(1.08); }

.jrn__item-body {
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
}

.jrn__item-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.jrn__item-meta span + span::before {
  content: '·';
  margin-right: 0.4rem;
}
.jrn__item-tag {
  color: var(--color-teal);
}

.jrn__item-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jrn__item:hover .jrn__item-title,
.jrn__item.active .jrn__item-title { color: var(--color-white); }

/* ============================================================
   FAQ SECTION
============================================================ */

.faq {
  position: relative;
  background: var(--color-dark);
  padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 6vw, 7rem) clamp(5rem, 9vw, 9rem);
  overflow: hidden;
}
.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.035), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.025), transparent 50%);
  pointer-events: none;
}
.faq__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.faq__head {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.faq__heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.faq__heading-line {
  display: block;
}
.faq__heading-line--italic {
  font-style: italic;
  color: var(--color-primary);
  opacity: 0.85;
  padding-left: 0.15em;
}
.faq__rule {
  display: block;
  width: 3rem;
  height: 1px;
  background: linear-gradient(to right, var(--color-primary), transparent);
  opacity: 0.7;
  margin: 0.2rem 0 0.4rem;
}
.faq__intro {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  max-width: 340px;
  margin: 0;
}

/* Jump-to category nav */
.faq__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.faq__nav-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.faq__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0;
  margin: 0;
}
.faq__nav-link {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.4rem 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
.faq__nav-link:hover {
  color: var(--color-white);
  gap: 1rem;
}
.faq__nav-num {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--color-primary);
  opacity: 0.6;
  min-width: 1.6em;
}
.faq__nav-text {
  flex: 1;
}

/* Still unsure? contact card */
.faq__help {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.faq__help-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  color: var(--color-white);
  line-height: 1.2;
}
.faq__help-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin: 0;
  max-width: 300px;
}
.faq__help-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
.faq__help-link:hover {
  color: var(--color-white);
  gap: 0.9rem;
}
.faq__help-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Accordion list */
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Category group */
.faq__group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.faq__group:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq__group-head {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  padding: 1.5rem 0.25rem;
  font-family: var(--font-heading);
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.4s ease;
}
.faq__group-head:hover,
.faq__group.open .faq__group-head {
  color: var(--color-white);
}

.faq__group-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--color-primary);
  opacity: 0.7;
}
.faq__group-label {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.9vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: inherit;
  line-height: 1.2;
}
.faq__group-count {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.32);
  font-variant-numeric: tabular-nums;
}
.faq__group-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.5s ease, border-color 0.4s ease, color 0.4s ease;
  flex-shrink: 0;
}
.faq__group-icon svg { width: 12px; height: 12px; }
.faq__group-head:hover .faq__group-icon {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}
.faq__group.open .faq__group-icon {
  transform: rotate(180deg);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Collapsible items container — grid-rows trick animates to actual height */
.faq__group-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s ease;
}
.faq__group.open .faq__group-items {
  max-height: 8000px;
}
.faq__group-items-inner {
  padding-bottom: 0.5rem;
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  padding: 1.6rem 0.25rem;
  font-family: var(--font-heading);
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.4s ease;
}
.faq__question:hover,
.faq__item.open .faq__question {
  color: var(--color-white);
}
.faq__q-num {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  opacity: 0.75;
}
.faq__q-text {
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.005em;
}
.faq__q-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.5s ease, border-color 0.4s ease, color 0.4s ease;
  flex-shrink: 0;
}
.faq__q-icon svg { width: 14px; height: 14px; }
.faq__question:hover .faq__q-icon {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}
.faq__item.open .faq__q-icon {
  transform: rotate(180deg);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Answer — height animation via max-height */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.faq__item.open .faq__answer {
  max-height: 3000px;
}
.faq__answer-inner {
  padding: 0 0 1.75rem calc(0.78rem + 1em + clamp(1rem, 2vw, 2rem));
  max-width: 720px;
}
.faq__answer-inner p {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 860px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .faq__head { position: static; }
  .faq__question { padding: 1.3rem 0; }
  .faq__answer-inner { padding-left: 0; }

  /* Subtle blue tint behind the question list so it reads as a different
     zone from the heading / nav block above. */
  .faq__list {
    background: #0f2637;
    margin: 0 calc(-1 * clamp(1.5rem, 6vw, 7rem));
    padding: 0.5rem clamp(1.5rem, 6vw, 7rem) 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* ============================================================
   CONTACT / FORM SECTION
============================================================ */

.cf {
  position: relative;
  background: var(--color-dark);
  overflow: hidden;
}

/* Background photo + dark overlay */
.cf__bg-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  pointer-events: none;
}

.cf__bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(8, 20, 32, 0.98) 0%,
    rgba(8, 20, 32, 0.88) 55%,
    rgba(8, 20, 32, 0.75) 100%
  );
}

/* Main layout: two columns */
.cf__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) var(--container-pad);
  align-items: start;
}

/* ── LEFT column ── */
.cf__left {
  position: sticky;
  top: 6rem;
}

.cf__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.cf__sub {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 32ch;
}

.cf__contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.cf__detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cf__detail-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.cf__detail-val {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  transition: color var(--trans-fast);
}

a.cf__detail-val:hover { color: var(--color-white); }

/* ── RIGHT column ── */
.cf__right {
  display: flex;
  flex-direction: column;
}

/* Tab switcher */
.cf__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cf__tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 0.85vw, 0.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  transition: color 0.25s ease, border-color 0.25s ease;
  margin-bottom: -1px;
  flex-shrink: 0;
}

.cf__tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: opacity 0.25s;
}

.cf__tab:hover {
  color: rgba(255,255,255,0.7);
}

.cf__tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* Vegan tab — subtle accent so it reads as different */
.cf__tab--accent:not(.active) {
  color: rgba(255, 255, 255, 0.78);
}
.cf__tab--accent:not(.active) svg {
  color: var(--color-primary);
  opacity: 0.85;
}
.cf__tab--accent:not(.active)::before {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(10,161,175,0.35), transparent);
  opacity: 0.55;
  pointer-events: none;
}
.cf__tab--accent { position: relative; }

/* Form panels */
.cf__form {
  display: none;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2.5rem 0 0;
}

.cf__form.active {
  display: flex;
}

.cf__form-header {
  margin-bottom: 0.4rem;
}

.cf__form-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.cf__form-desc {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* Grid rows */
.cf__row {
  display: grid;
  gap: 1rem;
}

.cf__row--2 { grid-template-columns: 1fr 1fr; }
.cf__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.cf__row--4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

/* Field */
.cf__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cf__label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
}

/* Shared input / select / textarea base */
.cf__input,
.cf__select,
.cf__textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw, 0.92rem);
  font-weight: 300;
  padding: 0.75rem 1rem;
  transition: border-color 0.25s ease, background 0.25s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Select dropdown panel — native <option> elements render with the OS panel,
   so force legible dark-on-light regardless of the parent select's color. */
.cf__input option,
.cf__select option {
  background-color: #0c1e2a;
  color: #f4f2ee;
}

.cf__input::placeholder,
.cf__textarea::placeholder {
  color: rgba(255,255,255,0.22);
}

.cf__input:focus,
.cf__select:focus,
.cf__textarea:focus {
  border-color: var(--color-primary);
  background: rgba(255,255,255,0.09);
}

/* Date input colour fix for webkit */
.cf__input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

/* Custom select wrapper (arrow icon) */
.cf__select-wrap {
  position: relative;
}

.cf__select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.38);
  pointer-events: none;
  transition: border-top-color 0.2s ease;
}

.cf__select-wrap:focus-within::after {
  border-top-color: var(--color-primary);
}

.cf__select {
  padding-right: 2.6rem; /* room for arrow */
  cursor: pointer;
}

/* Select option colors (native) */
.cf__select option {
  background: #0c1e2a;
  color: var(--color-white);
}

/* Textarea */
.cf__textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.cf__textarea--tall {
  min-height: 180px;
}

/* Actions row */
.cf__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.5rem;
  flex-wrap: wrap;
}

.cf__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-white);
  border: none;
  padding: 1.1rem 2.6rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--trans-fast), color var(--trans-fast);
  white-space: nowrap;
}

.cf__submit:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.cf__submit svg {
  width: 18px;
  height: 18px;
  transition: transform var(--trans-fast);
}

.cf__submit:hover svg { transform: translateX(4px); }

.cf__privacy {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.03em;
}

.cf__consent {
  flex-basis: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.cf__consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.cf__consent a {
  color: rgba(255,255,255,0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cf__consent a:hover { color: var(--color-primary); }

/* Honeypot — hidden from users, visible to bots */
.cf__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Submit status message */
.cf__status {
  flex-basis: 100%;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0.25rem 0 0;
  padding: 0.85rem 1.1rem;
  border-radius: 3px;
  border-left: 2px solid transparent;
}
.cf__status--ok {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(10, 161, 175, 0.12);
  border-left-color: var(--color-primary);
}
.cf__status--err {
  color: rgba(255, 200, 200, 0.9);
  background: rgba(220, 70, 70, 0.12);
  border-left-color: #dc4646;
}
.cf__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* Keep old btn-* classes so other references don't break */
.btn-primary {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-white);
  padding: 1.1rem 2.8rem;
  border-radius: 2px;
  transition: background var(--trans-fast), color var(--trans-fast);
}

.btn-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-outline {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 1.1rem 2.8rem;
  border-radius: 2px;
  transition: background var(--trans-fast), border-color var(--trans-fast);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
  background: #060e18;
  color: var(--color-white);
}

/* Marquee */
.footer__marquee {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.footer__marquee-track {
  display: flex;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.footer__marquee-set {
  display: flex;
  flex-shrink: 0;
  gap: 2.5rem;
  padding-right: 2.5rem; /* matches gap so the loop seam is invisible */
}

.footer__marquee-set span {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.2vw, 1.1rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.footer__marquee-dot {
  color: var(--color-primary) !important;
  font-style: normal !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* Big CTA */
.footer__cta-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--container-pad) clamp(3rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.footer__cta-headline em {
  font-style: italic;
  color: var(--color-primary);
}

.footer__cta-btn {
  flex-shrink: 0;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-white);
  padding: 1.1rem 2.8rem;
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: border-color var(--trans-fast), background var(--trans-fast);
}

.footer__cta-btn:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.05);
}

/* Grid */
.footer__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem) var(--container-pad);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer__logo {
  display: block;
  color: var(--color-white);
  margin-bottom: 1.8rem;
  transition: opacity var(--trans-fast);
}

.footer__logo:hover { opacity: 0.7; }
.footer__logo img   { height: 110px; width: auto; display: block; }

.footer__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 300px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.6rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer__nav a {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans-fast);
  letter-spacing: 0.01em;
}

.footer__nav a:hover { color: var(--color-white); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer__contact a,
.footer__contact p {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  transition: color var(--trans-fast);
}

.footer__contact a:hover { color: var(--color-white); }

.footer__contact-note {
  color: rgba(255,255,255,0.3) !important;
  font-size: clamp(0.78rem, 0.9vw, 0.85rem) !important;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.8rem var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer__bottom p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.2);
}

.footer__privacy-link {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color var(--trans-fast);
}
.footer__privacy-link:hover { color: var(--color-primary); }

/* ── Cookie consent banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.2rem var(--container-pad);
  background: rgba(7, 17, 30, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 60ch;
}
.cookie-banner p a {
  color: var(--color-primary);
  text-decoration: none;
}
.cookie-banner p a:hover { text-decoration: underline; }
.cookie-banner__btn {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--trans-fast);
}
.cookie-banner__btn:hover { background: #08909d; }

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1200px) {
  .nav__links { gap: 1.8rem; }

  .vessel__body {
    grid-template-columns: 1fr 360px;
    gap: var(--space-lg);
  }
}

@media (max-width: 900px) {
  .vessel__body {
    grid-template-columns: 1fr;
  }

  .vessel__right {
    position: static;
  }

  .vessel__photos {
    height: 380px;
  }

  .footer__cta-wrap { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer__cta-headline { font-size: clamp(3rem, 6vw, 5rem); }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1000px) {
  .journal__grid {
    grid-template-columns: 1fr;
  }

  .journal-featured {
    min-height: 480px;
  }
}

@media (max-width: 768px) {
  /* Never lock scroll on mobile — intro is bypassed */
  body { overflow: auto; }

  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero image: static cover, no JS pan */
  .scene__bg {
    height: 100%;
    object-fit: cover;
  }

  .scene__hero {
    text-align: left;
    align-items: flex-start;
    padding-bottom: 8vh;
    justify-content: flex-end;
  }

  .hero__headline { justify-content: flex-start; }

  .intro__container { text-align: left; align-items: flex-start; }
  .intro__headline  { justify-content: flex-start; }

  /* Intro section: text above video, stacked */
  .intro__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .intro__left {
    padding: 3rem 6vw;
  }

  .intro__video-wrap,
  .intro__media {
    height: 56vw;
    min-height: 220px;
  }

  .intro__play-label { display: none; }

  .intro__highlight {
    max-width: 100%;
  }

  /* ── Services: State 1 — 2-column card grid ── */
  .srv-grid {
    padding: 3rem 0 3.5rem;
  }

  .srv-grid__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .srv-grid__sub {
    opacity: 1;
    transform: none;
  }

  /* ── Services: State 2 — stacked mobile layout ── */
  .srv-expanded {
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  /* Sidebar becomes a static top bar */
  .srv__sidebar {
    position: static;
    width: 100%;
    max-height: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    order: 1;
    overflow: visible;
  }

  .srv__sidebar-brand,
  .srv__sidebar-foot {
    display: none;
  }

  /* Tabs become a horizontal scrollable strip */
  .srv__tabs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    flex: none;
    scrollbar-width: none;
  }

  .srv__tabs::-webkit-scrollbar { display: none; }

  .srv__tab {
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    width: auto;
    padding: 0.85rem 1.1rem;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    gap: 0.15rem;
  }

  .srv__tab:last-child { border-right: none; }

  .srv__tab-arrow,
  .srv__tab-sub { display: none; }

  /* Main: no longer absolute/full-bleed, just a static block */
  .srv__main {
    position: static;
    order: 2;
    flex-shrink: 0;
  }

  /* Hide inactive panels so they take no space */
  .srv__panel-content:not(.active) {
    display: none;
  }

  /* Active panel: padding-top creates the photo area (background constrained to it),
     then content-body flows naturally below as part of normal document flow */
  .srv__panel-content.active {
    position: static;
    opacity: 1;
    padding-top: 50vh;
    background-size: 100% 50vh;
    background-position: top center;
    background-repeat: no-repeat;
  }

  .srv__content-overlay { display: none; }

  .srv__content-body {
    position: static;
    width: 100%;
    background: var(--color-dark);
    padding: 2.5rem 1.5rem 3rem;
  }

  .srv__title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  /* ── Story section ── */
  .story__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
    min-height: 0;
  }

  /* Grid items must opt out of auto min-width or nowrap content pushes them wider */
  .story__left,
  .story__right {
    min-width: 0;
  }

  .story__member-name {
    white-space: normal;
    text-align: center;
  }

  .story__heading {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  /* Team circles: smaller + centred in one row */
  .story__team {
    justify-content: center;
    gap: 0;
  }

  .story__member {
    flex: 1;
    padding: 0.5rem 0.25rem;
  }

  .story__member-photo-wrap,
  .story__member-photo {
    width: 72px;
    height: 72px;
  }

  .story__member-name {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .story__member-role {
    font-size: 0.65rem;
  }

  /* Right panel: remove left border, add top border instead */
  .story__panels {
    padding-left: 0;
    padding-top: 2rem;
    padding-right: 2rem;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .story__right {
    padding: 0;
    overflow: hidden;
  }

  .destinations__layout { grid-template-columns: 1fr; gap: 3rem; }
  .dest-item {
    grid-template-columns: 2.5rem 1fr;
    gap: 0 1.2rem;
    padding: 1rem 0;
  }
  .dest-item__name { font-size: clamp(1.4rem, 5vw, 2rem); }
  .dest-item__sea { display: none; }

  .vessel__specs { grid-template-columns: repeat(2, 1fr); }

  .journal__header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .journal-item {
    grid-template-columns: 1fr;
  }

  .journal-item__img {
    height: 180px;
  }

  .article-modal__panel {
    width: 100vw;
  }

  /* ── Journal: full redesign for mobile ── */

  /* Unlock the 100vh locked container */
  .journal {
    height: auto;
    overflow: visible;
    padding: 3rem 0 3.5rem;
  }

  .jrn {
    display: block;
    height: auto;
    overflow: visible;
  }

  /* Hide the desktop reader — too complex for mobile */
  .jrn__reader { display: none; }

  /* Sidebar becomes the full mobile layout */
  .jrn__sidebar {
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    height: auto;
    overflow: visible;
  }

  .jrn__sidebar-head {
    padding: 0 1.5rem 2rem;
    border-bottom: none;
    background: none;
  }

  .jrn__sidebar-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  /* Article list: vertical stack of cards */
  .jrn__list {
    overflow: visible;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Each item: full-width photo card with overlay text */
  .jrn__item {
    grid-template-columns: 1fr;
    aspect-ratio: 16 / 9;
    position: relative;
    margin: 0;
    border-radius: 10px;
  }

  /* Image fills the entire card */
  .jrn__item-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    border-radius: 0;
  }

  /* Text panel anchored to the bottom */
  .jrn__item-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.4rem 1.4rem 1.2rem;
    background: linear-gradient(to top,
      rgba(6, 14, 26, 0.95) 0%,
      rgba(6, 14, 26, 0.55) 55%,
      transparent 100%);
    justify-content: flex-end;
    gap: 0.35rem;
  }

  .jrn__item-title {
    color: var(--color-white);
    font-size: 1rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  /* Featured first card — taller */
  .jrn__item:first-child {
    aspect-ratio: 4 / 3;
  }

  .jrn__item:first-child .jrn__item-title {
    font-size: 1.25rem;
  }

  /* Reader: hidden by default, becomes inline accordion when .mobile-open */
  .jrn__reader.mobile-open {
    display: block;
    height: auto;
    overflow: visible;
    border-radius: 0 0 10px 10px;
    margin: -0.5rem 1.5rem 1rem; /* tucks under the card */
    border-top: 2px solid var(--color-teal);
  }

  /* Articles inside the mobile drawer: static flow, not absolute */
  .jrn__reader.mobile-open .jrn__article {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: none;
    overflow-y: visible;
  }

  .jrn__reader.mobile-open .jrn__article.active {
    display: block;
    pointer-events: auto;
  }

  /* Tighten article content for mobile */
  .jrn__reader.mobile-open .jrn__article-head-text {
    padding: 1.5rem 1.5rem 1rem;
  }

  .jrn__reader.mobile-open .jrn__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .jrn__reader.mobile-open .jrn__gallery {
    grid-template-columns: repeat(2, 1fr);
    padding: 0.5rem 1.5rem 1.5rem;
  }

  .jrn__reader.mobile-open .jrn__body {
    padding: 1.5rem 1.5rem 2.5rem;
  }

  .contact__actions { flex-direction: column; align-items: center; }

  /* Contact form section — mobile */
  .cf__inner {
    grid-template-columns: 1fr;
  }

  .cf__left {
    position: static;
  }

  .cf__sub {
    font-size: 1rem;
    margin-bottom: 2.25rem;
    max-width: none;
  }

  .cf__contact-details {
    gap: 1.9rem;
    margin-bottom: 2.5rem;
  }

  .cf__detail-label {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
  }

  .cf__detail-val {
    font-size: 1.25rem;
    font-weight: 300;
  }

  .cf__tabs {
    flex-direction: column;
    overflow-x: visible;
    border-bottom: none;
    gap: 2px;
  }

  .cf__tab {
    padding: 1.2rem 1.3rem;
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    gap: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0;
    width: 100%;
  }

  .cf__tab svg {
    width: 22px;
    height: 22px;
  }

  .cf__tab.active {
    border-bottom-color: rgba(255,255,255,0.08);
    border-left: 2px solid var(--color-primary);
  }

  .cf__row--4 { grid-template-columns: 1fr 1fr; }
  .cf__row--3 { grid-template-columns: 1fr 1fr; }

  .footer__cta-wrap { padding: 3rem var(--container-pad) 2.5rem; }
  .footer__cta-headline { font-size: clamp(2.8rem, 10vw, 4rem); }
  .footer__cta-btn { padding: 0.9rem 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-md); padding-top: 2.5rem; padding-bottom: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cookie-banner { flex-direction: column; text-align: center; gap: 1rem; }

  /* Gallery: show a spread of 10 from across the full set on mobile */
  .gallery__item { display: none; }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(6),
  .gallery__item:nth-child(9),
  .gallery__item:nth-child(12),
  .gallery__item:nth-child(15),
  .gallery__item:nth-child(18),
  .gallery__item:nth-child(21),
  .gallery__item:nth-child(25),
  .gallery__item:nth-child(29) { display: block; }
}

@media (max-width: 1100px) {
  .cf__inner {
    grid-template-columns: 1fr;
  }

  .cf__left {
    position: static;
  }
}

@media (max-width: 480px) {
  .cf__row--4,
  .cf__row--3,
  .cf__row--2 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BACK TO TOP BUTTON
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(10, 161, 175, 0.5);
  background: rgba(10, 22, 40, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: rgba(10, 161, 175, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.25s ease, color 0.25s ease;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  border-color: rgba(10, 161, 175, 0.9);
  color: #fff;
  background: rgba(10, 161, 175, 0.2);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery {
  background: var(--color-deep);
  padding: 9rem 0 0;
}

.gallery__header {
  text-align: center;
  padding: 0 2rem 5rem;
}

.gallery__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 5.5rem);
  color: var(--color-sand);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 0.7rem;
  letter-spacing: -0.01em;
}

.gallery__heading em {
  font-style: italic;
  color: var(--color-teal);
}

.gallery__grid {
  column-count: 4;
  column-gap: 3px;
  padding: 0 3px;
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: 3px;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  display: block;
}

.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.75s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.1),
    rgba(10, 22, 40, 0.45)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item:hover::after {
  opacity: 1;
}

/* Lightbox */
.glb {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.glb.open {
  pointer-events: all;
}

.glb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 24, 0.95);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.glb__img-wrap {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glb__img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.glb__close {
  position: fixed;
  top: 1.8rem;
  right: 2.2rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-sand);
  font-size: 1.6rem;
  line-height: 1;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  font-family: var(--font-body);
}

.glb__close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   VEGAN SAILING SECTION
============================================================ */

.vgn {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 40% 60%;
  background: #06111e;
}

/* ── LEFT: photos + glass overlay ── */
.vgn__left {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  overflow: hidden;
}

.vgn__photos {
  position: absolute;
  inset: 0;
}

.vgn__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.vgn__photo.active {
  opacity: 1;
  transform: scale(1);
}

/* Glass selector card */
.vgn__selector {
  position: absolute;
  top: clamp(1.5rem, 3vh, 3rem);
  left: clamp(1.5rem, 3vw, 3.7rem);
  z-index: 10;
  background: rgba(6, 17, 30, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  overflow-y: auto;
  width: clamp(290px, 22vw, 360px);
  display: flex;
  flex-direction: column;
}

.vgn__selector-head {
  padding: 1.4rem 1.5rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.vgn__selector-label {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.75;
  margin-bottom: 0.4rem;
  display: block;
}

.vgn__selector-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.vgn__selector-title .word {
  display: inline;
}

.vgn__selector-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

/* Pricing grid inside selector */
.vgn__pricing {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 161, 175, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.vgn__pricing-label {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 0.15rem;
}

.vgn__pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.vgn__pricing-row:hover {
  border-color: rgba(10, 161, 175, 0.3);
  background: rgba(10, 161, 175, 0.06);
}

.vgn__pricing-type {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.vgn__pricing-cabins {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
}

.vgn__pricing-from {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 400;
  color: var(--color-primary);
  white-space: nowrap;
}

.vgn__pricing-note {
  font-family: var(--font-body);
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.45;
  margin-top: 0.1rem;
}

/* Dates inside selector */
.vgn__selector-dates {
  padding: 1rem 1.5rem;
  flex: 1;
}

.vgn__selector-dates-label {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 0.7rem;
}

.vgn__selector-dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.35rem;
}

.vgn__selector-date {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  padding: 0.35rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.vgn__selector-date:hover {
  border-color: rgba(10, 161, 175, 0.35);
  background: rgba(10, 161, 175, 0.06);
}

.vgn__selector-date-week {
  font-family: var(--font-heading);
  font-size: 0.48rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.7;
}

.vgn__selector-date-range {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

/* CTA inside selector */
.vgn__selector-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1rem 1.5rem 1.2rem;
  padding: 0.7rem 1.2rem;
  background: var(--color-primary);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.vgn__selector-cta:hover {
  background: #09919e;
  transform: translateY(-1px);
}
.vgn__selector-cta svg {
  width: 16px;
  height: 16px;
}

/* Thumbnail strip */
.vgn__thumbs {
  position: absolute;
  bottom: clamp(0.8rem, 1.5vh, 1.5rem);
  left: clamp(0.8rem, 1.5vw, 1.5rem);
  right: clamp(0.8rem, 1.5vw, 1.5rem);
  z-index: 12;
  display: flex;
  gap: 0.35rem;
  scrollbar-width: none;
}
.vgn__thumbs::-webkit-scrollbar {
  display: none;
}

.vgn__thumb {
  flex: 1 1 0;
  height: 60px;
  min-width: 0;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  padding: 0;
}
.vgn__thumb.active {
  opacity: 1;
  border-color: var(--color-primary);
}
.vgn__thumb:hover:not(.active) {
  opacity: 0.8;
}

/* ── RIGHT: info panel ── */
.vgn__right {
  position: relative;
  display: flex;
  flex-direction: column;
}

.vgn__right::before {
  content: '';
  position: absolute;
  top: -120px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(10, 161, 175, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.vgn__panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.1rem;
  padding: clamp(1.5rem, 2.5vh, 2.5rem) clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 3vh, 2.5rem);
  min-height: 100vh;
  flex: 1;
}

/* Header */
.vgn__panel-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.vgn__panel-label {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.85;
}

.vgn__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.vgn__title .word {
  display: inline;
}

/* Tagline / intro */
.vgn__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  border-left: 2px solid var(--color-primary);
  padding-left: 1.2rem;
}

.vgn__full-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-primary);
  text-decoration: none;
  padding: 1rem 1.7rem;
  border-radius: 2px;
  margin-top: 0.4rem;
  transition: background var(--trans-fast), color var(--trans-fast), transform var(--trans-fast);
  box-shadow: 0 8px 24px -10px rgba(10,161,175,0.45);
}
.vgn__full-link:hover {
  background: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-1px);
}
.vgn__full-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--trans-fast);
}
.vgn__full-link:hover svg { transform: translateX(4px); }

/* Section labels inside right panel */
.vgn__section-label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.3rem;
}

/* Chef bios in right panel */
.vgn__chef-bios {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vgn__chef-bio-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.6rem 0;
}

.vgn__chef-bio-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vgn__chef-bio-text {
  flex: 1;
  min-width: 0;
}

.vgn__chef-bio-name {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 0.95vw, 0.92rem);
  letter-spacing: 0.04em;
  color: var(--color-white);
  display: block;
  margin-bottom: 0.3rem;
}

.vgn__chef-bio-role {
  font-weight: 300;
  color: var(--color-primary);
  font-size: 0.8em;
}

.vgn__chef-bio-desc {
  font-family: var(--font-body);
  font-size: clamp(0.76rem, 0.86vw, 0.84rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

/* Included list */
.vgn__included {
  list-style: none;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  overflow: hidden;
}

.vgn__included-item {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 1rem 0.4rem 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  line-height: 1.5;
  transition: background var(--trans-fast);
}
.vgn__included-item:last-child { border-bottom: none; }
.vgn__included-item:hover { background: rgba(255, 255, 255, 0.025); }

.vgn__included-item::before {
  content: '\2713';
  position: absolute;
  left: 0.85rem;
  color: var(--color-primary);
  font-size: 0.75rem;
  top: 0.4rem;
}

/* Not included list */
.vgn__excluded {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vgn__excluded-item {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.82vw, 0.8rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  padding: 0.25rem 0 0.25rem 1.8rem;
  position: relative;
  line-height: 1.5;
}

.vgn__excluded-item::before {
  content: '\2715';
  position: absolute;
  left: 0.5rem;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.6rem;
  top: 0.3rem;
}

.vgn__section-label--muted {
  color: rgba(255, 255, 255, 0.22);
}

/* Highlights as detail rows (unused, kept for CMS compat) */
.vgn__highlights {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  overflow: hidden;
}

.vgn__highlight-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--trans-fast);
}
.vgn__highlight-row:last-child { border-bottom: none; }
.vgn__highlight-row:hover { background: rgba(255, 255, 255, 0.025); }

.vgn__highlight-key {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  opacity: 0.7;
  min-width: 24px;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.vgn__highlight-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.vgn__highlight-title {
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 0.96vw, 0.92rem);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.vgn__highlight-desc {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.82vw, 0.8rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
}

/* Story block — paragraphs of prose between intro and crew bios */
.vgn__story {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.2rem;
}

.vgn__story-p {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 0.94vw, 0.92rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

/* Feature blocks — title + paragraph */
.vgn__features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.4rem;
}

.vgn__feature {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.vgn__feature-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.25;
}

.vgn__feature-title--standalone {
  margin-top: 0.4rem;
}

.vgn__feature-body {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 0.9vw, 0.88rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* Schedule list */
.vgn__schedule {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 0;
}

.vgn__schedule-item {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 0.9vw, 0.88rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  padding-left: 1.2rem;
  position: relative;
}

.vgn__schedule-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.5rem;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.6;
}

/* Closing statement */
.vgn__closing {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  text-align: center;
  padding: 1.2rem 0 0.2rem;
  margin-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Reservation CTA at the bottom of the vegan right panel */
.vgn__reserve {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.1rem 1.2rem;
  margin-top: 1.2rem;
  padding: 1.1rem 1.4rem;
  text-decoration: none;
  color: var(--color-white);
  background: linear-gradient(135deg, rgba(10,161,175,0.16) 0%, rgba(10,161,175,0.06) 100%);
  border: 1px solid rgba(10,161,175,0.4);
  border-radius: 6px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.vgn__reserve:hover {
  background: linear-gradient(135deg, rgba(10,161,175,0.26) 0%, rgba(10,161,175,0.1) 100%);
  border-color: var(--color-primary);
}
.vgn__reserve-label {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
}
.vgn__reserve-note {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
}
.vgn__reserve-arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10,161,175,0.2);
  border: 1px solid rgba(10,161,175,0.5);
  color: var(--color-white);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.vgn__reserve-arrow svg { width: 18px; height: 18px; }
.vgn__reserve:hover .vgn__reserve-arrow {
  transform: translateX(4px);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* CTA */
.vgn__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(10, 161, 175, 0.1);
  border: 1px solid rgba(10, 161, 175, 0.35);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: background var(--trans-fast), border-color var(--trans-fast), gap var(--trans-fast);
}
.vgn__cta:hover {
  background: rgba(10, 161, 175, 0.2);
  border-color: var(--color-primary);
  gap: 1.4rem;
}
.vgn__cta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Vegan Sailing responsive ── */
@media (max-width: 768px) {
  .vgn {
    display: flex;
    flex-direction: column;
    grid-template-columns: initial;
    height: auto;
  }

  .vgn__left {
    position: static;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  /* Menu first */
  .vgn__selector {
    order: 1;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 1.25rem 1rem 0;
    max-height: none;
    overflow-y: visible;
  }

  /* Photo below the menu */
  .vgn__photos {
    order: 2;
    position: relative;
    inset: auto;
    height: 55vh;
    min-height: 340px;
    margin: 1.25rem 1rem 0;
    border-radius: 6px;
    overflow: hidden;
  }

  /* Thumbnails after the photo */
  .vgn__thumbs {
    order: 3;
    position: static;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0.75rem 1rem 0;
  }

  .vgn__panel {
    padding: 2rem 1.5rem;
  }
}

/* Gallery responsive */
@media (max-width: 1100px) {
  .gallery__grid {
    column-count: 3;
  }
}

@media (max-width: 700px) {
  .gallery__grid {
    column-count: 2;
  }

  .gallery {
    padding: 6rem 0 0;
  }
}

@media (max-width: 420px) {
  .gallery__grid {
    column-count: 2;
  }
}

/* ============================================================
   ITINERARIES SECTION — mirrors vegan sailing layout
============================================================ */

.itn {
  position: relative;
  background: #06111e;
  color: var(--color-white);
  padding-top: clamp(4rem, 7vw, 7rem);
}

/* Intro block */
.itn__intro-block {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.itn__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--color-white);
  margin: 0;
}
.itn__heading .word {
  display: inline;
}
.itn__intro {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* Tabs */
.itn__tabs {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  background: rgba(6, 17, 30, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: clamp(3rem, 5vw, 5rem);
  padding: 0 clamp(1rem, 3vw, 3rem);
  scrollbar-width: none;
}
.itn__tabs::-webkit-scrollbar { display: none; }

.itn__tab {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.25rem 1.4rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.35s ease, border-color 0.35s ease;
  flex-shrink: 0;
}
.itn__tab:hover {
  color: rgba(255, 255, 255, 0.85);
}
.itn__tab.active {
  color: var(--color-white);
  border-bottom-color: var(--color-primary);
}
.itn__tab-num {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  opacity: 0.8;
}
.itn__tab-label {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.15;
}
.itn__tab-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.005em;
  color: inherit;
}
.itn__tab-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

/* Stage that holds the routes */
.itn__stage {
  position: relative;
}

/* Route panel — 40/60 split, left sticky, inactive hidden */
.itn__route {
  display: none;
  min-height: 100vh;
  position: relative;
}
.itn__route.active {
  display: grid;
  grid-template-columns: 40% 60%;
}

/* Left column — hero photo + fact card */
.itn__left {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  overflow: hidden;
}
.itn__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.itn__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 17, 30, 0.92) 0%, rgba(6, 17, 30, 0.2) 40%, transparent 75%),
    linear-gradient(to bottom, rgba(6, 17, 30, 0.35) 0%, transparent 25%);
}
.itn__card {
  position: absolute;
  left: clamp(1.5rem, 3vw, 2.5rem);
  right: clamp(1.5rem, 3vw, 2.5rem);
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.4rem 1.5rem;
  background: rgba(6, 17, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.itn__card-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.85;
}
.itn__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.15;
  margin: -0.2rem 0 0;
}
.itn__card-route {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}
.itn__card-meta {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.8rem;
}
.itn__card-meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
}
.itn__card-meta li:last-child { border-bottom: none; }
.itn__card-meta li span {
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}
.itn__card-meta li strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  text-align: right;
}
.itn__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.6rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(10, 161, 175, 0.15);
  border: 1px solid rgba(10, 161, 175, 0.4);
  border-radius: 4px;
  text-decoration: none;
  transition: background var(--trans-fast), border-color var(--trans-fast), gap var(--trans-fast);
}
.itn__cta:hover {
  background: rgba(10, 161, 175, 0.28);
  border-color: var(--color-primary);
  gap: 1.3rem;
}
.itn__cta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Right column — detailed day-by-day */
.itn__right {
  position: relative;
  display: flex;
  flex-direction: column;
}
.itn__panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(2rem, 3.5vh, 3rem) clamp(2rem, 3.5vw, 3.5rem) clamp(2.5rem, 4vh, 4rem);
  min-height: 100vh;
}
.itn__panel-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.itn__panel-label {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.85;
}
.itn__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}
.itn__title .word { display: inline; }
.itn__route-line {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0.2rem 0 0;
}
.itn__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.02vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  border-left: 2px solid var(--color-primary);
  padding-left: 1.2rem;
  margin: 0;
}

.itn__section-label {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.6rem;
}

/* Day-by-day list */
.itn__days {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.itn__day {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 0 1.2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}
.itn__day::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 0.9rem;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.6;
}
.itn__day-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.itn__day-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.8;
}
.itn__day-meta {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}
.itn__day-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0.005em;
}
.itn__day-body {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 0.95vw, 0.94rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.2rem 0 0;
}

/* Practical list */
.itn__practical {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  overflow: hidden;
}
.itn__practical li {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.7rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
}
.itn__practical li:last-child { border-bottom: none; }
.itn__practical li span {
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}
.itn__practical li strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  text-align: right;
}

/* Mobile — stack, drop sticky */
@media (max-width: 860px) {
  .itn__route.active {
    display: flex;
    flex-direction: column;
  }
  .itn__left {
    position: static;
    height: auto;
  }
  .itn__photo {
    position: relative;
    height: 60vh;
  }
  .itn__card {
    position: static;
    left: auto; right: auto; bottom: auto;
    margin: -4rem 1.2rem 1.5rem;
    background: rgba(6, 17, 30, 0.85);
  }
  .itn__tabs {
    padding: 0 1rem;
  }
  .itn__tab {
    padding: 1rem 0.9rem;
  }
  .itn__panel {
    padding: 2rem 1.2rem 3rem;
  }
}

/* ============================================================
   VEGAN SAILING LANDING PAGE
============================================================ */

.vl-page {
  background: var(--color-deep);
  color: var(--color-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.vl-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.vl-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.9;
  display: inline-block;
  margin-bottom: 1.1rem;
}

.vl-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 2.2rem;
  color: var(--color-white);
}

.vl-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── NAV ── */
.vl-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(7,17,30,0.85) 0%, rgba(7,17,30,0.55) 60%, transparent 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.vl-nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.vl-nav__logo img {
  height: 38px;
  display: block;
}
.vl-nav__links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-left: auto;
}
.vl-nav__link {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--trans-fast);
}
.vl-nav__link:hover { color: var(--color-primary); }

.vl-nav__cta {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-white);
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background var(--trans-fast), color var(--trans-fast);
  white-space: nowrap;
}
.vl-nav__cta:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ── HERO ── */
.vl-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.vl-hero__inner {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vl-hero__label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 1.6rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(10,161,175,0.4);
  border-radius: 2px;
  background: rgba(10,161,175,0.06);
}

.vl-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 1.8rem;
}
.vl-hero__word {
  display: inline-block;
  margin-right: 0.15em;
}
.vl-hero__word:nth-child(1) { font-style: italic; color: var(--color-primary); }

.vl-hero__intro {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 2.4rem;
  font-weight: 300;
}

.vl-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-white);
  padding: 1.15rem 2.4rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background var(--trans-fast), color var(--trans-fast);
}
.vl-hero__cta:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.vl-hero__cta svg {
  width: 18px; height: 18px;
  transition: transform var(--trans-fast);
}
.vl-hero__cta:hover svg { transform: translateX(4px); }

.vl-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  animation: vl-bob 2.2s var(--ease-out) infinite;
}
.vl-hero__scroll svg { width: 28px; height: 28px; }
@keyframes vl-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ── STORY ── */
.vl-story__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.vl-story__p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
}
.vl-story__p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.2em;
  float: left;
  line-height: 0.9;
  padding: 0.15em 0.1em 0 0;
  color: var(--color-primary);
  font-weight: 400;
}

/* ── PILLARS ── */
.vl-pillars {
  background: rgba(10,161,175,0.02);
}
.vl-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}
.vl-pillar {
  padding: 2.4rem 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  background: rgba(255,255,255,0.015);
  transition: border-color var(--trans-fast), background var(--trans-fast);
}
.vl-pillar:hover {
  border-color: rgba(10,161,175,0.35);
  background: rgba(10,161,175,0.04);
}
.vl-pillar__num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--color-primary);
  opacity: 0.8;
  display: block;
  margin-bottom: 1.4rem;
}
.vl-pillar__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.vl-pillar__body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

/* ── CREW ── */
.vl-crew__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.vl-crew__card {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.vl-crew__photo {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  filter: saturate(0.95);
}
.vl-crew__name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}
.vl-crew__role {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 1.3rem;
}
.vl-crew__bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

/* ── SCHEDULE ── */
.vl-schedule__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 720px;
}
.vl-schedule__item {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  padding-left: 2rem;
  position: relative;
}
.vl-schedule__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 18px;
  height: 1px;
  background: var(--color-primary);
}

/* ── PRICING ── */
.vl-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.vl-pricing__card {
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  transition: border-color var(--trans-fast);
}
.vl-pricing__card:hover { border-color: rgba(10,161,175,0.4); }
.vl-pricing__type-line {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vl-pricing__type {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
}
.vl-pricing__cabins {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-left: auto;
}
.vl-pricing__from {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}
.vl-pricing__total {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.vl-pricing__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 1rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--color-primary);
}
.vl-pricing__closing {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-top: 2rem;
}

/* ── INCLUDED ── */
.vl-included__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}
.vl-included__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.vl-included__item {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  padding-left: 1.8rem;
  position: relative;
}
.vl-included__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 12px;
  height: 2px;
  background: var(--color-primary);
}
.vl-included__item--muted {
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.2);
}
.vl-included__item--muted::before {
  background: rgba(255,255,255,0.2);
}

/* ── DATES ── */
.vl-dates {
  background: rgba(10,161,175,0.02);
}
.vl-dates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.vl-dates__card {
  padding: 1.6rem 1.8rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color var(--trans-fast), background var(--trans-fast);
}
.vl-dates__card:hover {
  border-color: rgba(10,161,175,0.4);
  background: rgba(10,161,175,0.04);
}
.vl-dates__label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.vl-dates__range {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
}

/* ── GALLERY ── */
.vl-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 8px;
  padding: 0 8px;
  margin-top: 3rem;
}
.vl-gallery__item {
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out);
}
.vl-gallery__item:nth-child(1) { grid-row: span 2; }
.vl-gallery__item:nth-child(4) { grid-column: span 2; }
.vl-gallery__item:hover { transform: scale(1.015); }

/* ── CONTACT / FINAL CTA ── */
.vl-contact {
  padding: clamp(5rem, 10vh, 8rem) 0 clamp(5rem, 10vh, 8rem);
  background: linear-gradient(180deg, transparent 0%, rgba(10,161,175,0.04) 100%);
}
.vl-contact__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.vl-final__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}
.vl-final__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}
.vl-contact__form {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem clamp(1.5rem, 3vw, 3rem);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
}

/* ── FOOT ── */
.vl-foot {
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.vl-foot__logo img {
  height: 48px;
  margin-bottom: 1.6rem;
  opacity: 0.85;
}
.vl-foot__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  max-width: 520px;
  margin: 0 auto 1.4rem;
  font-weight: 300;
}
.vl-foot__meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.vl-foot__meta a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--trans-fast);
}
.vl-foot__meta a:hover { color: var(--color-primary); }

/* ── VEGAN LANDING RESPONSIVE ── */
@media (max-width: 980px) {
  .vl-story__body,
  .vl-crew__grid,
  .vl-included__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .vl-pillars__grid {
    grid-template-columns: 1fr;
  }
  .vl-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vl-dates__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vl-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .vl-gallery__item:nth-child(1),
  .vl-gallery__item:nth-child(4) {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .vl-nav__links { display: none; }
  .vl-pricing__grid {
    grid-template-columns: 1fr;
  }
  .vl-dates__grid {
    grid-template-columns: 1fr;
  }
  .vl-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    padding: 0;
  }
}
