/* ============================================================
   Sail Greece · Navigator Cruise Product Page
   ============================================================ */

:root {
  --mint:        #0ed1c0;
  --mint-deep:   #0bb8a8;
  --mint-soft:   #e8f9f2;
  --mint-tint:   #f3fbf7;
  --teal-dark:   #0f5a4a;
  --yellow:      #f7c500;

  --ink:         #0e1a26;
  --ink-2:       #1f2d3a;
  --muted:       #5a6772;
  --muted-2:     #8a95a0;

  --line:        #e5e9ed;
  --line-soft:   #eef1f4;
  --bg:          #ffffff;
  --bg-soft:     #f7f9fa;
  --bg-cream:    #fbfaf7;

  --serif:       'Fraunces', 'Times New Roman', Georgia, serif;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max:         1240px;
  --gutter:      clamp(1.25rem, 4vw, 2.5rem);
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 2px rgba(14, 26, 38, 0.06);
  --shadow-md:   0 4px 16px rgba(14, 26, 38, 0.08);
  --shadow-lg:   0 14px 40px rgba(14, 26, 38, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;   /* safety net: nothing should ever cause sideways scroll on mobile */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

/* ============================================================
   Reusable
   ============================================================ */

.h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 1rem;
}

.section__head {
  max-width: var(--max);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section__head--center {
  text-align: center;
}

.section__head--center .section__lede { margin-left: auto; margin-right: auto; }

.section__lede {
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  color: var(--muted);
  max-width: 58ch;
  margin-top: 1rem;
  line-height: 1.55;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--mint);
  color: var(--ink);
  border-color: var(--mint);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.btn--primary:hover { background: var(--mint-deep); border-color: var(--mint-deep); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }

@media (max-width: 700px) {
  .btn { padding: 1rem 1.6rem; min-height: 44px; }
  .btn--sm { padding: 0.75rem 1.25rem; font-size: 0.9rem; min-height: 44px; }
  .btn--lg { padding: 1.15rem 1.9rem; min-height: 48px; }
}

/* ============================================================
   Nav
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.1rem var(--gutter);
  background: var(--mint);
  box-shadow: 0 1px 0 rgba(14, 26, 38, 0.10), 0 8px 24px rgba(14, 26, 38, 0.08);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
}

.nav__sail { display: inline-block; width: 26px; height: 32px; color: currentColor; }
.nav__sail svg { width: 100%; height: 100%; display: block; }

.nav__logo-img {
  height: 72px;
  width: auto;
  display: block;
}
.nav__logo-img--footer { height: 80px; }

.nav__wordmark {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.nav.is-scrolled .nav__wordmark { color: var(--ink); }

.nav__wordmark--footer {
  font-size: 2rem;
  color: #fff;
}

.brand-g {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.brand-g__mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 78%;
  transform: translate(-46%, -50%);
  pointer-events: none;
  color: inherit;
}

.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #fff;
  transition: color .3s ease;
}

.nav__links a { opacity: 0.92; transition: opacity .2s ease; }
.nav__links a:hover { opacity: 1; color: #fff; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav__phone {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}

.nav .btn--primary {
  background: #fff;
  color: var(--mint-deep);
  border-color: #fff;
}
.nav .btn--primary:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
}

@media (max-width: 480px) {
  .nav__logo-img { height: 56px; }
  .nav__inner { gap: 1rem; }
}

/* Mobile-only tweaks (phones) */
@media (max-width: 560px) {
  /* Excursion cards: drop the misleading play button on mobile */
  .exc-card__play { display: none; }
}

/* Small phones — iPhone SE / mini / 13 (375–400px) */
@media (max-width: 400px) {
  .nav { padding: 0.05rem var(--gutter); }
  .nav__logo-img { height: 48px; }
  /* Pricing rows: tighter so date + price + chevron never crowd */
  .prow, .pitem__row { padding: 0.85rem 0.9rem; gap: 0.5rem; }
  .pitem__date { font-size: 0.95rem; }
  .pitem__price { font-size: 0.95rem; }
  /* Lightbox controls a touch in from the screen edge */
  .lightbox__arrow--prev { left: 0.5rem; }
  .lightbox__arrow--next { right: 0.5rem; }
  .lightbox__close { top: 0.6rem; right: 0.6rem; }
  /* Itinerary day strip: shrink so all 7 numbers fit without scrolling */
  .ib-num { width: 38px; height: 38px; font-size: 0.85rem; }
  .ib-side { gap: 0.2rem; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(7rem, 12vh, 9rem) var(--gutter);
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }

.hero__media img,
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.hero__media img {
  transform: scale(1.04);
  animation: heroZoom 22s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,26,38, 0.45) 0%, rgba(14,26,38, 0.10) 30%, rgba(14,26,38, 0.10) 55%, rgba(14,26,38, 0.80) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.hero__crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255, 0.75);
  margin-bottom: 1.8rem;
}
.hero__crumbs a { transition: color .2s ease; }
.hero__crumbs a:hover { color: var(--mint); }
.hero__crumbs span:last-child { color: #fff; font-weight: 500; }

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 1.2rem;
  color: var(--mint);
}
.hero__accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.5;
  max-width: 56ch;
  margin-bottom: 2rem;
  color: rgba(255,255,255, 0.92);
}

.hero__play {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.4rem 0.8rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255, 0.3);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 2.5rem;
  transition: background .2s ease, transform .15s ease;
}
.hero__play:hover { background: rgba(255,255,255, 0.2); transform: translateY(-1px); }
.hero__play svg { width: 18px; height: 18px; }

.hero__trust { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.hero__trust-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: rgba(255,255,255, 0.92);
}
.hero__trust-rating strong { color: var(--mint); font-weight: 700; }

.stars { display: inline-flex; gap: 2px; color: var(--mint); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   Overview
   ============================================================ */

.overview {
  padding: clamp(4rem, 8vh, 6rem) var(--gutter);
  background: var(--bg);
}

.overview__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

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

.overview__copy .h2 {
  margin-top: 0.25rem;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.overview__lede {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 1rem;
  max-width: 56ch;
}

/* Price card */
.price-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  margin-top: -10rem;
  position: relative;
  z-index: 2;
}

.price-card__from {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}
.price-card__from em {
  font-style: normal;
  font-weight: 500;
}

.price-card__price {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin: 0.5rem 0 1.2rem;
}
.price-card__price span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-left: 0.6rem;
  vertical-align: 0.7em;
  text-transform: uppercase;
}

.price-card__hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 -0.4rem 1.4rem;
}

.price-card__feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
  margin-bottom: 1.8rem;
}
.price-card__feats li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}

.pcf__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--mint-deep);
}
.pcf__icon svg { width: 22px; height: 22px; }

.price-card__cta {
  width: 100%;
  margin-bottom: 0.9rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.price-card__link {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
.price-card__link:hover { color: var(--mint-deep); border-color: var(--mint-deep); }

@media (max-width: 900px) {
  .overview {
    padding-top: 0;
    background: transparent;
    position: relative;
    z-index: 2;
  }
  .overview__inner {
    display: flex;
    flex-direction: column;
    background: var(--bg);
  }
  .overview__copy {
    order: 2;
    padding-top: 5.5rem;
  }
  .price-card {
    order: 1;
    position: relative;
    z-index: 3;
    max-width: 460px;
    margin: -10rem auto 0;
    width: calc(100% - 2rem);
    box-shadow: var(--shadow-lg);
    background: #fff;
  }
}

/* Phones: price card lower (covers less video) + tighter gap below it.
   Placed after the 900px block so it wins the cascade at phone widths. */
@media (max-width: 560px) {
  .overview__copy { padding-top: 2rem; }
  .price-card { margin-top: 1.5rem; }
}

/* ============================================================
   Feature Tiles
   ============================================================ */

.features {
  padding: 1rem var(--gutter) 4rem;
  background: var(--bg);
}

.features__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.feature {
  background: var(--mint-tint);
  border: 1px solid var(--mint-soft);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.feature:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-deep);
  box-shadow: 0 1px 2px rgba(14, 26, 38, 0.06);
}
.feature__icon svg { width: 28px; height: 28px; }

.feature h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

@media (max-width: 1000px) {
  .features__inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .features__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Vessel (The Gulet)
   ============================================================ */

.vessel {
  padding: clamp(4rem, 8vh, 7rem) var(--gutter);
  background: var(--bg-soft);
}

.vessel__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.vessel__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  box-shadow: var(--shadow-lg);
}
.vessel__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.vessel__badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(255,255,255, 0.95);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
}
.vessel__badge span { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.vessel__badge strong { font-family: var(--sans); font-weight: 800; color: var(--ink); font-size: 0.95rem; }

.vessel__body p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 1.2rem;
}

.vessel__specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.vessel__specs li { display: flex; flex-direction: column; gap: 0.3rem; }
.spec__k {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.spec__v {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .vessel__inner { grid-template-columns: 1fr; }
  .vessel__specs { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Gallery / Slideshow
   ============================================================ */

.gallery {
  padding: 0.5rem var(--gutter) 1rem;
  background: var(--bg);
}

.gallery__head {
  max-width: var(--max);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.gallery__title {
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 0.6rem;
}

.gallery__preview {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: clamp(0.7rem, 1.5vw, 1.2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem clamp(1rem, 4vw, 2rem) 0.75rem;
}
.gallery__preview::-webkit-scrollbar { display: none; }

.g-tile {
  position: relative;
  flex: 0 0 auto;
  width: clamp(260px, 80vw, 440px);   /* big tiles you swipe through */
  scroll-snap-align: center;
  aspect-ratio: 4 / 5;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
  box-shadow: var(--shadow-md);
  transition: box-shadow .25s ease;
}
.g-tile:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
.g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.g-tile:hover img { transform: scale(1.04); }

.g-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(14, 26, 38, 0.55);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 1rem;
  transition: background .25s ease;
}
.g-tile--more:hover .g-tile__overlay { background: rgba(14, 26, 38, 0.7); }
.g-tile__overlay svg { width: 30px; height: 30px; }

@media (max-width: 560px) {
  .g-tile { width: 82vw; border-radius: 12px; }
  .g-tile__overlay svg { width: 26px; height: 26px; }
}

/* ============================================================
   Lightbox
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 14, 20, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox[aria-hidden="false"] { display: flex; }

.lightbox__stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox__close,
.lightbox__arrow {
  position: absolute;
  border: none;
  background: rgba(255,255,255, 0.12);
  color: #fff;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s ease, transform .15s ease;
  z-index: 2;
}
.lightbox__close:hover,
.lightbox__arrow:hover { background: rgba(255,255,255, 0.22); }
.lightbox__close:active,
.lightbox__arrow:active { transform: scale(0.94); }
.lightbox__close svg,
.lightbox__arrow svg { width: 22px; height: 22px; }

.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__arrow--prev { left: clamp(0.75rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__arrow--next { right: clamp(0.75rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__arrow--prev:active { transform: translateY(-50%) scale(0.94); }
.lightbox__arrow--next:active { transform: translateY(-50%) scale(0.94); }

.lightbox__counter {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255, 0.85);
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
}

body.lightbox-open { overflow: hidden; }

@media (max-width: 560px) {
  .lightbox__close,
  .lightbox__arrow { width: 44px; height: 44px; }
}

/* ============================================================
   Itinerary (Sail Week-style)
   ============================================================ */

.itin-block {
  background: var(--bg);
  padding: clamp(4rem, 8vh, 6rem) 0 0;
}

.itin-block__head {
  max-width: 1400px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  padding: 0 var(--gutter);
  text-align: center;
}

.itin-block__eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.4rem;
}

.itin-block__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-transform: uppercase;
}

/* Mint panel */
.itin-block__panel {
  background: var(--mint);
  padding: clamp(3rem, 6vh, 5rem) 0;
  overflow: hidden;
}

.itin-block__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 90px minmax(320px, 1fr) 1.4fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
}

/* Side (number column) */
.ib-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding-top: 0.3rem;
}

.ib-arrow {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .15s ease, transform .15s ease;
  cursor: pointer;
}
.ib-arrow:hover { opacity: 0.7; transform: scale(1.1); }
.ib-arrow:disabled { opacity: 0.25; cursor: default; }
.ib-arrow svg { width: 20px; height: 20px; }

.ib-nums {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin: 0.3rem 0;
}

.ib-num {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: rgba(14, 26, 38, 0.45);
  cursor: pointer;
  transition: color .15s ease, background .2s ease, transform .15s ease;
  user-select: none;
  border-radius: 4px;
}
.ib-num:hover { color: var(--ink); }
.ib-num.is-active {
  background: var(--yellow, #f7c500);
  color: var(--ink);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Content card */
.ib-content {
  background: transparent;
  max-width: 460px;
}

.ib-content__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.ib-content__img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 24px rgba(14, 26, 38, 0.12);
}
.ib-content__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .25s ease;
}

.ib-content__desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.6rem;
  transition: opacity .25s ease;
}

.ib-content__cta {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  transition: background .2s ease, transform .15s ease;
}
.ib-content__cta:hover { background: var(--mint-deep); transform: translateY(-1px); }

.ib-content.is-fade { opacity: 0; }
.ib-content {
  transition: opacity .25s ease;
}

/* Map */
.ib-map {
  position: relative;
  align-self: stretch;
  min-height: 460px;
}

.ib-map__svg {
  width: 100%;
  height: auto;
  display: block;
}

.ib-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  background: var(--ink);
  color: var(--yellow, #f7c500);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.45rem 0.7rem;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  cursor: default;
}

.ib-pin::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: inherit;
}

.ib-pin.is-active {
  background: var(--yellow, #f7c500);
  color: var(--ink);
  transform: translate(-50%, -100%) scale(1.08);
  z-index: 2;
}

/* Mobile */
@media (max-width: 900px) {
  .itin-block__inner {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 1rem;
  }

  /* Map first */
  .ib-map {
    order: 1;
    min-height: 0;
    aspect-ratio: 600 / 540;
    width: 100%;
    margin-top: 0;
    background: #aae5d5;
    border-radius: 16px;
    overflow: hidden;
  }
  .ib-map__svg { height: 100%; }

  /* Day selector becomes horizontal */
  .ib-side {
    order: 2;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    padding-top: 0.6rem;
  }
  .ib-nums {
    flex-direction: row;
    gap: 0.15rem;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .ib-nums::-webkit-scrollbar { display: none; }
  .ib-num { width: 44px; height: 44px; font-size: 0.9rem; flex-shrink: 0; }
  .ib-num.is-active { font-size: 1rem; }
  .ib-arrow svg { transform: rotate(-90deg); }

  /* Content last */
  .ib-content {
    order: 3;
    max-width: 100%;
  }
  .ib-content__title { font-size: 1.1rem; margin-bottom: 0.9rem; }
  .ib-content__img { margin-bottom: 1rem; }

  .ib-pin { font-size: 0.72rem; padding: 0.32rem 0.5rem; }
}

@media (max-width: 560px) {
  .itin-block__title { font-size: clamp(1.2rem, 5.5vw, 1.7rem); }
}

/* ============================================================
   Inclusions
   ============================================================ */

/* Feature video (horizontal band above Included) */
.feature-video {
  padding: clamp(2rem, 5vh, 4rem) var(--gutter);
  background: var(--bg);
}
.feature-video__inner {
  max-width: var(--max);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}
.feature-video__el {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .feature-video { padding-top: 1rem; padding-bottom: 1rem; }
  .feature-video__inner { border-radius: 12px; }
}

.included {
  padding: clamp(4rem, 8vh, 7rem) var(--gutter);
  background: var(--bg-soft);
}

.incl-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.incl {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.incl:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.incl__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--mint-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.incl__icon svg { width: 32px; height: 32px; }

.incl h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}

.incl p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 32ch;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .incl-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Mobile: compact icon-left / text-right long rows */
@media (max-width: 560px) {
  .incl-grid { grid-template-columns: 1fr; gap: 0.55rem; }
  .incl {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-areas: "icon title" "icon desc";
    column-gap: 0.85rem;
    row-gap: 0.1rem;
    align-items: center;
    text-align: left;
    padding: 0.8rem 1rem;
    border-radius: 12px;
  }
  .incl:hover { transform: none; box-shadow: none; }
  .incl__icon {
    grid-area: icon;
    width: 44px;
    height: 44px;
    margin: 0;
    align-self: center;
  }
  .incl__icon svg { width: 22px; height: 22px; }
  .incl h4 { grid-area: title; font-size: 0.95rem; margin: 0; }
  .incl p { grid-area: desc; font-size: 0.8rem; line-height: 1.4; max-width: none; margin: 0; }
}

/* ============================================================
   Pricing (Accordion style)
   ============================================================ */

.pricing {
  padding: clamp(4rem, 8vh, 7rem) var(--gutter);
  background: var(--bg);
}

.pricing__head {
  max-width: 880px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.pricing__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.pricing__tabs {
  display: inline-flex;
  background: var(--bg-soft);
  padding: 5px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  gap: 4px;
}

.ptab {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  padding: 0.7rem 2.6rem;
  border-radius: 999px;
  color: var(--ink-2);
  transition: background .2s ease, color .2s ease;
}
.ptab:not(.is-active):not(.is-disabled):hover {
  background: rgba(0,0,0, 0.04);
}
.ptab.is-active {
  background: var(--mint);
  color: var(--ink);
}
.ptab.is-disabled {
  color: var(--muted-2);
  cursor: not-allowed;
  opacity: 0.5;
}

.pricing__disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
}

/* List */

.pricing__list {
  max-width: var(--max);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Row grid (shared by header + items) */
.prow,
.pitem__row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.2fr 1fr 32px;
  gap: 1.2rem;
  align-items: center;
  padding: 1.1rem 1.6rem;
  text-align: left;
}

.prow--header {
  background: var(--bg-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.prow--header > span:nth-child(4) { text-align: right; }

/* Item */
.pitem {
  border-top: 1px solid var(--line);
}
.pitem:first-of-type { border-top: none; }

.pitem__row {
  width: 100%;
  background: #fff;
  cursor: pointer;
  transition: background .15s ease, color .2s ease;
  font-family: var(--sans);
  border: none;
  font-size: 0.96rem;
}
.pitem__row:hover { background: var(--bg-soft); }

.pitem__date {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.pitem__date sup { font-size: 0.55em; font-weight: 600; opacity: 0.7; }

.pitem__route {
  color: var(--ink-2);
  font-weight: 500;
}

.pitem__cabins {
  color: var(--muted);
  font-weight: 500;
}

.pitem__price {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  text-align: right;
  letter-spacing: -0.01em;
}

/* Discounted price: struck-through original before the new price */
.was {
  text-decoration: line-through;
  color: var(--muted-2, #8a97a0);
  font-weight: 500;
  font-size: 0.82em;
  margin-right: 0.35em;
  opacity: 0.8;
}

.pitem__chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink-2);
  transition: transform .3s ease, background .2s ease, color .2s ease;
  justify-self: end;
}
.pitem__chev svg { width: 14px; height: 14px; }

/* Peak tag */
.peak-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 4px;
  background: var(--mint-soft);
  color: var(--teal-dark);
  vertical-align: 1.5px;
}

/* Open state */
.pitem.is-open .pitem__row {
  background: var(--mint);
  color: var(--ink);
}
.pitem.is-open .pitem__date,
.pitem.is-open .pitem__price { color: var(--ink); }
.pitem.is-open .pitem__route,
.pitem.is-open .pitem__cabins { color: rgba(14, 26, 38, 0.78); }
.pitem.is-open .pitem__chev {
  transform: rotate(180deg);
  background: rgba(255,255,255, 0.4);
}
.pitem.is-open .peak-tag {
  background: rgba(255,255,255, 0.65);
  color: var(--teal-dark);
}

/* Body */
.pitem__body {
  max-height: 0;
  overflow: hidden;
  background: var(--bg-soft);
  transition: max-height .4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pitem.is-open .pitem__body {
  max-height: 600px;
}
.pitem.is-open.is-booking .pitem__body {
  max-height: 4000px;
  transition: max-height .4s ease;
}

/* Inline booking iframe */
.book-embed-wrap {
  position: relative;
  width: 100%;
  display: block;
}
.book-embed-close {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  margin-bottom: 0.8rem;
  transition: background .15s ease, border-color .15s ease;
}
.book-embed-close:hover { background: var(--bg-soft); border-color: var(--muted-2); }
.book-embed-close svg { width: 14px; height: 14px; }
.book-embed {
  display: block;
  width: 100% !important;
  min-width: 100%;
  min-height: 700px;
  border: none;
  border-radius: 14px;
  background: var(--bg);
  box-shadow: var(--shadow-md);
}
.pitem.is-booking .pitem__inner { padding: 1.25rem; }

.pitem__inner {
  padding: 2rem 1.6rem 2.2rem;
}

.pitem__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.pitem__head h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.pitem__dates {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}
.pitem__dates sup { font-size: 0.6em; }

/* Deck row */
.pitem__deck {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1rem;
  align-items: center;
}

.pitem__deck-name {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.boat-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--mint-deep);
}
.boat-icon svg { width: 30px; height: 30px; }

.pitem__deck-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.dprice {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.dprice__k {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.dprice__v {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.pitem__cta {
  white-space: nowrap;
}

.pricing__note {
  max-width: var(--max);
  margin: 1.4rem auto 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  font-style: normal;
  text-align: center;
}

/* Mobile */
@media (max-width: 880px) {
  .prow,
  .pitem__row {
    grid-template-columns: 1fr 1fr 32px;
    gap: 0.6rem;
    padding: 1rem 1.1rem;
    font-size: 0.9rem;
  }
  .prow--header span:nth-child(2),
  .prow--header span:nth-child(3),
  .pitem__route,
  .pitem__cabins { display: none; }
  .prow--header > span:nth-child(4) { grid-column: 2; text-align: right; }
  .pitem__price { font-size: 1rem; }
  .pitem__inner { padding: 1.5rem 1.1rem 1.8rem; }
  .pitem__deck {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pitem__deck-prices { grid-template-columns: 1fr 1fr; }
  .pitem__cta { justify-self: start; }
}

@media (max-width: 500px) {
  .pitem__deck-prices { grid-template-columns: 1fr; }
  .pricing__title { font-size: 1.8rem; }
}

/* ============================================================
   Excursion Highlights
   ============================================================ */

.excursions {
  padding: clamp(4rem, 8vh, 7rem) 0 clamp(4rem, 8vh, 7rem);
  background: var(--bg-soft);
  position: relative;
}

.excursions__head {
  max-width: 880px;
  margin: 0 auto 2.5rem;
  padding: 0 var(--gutter);
  text-align: center;
}

.excursions__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 0.6rem;
  line-height: 1.55;
}
.excursions__sub a {
  color: var(--mint-deep);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}
.excursions__sub a:hover { color: var(--teal-dark); }

/* Arrow nav */
.excursions__nav {
  max-width: var(--max);
  margin: 0 auto 1.5rem;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.exc-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  box-shadow: var(--shadow-sm);
}
.exc-nav:hover { background: var(--mint); border-color: var(--mint); }
.exc-nav:active { transform: scale(0.95); }
.exc-nav:disabled { opacity: 0.3; cursor: default; background: #fff; }
.exc-nav svg { width: 18px; height: 18px; }

/* Scroller */
.exc-scroller {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem var(--gutter) 1.5rem;
  scroll-padding-left: var(--gutter);
  max-width: var(--max);
  margin-inline: auto;

  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.exc-scroller::-webkit-scrollbar { display: none; }

/* Card */
.exc-card {
  flex: 0 0 calc((min(100vw, var(--max)) - (var(--gutter) * 2) - 1.25rem * 3) / 4);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.exc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

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

.exc-card__play {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-deep);
}
.exc-card__play svg { width: 14px; height: 14px; margin-left: 2px; }

.exc-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.8rem;
}

.exc-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.exc-card__head h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.25;
}

.exc-card__price {
  font-family: var(--sans);
  font-weight: 700;
  font-style: normal;
  font-size: 1.15rem;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.exc-card__body p {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.exc-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 1px;
  transition: color .15s ease, border-color .15s ease;
}
.exc-card__link:hover { color: var(--mint-deep); border-color: var(--mint-deep); }

@media (max-width: 1100px) {
  .exc-card { flex-basis: calc((100vw - (var(--gutter) * 2) - 1.25rem * 2) / 3); }
}
@media (max-width: 800px) {
  .exc-card { flex-basis: calc((100vw - (var(--gutter) * 2) - 1.25rem) / 2); }
}
@media (max-width: 560px) {
  .exc-card { flex-basis: 78%; }
  .excursions__nav { display: none; }
}

/* ============================================================
   CTA Band
   ============================================================ */

.signup {
  padding: clamp(3rem, 7vh, 5rem) var(--gutter);
  background: var(--bg-soft);
}

.signup__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.signup__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

.signup__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.signup__field {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 0.95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.signup__field:focus-within {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(14, 209, 192, 0.18);
}
.signup__field svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
}
.signup__field input {
  border: none;
  background: transparent;
  padding: 1rem 0.7rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  width: 100%;
  outline: none;
}
.signup__field input::placeholder { color: var(--muted-2); }

.signup__submit {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.signup__consent {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
  text-align: left;
  max-width: 720px;
  line-height: 1.45;
  cursor: pointer;
}
.signup__consent input[type="checkbox"] {
  margin: 0.18rem 0 0 0;
  accent-color: var(--mint);
  flex-shrink: 0;
}

.signup__msg {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--mint-deep);
  min-height: 1.2em;
}

/* ============================================================
   Our Story
   ============================================================ */

.story {
  padding: clamp(4rem, 8vh, 6rem) var(--gutter);
  background: var(--bg-soft);
}

.story__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.story__media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.story__copy .eyebrow { margin-bottom: 0.7rem; }

.story__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.story__copy p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 1rem;
  max-width: 56ch;
}
.story__copy p:last-child { margin-bottom: 0; }

.story__sign {
  color: var(--muted);
  font-size: 0.95rem !important;
  margin-top: 1.4rem !important;
}

@media (max-width: 900px) {
  .story__inner { grid-template-columns: 1fr; }
  .story__media { aspect-ratio: 4 / 3; }
  .story__media img { aspect-ratio: 4 / 3; }
}

@media (max-width: 700px) {
  .story { padding-top: 2.5rem; padding-bottom: 2.5rem; }
}

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

.faq {
  padding: clamp(4rem, 8vh, 6rem) var(--gutter);
  background: var(--bg);
}

.faq__inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq__eyebrow { text-align: center; }
.faq__title {
  text-align: center;
  font-family: var(--sans);
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.01em;
  margin: 0.6rem 0 clamp(2rem, 4vw, 2.6rem);
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink);
  line-height: 1.4;
  transition: color .15s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--mint-deep); }

.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq__a {
  padding: 0 0 1.4rem;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 70ch;
}

@media (max-width: 700px) {
  .faq { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .faq__q { font-size: 1rem; padding: 1.1rem 0; }
  .faq__a { font-size: 0.95rem; padding-bottom: 1.1rem; }
}

@media (max-width: 640px) {
  .signup__form { grid-template-columns: 1fr; }
  .signup__consent { font-size: 0.78rem; }
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: #06121d;
  color: rgba(255,255,255, 0.7);
  padding: 4.5rem var(--gutter) 2rem;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer__brand { grid-column: 1; }
.footer__brand .nav__logo { color: #fff; margin-bottom: 1.2rem; }
.footer__tag { max-width: 36ch; font-size: 0.93rem; line-height: 1.55; color: rgba(255,255,255, 0.55); }

.footer__cols {
  display: contents;
}

.footer__cols > div { display: flex; flex-direction: column; }

.footer__cols h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.2rem;
}

.footer__cols a, .footer__cols span {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255, 0.65);
  padding: 0.3rem 0;
  transition: color .2s ease;
}
.footer__cols a:hover { color: var(--mint); }

.footer__legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255, 0.08);
  padding-top: 1.8rem;
  margin-top: 2rem;
  font-size: 0.83rem;
  color: rgba(255,255,255, 0.4);
}

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   MOBILE VERTICAL SPACING — kept at end of file so these
   overrides win the cascade over the base section rules above.
   ============================================================ */
@media (max-width: 700px) {
  .gallery { padding-top: 0.5rem; padding-bottom: 1rem; }
  .gallery__head { margin-bottom: 0.8rem; }
  .itin-block { padding-top: 0.5rem; }
  .itin-block__head { margin-bottom: 1.25rem; }
  .itin-block__eyebrow { margin-bottom: 0.5rem; }
  .itin-block__panel { padding: 1.5rem 0; }
  .overview { padding-bottom: 1rem; }
  .vessel { padding-top: 1rem; padding-bottom: 1rem; }
  .included { padding-top: 1rem; padding-bottom: 1rem; }
  .excursions { padding-top: 1rem; padding-bottom: 0.25rem; }
  .pricing { padding-top: 1.25rem; padding-bottom: 1rem; }
  .pricing__head { margin-bottom: 1rem; }
  .pricing__title { margin-bottom: 0.75rem; }
  .signup { padding-top: 1rem; padding-bottom: 1rem; }
  .faq { padding-top: 1rem; padding-bottom: 1rem; }
  .footer { padding-top: 1.4rem; }
  /* headings/eyebrows sit close to their content */
  .section__head { margin-bottom: 1rem; }
  .eyebrow { margin-bottom: 0.5rem; }
  .section__lede { margin-top: 0.6rem; }
}

/* Mobile hero — original full-bleed cover video with title overlaid */
@media (max-width: 700px) {
  .hero { min-height: 72vh; padding: 6rem var(--gutter) 4rem; }
}
