/* =============================================================
   SΞNSΞ TRΛVΞL ΛGΞNCY — index v2 (Seafloor)
   The page itself dives: sand → larimar shallows → mangrove deep → ocean.
   ============================================================= */
/* Honeypot anti-spam field — visually & semantically hidden */
.hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }

:root {
  /* Brand palette (from existing system) */
  --larimar:        #44c0c5;
  --larimar-deep:   #1f8b8f;
  --mangrove:       #148c84;
  --mangrove-deep:  #0f6b5e;
  --seashell:       #fae6d2;
  --sand:           #e8dcc4;
  --sand-deep:      #d8c9ab;
  --coral:          #F59E0B;
  --dominican-navy: #002D62;
  --ink:            #2a2418;
  --ink-soft:       rgba(42,36,24,0.72);
  --ink-faint:      rgba(42,36,24,0.5);
  --cream-soft:     rgba(250,230,210,0.85);
  --cream-faint:    rgba(250,230,210,0.55);

  /* Fonts */
  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max:   1440px;
  --pad-x: clamp(20px, 5vw, 80px);
  --pad-section: clamp(80px, 10vw, 140px);
}

/* -------------------------------------------------------------
   Reset / base
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;

  /* The full-page dive. Gradient spans the entire document height —
     scroll moves you THROUGH the colors instead of past a fixed wash. */
  background:
    linear-gradient(180deg,
      #f0e6d2  0%,
      #e8dcc4  6%,
      #e0d3b5 12%,
      #d6cdb0 18%,
      #c8d9c8 24%,
      #a4d8d3 31%,
      #6ec9c9 39%,
      #44c0c5 47%,
      #1f8b8f 58%,
      #148c84 68%,
      #0a5a5a 80%,
      #053a48 92%,
      #051828 100%);
  background-repeat: no-repeat;
}
img, picture, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
h1, h2, h3, h4, h5, p, ul, blockquote, figure { margin: 0; padding: 0; }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--mangrove); color: var(--seashell); }

/* -------------------------------------------------------------
   Typography utilities
   ------------------------------------------------------------- */
.serif    { font-family: var(--serif); font-weight: 400; }
.italic   { font-style: italic; }
.eyebrow  {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.eyebrow-rule {
  display: inline-flex; align-items: center; gap: 18px;
}
.eyebrow-rule::before,
.eyebrow-rule.has-after::after {
  content: '';
  display: inline-block;
  width: 48px; height: 1px;
  background: currentColor;
  opacity: 0.45;
}

/* -------------------------------------------------------------
   Containers
   ------------------------------------------------------------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }

/* -------------------------------------------------------------
   NAV
   ------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  position: -webkit-sticky;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: transparent;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
.nav.is-scrolled {
  background: rgba(240, 230, 210, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 14px; padding-bottom: 14px;
  box-shadow: 0 1px 0 rgba(42,36,24,0.08);
}
.nav-links {
  display: flex; gap: clamp(16px, 2.4vw, 36px);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--mangrove); }
.nav-links--right { justify-content: flex-end; align-items: center; }
/* Wordmark absolutely-centered in the nav so its position is independent
   of the flanking link columns (the right side has a pill that makes it
   wider than the left). */
.nav-wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex; justify-content: center; align-items: center;
  pointer-events: auto;
}
.nav-wordmark img { height: 88px; width: auto; }
.nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--seashell);
  border-radius: 999px;
  color: var(--mangrove-deep);
  background: var(--seashell);
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: var(--sand); color: var(--mangrove-deep); border-color: var(--sand); }
.hamburger {
  display: none;
  width: 32px; height: 24px;
  position: relative;
  margin-left: auto;
}
.hamburger span {
  position: absolute; left: 0; right: 0; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.hamburger span:nth-child(1) { top: 4px; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 4px; }
.hamburger.is-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* -------------------------------------------------------------
   HERO
   ------------------------------------------------------------- */
.hero {
  position: relative;
  margin: -76px clamp(12px, 2vw, 32px) 0;
  height: clamp(620px, 90vh, 820px);
  overflow: hidden;
  box-shadow: 0 50px 120px rgba(0,40,50,0.32);
}
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out, transform 7s linear;
  filter: brightness(0.86) saturate(1.05);
  transform: scale(1.0);
}
.hero-slide.is-active { opacity: 1; transform: scale(1.05); }

.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 30%, transparent 55%, rgba(0,30,40,0.45) 100%),
    radial-gradient(ellipse at center, transparent 38%, rgba(0,20,30,0.35) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute; inset: 0;
  padding: clamp(80px, 12vh, 130px) clamp(24px, 5vw, 80px) clamp(40px, 6vh, 64px);
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--seashell);
}
.hero-top {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.hero-top .eyebrow {
  text-shadow: 0 1px 3px rgba(0,0,0,0.7), 0 2px 10px rgba(0,0,0,0.5);
}
.hero-mid { max-width: 1000px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 116px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  display: flex; flex-direction: column; gap: 4px;
  filter:
    drop-shadow(0 6px 32px rgba(0,0,0,0.55))
    drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.hero-title .row { display: flex; align-items: baseline; gap: clamp(12px, 2vw, 28px); flex-wrap: wrap; }
.hero-title em, .hero-title .accent {
  font-style: italic; color: var(--larimar);
}
.hero-title .logo-inline {
  display: inline-block;
  height: clamp(64px, 12vw, 148px);
  width: auto;
  transform: translateY(clamp(8px, 1.5vw, 22px));
}
.hero-title--inline {
  align-items: baseline;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 32px);
}
.hero-title--inline .logo-inline { transform: translateY(clamp(4px, 0.8vw, 10px)); }
.hero-title .italic { font-style: italic; }
.hero-sub {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 2.4vw, 28px); line-height: 1.4;
  margin-top: 36px; max-width: 620px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 2px 14px rgba(0,0,0,0.45);
}
.hero-attribution {
  display: flex; align-items: center; gap: 14px;
  margin-top: 26px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--cream-soft);
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
  flex-wrap: wrap;
}
.hero-attribution .dot { opacity: 0.5; }
.hero-attribution-logo {
  display: inline-block;
  height: clamp(18px, 1.8vw, 22px);
  width: auto;
  vertical-align: middle;
  transform: translateY(2px);
  margin-left: 4px;
}
.hero-bot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 17px 30px;
  font-weight: 500;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--mangrove); color: var(--seashell);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.btn-primary:hover { background: var(--mangrove-deep); }
.btn-glass {
  border: 1px solid rgba(250,230,210,0.6); color: var(--seashell);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.btn-glass:hover { background: rgba(0,0,0,0.45); border-color: rgba(250,230,210,0.85); }
.btn-mangrove {
  background: var(--mangrove); color: var(--seashell);
  border-radius: 999px;
}
.btn-mangrove:hover { background: var(--mangrove-deep); }
.btn-larimar {
  background: var(--larimar); color: #fffaf3;
}
.btn-larimar:hover { background: #2eb1b6; }
.btn-link {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: inherit; border-bottom: 1px solid currentColor;
  padding-bottom: 3px; font-weight: 500;
}
.hero-scroll {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--seashell);
  writing-mode: vertical-rl; transform: rotate(180deg);
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

/* -------------------------------------------------------------
   Section base
   ------------------------------------------------------------- */
.section {
  padding: var(--pad-section) 0;
  position: relative;
}
.section-head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 18px;
  padding: 0 var(--pad-x);
  margin-bottom: clamp(48px, 7vh, 80px);
}
.section-head .eyebrow { opacity: 0.7; }
.section-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.96; letter-spacing: -0.025em;
  color: var(--dominican-navy);
}
.section-head h2 em, .section-head h2 .accent {
  font-style: italic; color: var(--mangrove);
}
.section-head .sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2.4vw, 28px); line-height: 1.5;
  max-width: 880px;
  font-weight: 400;
}

/* Section themes — text color shifts as we dive deeper into the gradient */
.section.on-sand    { color: var(--ink); }
.section.on-sand .section-head h2 { color: var(--dominican-navy); }
.section.on-sand .section-head h2 em { color: var(--mangrove); }
.section.on-sand .section-head .sub { color: var(--ink-soft); }

.section.on-water { color: var(--seashell); }
.section.on-water .section-head h2 { color: var(--seashell); }
.section.on-water .section-head h2 em { color: var(--larimar); }
.section.on-water .section-head .sub { color: var(--cream-soft); text-shadow: 0 1px 4px rgba(0,30,40,0.35); }
.section.on-water .eyebrow { color: var(--larimar); }

.section.on-deep { color: var(--seashell); }
.section.on-deep .section-head h2 { color: var(--seashell); }
.section.on-deep .section-head h2 em { color: var(--larimar); }
.section.on-deep .section-head .sub { color: var(--cream-soft); }
.section.on-deep .eyebrow { color: var(--larimar); }

/* -------------------------------------------------------------
   ABOUT — asymmetric image + manifesto
   ------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
  padding: 0 var(--pad-x);
}
.about-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  box-shadow: 0 30px 80px rgba(0,40,50,0.25);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: '';
  position: absolute; bottom: -22px; right: -22px;
  width: 60%; height: 60%;
  border: 1px solid rgba(20,140,132,0.45);
  z-index: -1;
}
.about-text .section-eyebrow {
  display: block; margin-bottom: 24px;
  color: var(--mangrove);
}
.about-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--dominican-navy);
  margin-bottom: 28px;
}
.about-text h2 em { font-style: italic; color: var(--mangrove); }
.about-text .lede {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 2vw, 24px); line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.about-text p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 18px; max-width: 540px; }

.pillars-strip {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(20,140,132,0.25);
  border-bottom: 1px solid rgba(20,140,132,0.25);
}
.pillar-tile {
  padding: 22px 18px;
  text-align: left;
  border-right: 1px solid rgba(20,140,132,0.15);
  cursor: pointer;
  transition: background 0.2s;
}
.pillar-tile:last-child { border-right: 0; }
.pillar-tile:hover { background: rgba(20,140,132,0.05); }
.pillar-tile .n {
  font-family: var(--serif); font-style: italic; font-size: 20px;
  color: var(--mangrove); display: block; margin-bottom: 6px;
}
.pillar-tile .name {
  font-family: var(--serif); font-size: 22px; line-height: 1.1;
  color: var(--dominican-navy);
}

/* -------------------------------------------------------------
   TRIPS — horizontal-scroll rail
   ------------------------------------------------------------- */
.trips-controls {
  display: flex; align-items: center; gap: 18px;
  padding: 0 var(--pad-x);
  margin-bottom: 24px;
}
.trips-controls .info {
  flex: 1; font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--cream-soft);
  text-shadow: 0 1px 3px rgba(0,30,40,0.3);
}
.trips-controls .ctrl {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(250,230,210,0.45);
  color: var(--seashell);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.trips-controls .ctrl:hover { background: var(--seashell); color: var(--dominican-navy); border-color: var(--seashell); transform: translateY(-1px); }

.trips-rail {
  display: flex;
  gap: 28px;
  padding: 16px var(--pad-x) 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(250,230,210,0.4) transparent;
}
.trips-rail::-webkit-scrollbar { height: 4px; }
.trips-rail::-webkit-scrollbar-thumb { background: rgba(250,230,210,0.4); border-radius: 2px; }

.trip-card {
  flex: 0 0 clamp(280px, 32vw, 480px);
  height: clamp(440px, 70vh, 640px);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 30px 60px rgba(0,40,50,0.4);
  cursor: pointer;
}
.trip-card-img {
  position: absolute; inset: 0;
  transition: transform 0.8s cubic-bezier(.2,.7,.3,1);
}
.trip-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.88) saturate(1.05);
}
.trip-card:hover .trip-card-img { transform: scale(1.06); }
.trip-card-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.92) 100%);
  pointer-events: none;
}
.trip-card-num {
  position: absolute; top: 24px; left: 28px;
  font-family: var(--serif); font-style: italic; font-size: 32px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.trip-card-badge {
  position: absolute; top: 32px; right: 28px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--larimar); font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.trip-card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 32px 26px;
  color: var(--seashell);
}
.trip-card-region {
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--larimar); margin-bottom: 12px; font-weight: 500;
}
.trip-card-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 44px); line-height: 1;
  letter-spacing: -0.01em;
}
.trip-card-reveal {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s, opacity 0.4s;
  margin-top: 16px;
}
.trip-card:hover .trip-card-reveal,
.trip-card:focus-within .trip-card-reveal { max-height: 240px; opacity: 1; }
.trip-card-reveal p {
  font-size: 14px; line-height: 1.6;
  color: rgba(250,230,210,0.9);
  margin-bottom: 12px;
}
.trip-card-reveal .arrow {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--larimar); font-weight: 500;
}

/* -------------------------------------------------------------
   PILLARS — Four pillars in 2x2 with hover reveal
   ------------------------------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2vw, 32px);
  padding: 0 var(--pad-x);
}
.pillar-card {
  position: relative;
  background: rgba(11,39,36,0.42);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(250,230,210,0.16);
  padding: clamp(32px, 4vw, 56px);
  min-height: 360px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  overflow: hidden;
}
.pillar-card:hover {
  background: rgba(11,39,36,0.58);
  border-color: rgba(68,192,197,0.45);
  transform: translateY(-3px);
}
.pillar-card .num {
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--larimar);
}
.pillar-card .title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 44px); line-height: 1.02;
  color: var(--seashell); letter-spacing: -0.01em;
}
.pillar-card .desc {
  font-size: 15px; line-height: 1.65;
  color: rgba(250,230,210,0.82);
  max-width: 480px;
}
.pillar-card .features {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(250,230,210,0.18);
  display: grid; gap: 10px;
}
.pillar-card .features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 0.05em;
  color: rgba(250,230,210,0.78);
}
.pillar-card .features li::before {
  content: ''; width: 18px; height: 1px; background: var(--larimar);
}

/* -------------------------------------------------------------
   GALLERY teaser
   ------------------------------------------------------------- */
.gallery {
  padding: 0 var(--pad-x);
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(12px, 1.5vw, 20px);
  margin-bottom: 24px;
}
.gallery-mosaic .tile {
  position: relative; overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,40,50,0.3);
}
.gallery-mosaic .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.7,.3,1);
  filter: brightness(0.92) saturate(1.05);
}
.gallery-mosaic .tile:hover img { transform: scale(1.04); }
.gallery-mosaic .tile-caption {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,30,40,0.85) 100%);
  display: flex; align-items: flex-end;
  padding: 22px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-mosaic .tile:hover .tile-caption { opacity: 1; }
.gallery-mosaic .tile-caption p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(14px, 1.3vw, 18px);
  color: var(--seashell);
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.gallery-mosaic .tile.t1 { grid-column: 1 / 6; grid-row: 1; aspect-ratio: 1; }
.gallery-mosaic .tile.t2 { grid-column: 6 / 13; grid-row: 1; aspect-ratio: 7/5; }
.gallery-mosaic .tile.t3 { grid-column: 1 / 4; grid-row: 2; aspect-ratio: 1; }
.gallery-mosaic .tile.t4 { grid-column: 4 / 7; grid-row: 2; aspect-ratio: 1; }
.gallery-mosaic .tile.t5 { grid-column: 7 / 10; grid-row: 2; aspect-ratio: 1; }

/* CTA tile — now a small square sitting alongside the three photo squares */
.gallery-mosaic .gallery-cta-tile {
  grid-column: 10 / 13; grid-row: 2; aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(20,140,132,0.94) 0%, rgba(15,107,94,0.96) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 14px;
  padding: clamp(14px, 1.8vw, 24px);
  color: var(--seashell);
  box-shadow: 0 14px 40px rgba(0,40,50,0.3);
  border: 1px solid rgba(250,230,210,0.16);
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.gallery-mosaic .gallery-cta-tile::after {
  content: ''; position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom right, rgba(68,192,197,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.gallery-mosaic .gallery-cta-tile:hover {
  background: linear-gradient(135deg, rgba(20,140,132,1) 0%, rgba(20,140,132,0.96) 100%);
  border-color: rgba(68,192,197,0.5);
  transform: translateY(-2px);
}
.gallery-mosaic .gallery-cta-tile h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(15px, 1.5vw, 22px); line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--seashell);
  margin: 0;
  position: relative; z-index: 1;
}
.gallery-mosaic .gallery-cta-tile h3 em { font-style: italic; color: var(--larimar); }
.gallery-mosaic .gallery-cta-tile .arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--seashell); font-weight: 500;
  position: relative; z-index: 1;
  white-space: nowrap;
}
.gallery-mosaic .gallery-cta-tile .arrow .line {
  display: inline-block; width: 18px; height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.gallery-mosaic .gallery-cta-tile:hover .arrow .line { width: 30px; }
.gallery-mosaic .gallery-cta-tile .eyebrow { display: none; }

.gallery-cta { display: none; }

/* -------------------------------------------------------------
   UPCOMING TRIP — Samaná chapter
   ------------------------------------------------------------- */
.upcoming-frame {
  padding: 0 var(--pad-x);
}
.upcoming-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.upcoming-cover {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(0,40,50,0.4);
}
.upcoming-cover img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.88) saturate(1.05); }
.upcoming-cover .label {
  position: absolute; top: 24px; left: 24px;
  background: rgba(250,230,210,0.92);
  backdrop-filter: blur(6px);
  color: var(--dominican-navy);
  padding: 10px 18px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
}
.upcoming-cover .stamp {
  position: absolute; bottom: 24px; right: 24px;
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--seashell);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.upcoming-detail {
  display: flex; flex-direction: column; gap: 22px;
}
.upcoming-detail .chapter {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--larimar);
}
.upcoming-detail h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px); line-height: 1.02;
  color: var(--seashell); letter-spacing: -0.02em;
}
.upcoming-detail h3 em { font-style: italic; color: var(--larimar); }
.upcoming-detail .dates {
  display: flex; align-items: baseline; gap: 18px;
  border-top: 1px solid rgba(250,230,210,0.25);
  border-bottom: 1px solid rgba(250,230,210,0.25);
  padding: 18px 0;
}
.upcoming-detail .dates .when {
  font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px);
  color: var(--seashell);
}
.upcoming-detail .dates .for {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-soft);
}
.upcoming-detail .hotels {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.upcoming-detail .hotel { padding: 14px 0; }
.upcoming-detail .hotel h4 {
  font-family: var(--serif); font-size: 20px; color: var(--seashell);
  margin-bottom: 4px;
}
.upcoming-detail .hotel p {
  font-size: 13px; color: var(--cream-soft); line-height: 1.5;
}
.upcoming-detail .activities {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 24px;
  margin-top: 8px;
}
.upcoming-detail .activities li {
  font-size: 14px; color: var(--seashell);
  display: flex; align-items: center; gap: 10px;
}
.upcoming-detail .activities li::before {
  content: ''; width: 14px; height: 1px; background: var(--larimar);
}
.upcoming-detail .included {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(250,230,210,0.18);
}
.upcoming-detail .included h4 {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--larimar); margin-bottom: 12px; font-weight: 500;
}
.upcoming-detail .included ul { display: grid; gap: 8px; }
.upcoming-detail .included li {
  font-size: 13px; color: var(--cream-soft); line-height: 1.5;
}
.upcoming-detail .ctas { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; }

/* -------------------------------------------------------------
   AMBASSADOR
   ------------------------------------------------------------- */
.ambassador-grid {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.ambassador-image {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(0,40,50,0.4);
}
.ambassador-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.88) saturate(1.05); }
.ambassador-text .eyebrow { color: var(--larimar); margin-bottom: 18px; display: block; }
.ambassador-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px); line-height: 1.02;
  color: var(--seashell); letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.ambassador-text h2 em { font-style: italic; color: var(--larimar); }
.ambassador-text .lede {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2vw, 24px); line-height: 1.5;
  color: var(--cream-soft); margin-bottom: 22px;
}
.ambassador-text p { color: var(--cream-soft); line-height: 1.7; margin-bottom: 14px; }
.ambassador-text .ctas { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

/* -------------------------------------------------------------
   CONTACT / WAITLIST
   ------------------------------------------------------------- */
.contact-grid {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
}
.contact-text .eyebrow { color: var(--larimar); margin-bottom: 18px; display: block; }
.contact-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 6vw, 88px); line-height: 0.96;
  color: var(--seashell); letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.contact-text h2 em { font-style: italic; color: var(--larimar); }
.contact-text .lede {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2vw, 24px); line-height: 1.5;
  color: var(--cream-soft); margin-bottom: 22px;
}
.contact-form {
  background: rgba(5,24,40,0.6);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(250,230,210,0.18);
  padding: clamp(28px, 4vw, 48px);
  display: grid; gap: 18px;
  box-shadow: 0 30px 80px rgba(0,30,40,0.4);
}
.contact-form label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--larimar); font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(250,230,210,0.3);
  padding: 12px 0;
  color: var(--seashell);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--sans);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-bottom-color: var(--larimar); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(250,230,210,0.5); }
.contact-form select option { background: #051828; color: var(--seashell); }
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form .field { display: grid; gap: 8px; }
.contact-form button {
  margin-top: 8px; justify-self: start;
  background: var(--larimar); color: var(--dominican-navy);
  padding: 16px 32px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.contact-form button:hover { background: #2eb1b6; transform: translateY(-1px); }

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */
.footer {
  padding: clamp(80px, 10vw, 120px) var(--pad-x) 36px;
  border-top: 1px solid rgba(250,230,210,0.15);
  color: var(--seashell);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,230,210,0.12);
}
.footer-brand .word { display: block; }
.footer-brand .word img { height: 64px; width: auto; }
.footer-brand .tag {
  font-family: var(--serif); font-style: italic;
  font-size: 20px; color: var(--larimar);
  margin-top: 18px;
}
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--larimar); margin-bottom: 20px; font-weight: 500;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col li { font-family: var(--serif); font-size: 17px; color: rgba(250,230,210,0.88); transition: color 0.2s; }
.footer-col li:hover { color: var(--seashell); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 28px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-faint);
  gap: 24px; flex-wrap: wrap;
}
.footer-socials { display: flex; gap: 18px; }
.footer-socials a:hover { color: var(--larimar); }

/* -------------------------------------------------------------
   WhatsApp floating button
   ------------------------------------------------------------- */
.whatsapp-chat {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
}
.whatsapp-chat a {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.whatsapp-chat a:hover { transform: scale(1.06); }

/* -------------------------------------------------------------
   Mobile menu drawer
   ------------------------------------------------------------- */
.mobile-drawer {
  position: fixed; inset: 0;
  background: rgba(11,39,36,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  padding: 100px clamp(24px, 5vw, 60px) 40px;
  display: flex; flex-direction: column; gap: 22px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
  color: var(--seashell);
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--seashell);
  border-bottom: 1px solid rgba(250,230,210,0.12);
  padding-bottom: 14px;
}
.mobile-drawer a:last-child { border-bottom: 0; }

/* -------------------------------------------------------------
   Reveal-on-scroll
   ------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------
   Responsive
   ------------------------------------------------------------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav { grid-template-columns: auto 1fr; }
  .nav-wordmark { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .nav-wordmark img { height: 64px; }
  .hero { margin: 0; }
  .hero-content { padding-top: 100px; }
  .hero-title .row { gap: 12px; }
  .hero-bot { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { max-width: 480px; margin: 0 auto; height: auto; aspect-ratio: 4/5; min-height: 0; }
  .pillars-strip { grid-template-columns: repeat(2, 1fr); }
  .pillar-tile:nth-child(2) { border-right: 0; }
  .pillar-tile:nth-child(1), .pillar-tile:nth-child(2) { border-bottom: 1px solid rgba(20,140,132,0.15); }

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

  .gallery-mosaic { grid-template-columns: repeat(6, 1fr); }
  .gallery-mosaic .tile.t1 { grid-column: 1 / 7; grid-row: auto; aspect-ratio: 7/5; }
  .gallery-mosaic .tile.t2 { grid-column: 1 / 7; grid-row: auto; aspect-ratio: 7/5; }
  .gallery-mosaic .tile.t3 { grid-column: span 3; grid-row: auto; }
  .gallery-mosaic .tile.t4 { grid-column: span 3; grid-row: auto; }
  .gallery-mosaic .tile.t5 { grid-column: span 3; grid-row: auto; }
  .gallery-mosaic .gallery-cta-tile { grid-column: span 3; grid-row: auto; aspect-ratio: 1; }

  .upcoming-grid { grid-template-columns: 1fr; }
  .upcoming-detail .activities { grid-template-columns: 1fr 1fr; }

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

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

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .hero { height: 600px; }
  .hero-content { padding: 90px 20px 30px; }
  .trip-card { flex-basis: 78vw; }
  .upcoming-detail .activities { grid-template-columns: 1fr; }
  .upcoming-detail .included { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: left; }
}

/* =============================================================
   READABILITY SCHEMES — toggle via body.scheme-glass / scheme-paper / scheme-editorial
   ============================================================= */

/* Scheme switcher (floating) */
.scheme-toggle {
  position: fixed; bottom: 24px; left: 24px; z-index: 60;
  display: flex; align-items: center; gap: 4px;
  background: rgba(11,39,36,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 6px;
  border: 1px solid rgba(250,230,210,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.scheme-toggle .lbl {
  padding: 0 10px;
  font-family: var(--serif); font-style: italic; font-size: 13px;
  color: var(--larimar);
}
.scheme-toggle button {
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,230,210,0.7);
  transition: background 0.2s, color 0.2s;
}
.scheme-toggle button:hover { color: var(--seashell); }
.scheme-toggle button.is-active {
  background: var(--larimar);
  color: var(--dominican-navy);
  font-weight: 600;
}

/* ════ A · GLASS — Dark glass cards (the Pillars treatment) ════ */
body.scheme-glass .about-text,
body.scheme-glass .upcoming-detail,
body.scheme-glass .ambassador-text,
body.scheme-glass .contact-text {
  background: linear-gradient(180deg, rgba(11,39,36,0.55), rgba(5,24,40,0.72));
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(250,230,210,0.18);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: 0 30px 80px rgba(0,30,40,0.4);
}
body.scheme-glass .about-text .section-eyebrow,
body.scheme-glass .ambassador-text .eyebrow,
body.scheme-glass .contact-text .eyebrow { color: var(--larimar); }
body.scheme-glass .about-text h2,
body.scheme-glass .upcoming-detail h3,
body.scheme-glass .ambassador-text h2,
body.scheme-glass .contact-text h2 { color: var(--seashell); }
body.scheme-glass .about-text h2 em,
body.scheme-glass .upcoming-detail h3 em,
body.scheme-glass .ambassador-text h2 em,
body.scheme-glass .contact-text h2 em { color: var(--larimar); }
body.scheme-glass .about-text .lede,
body.scheme-glass .ambassador-text .lede,
body.scheme-glass .contact-text .lede { color: var(--cream-soft); }
body.scheme-glass .about-text p,
body.scheme-glass .ambassador-text p,
body.scheme-glass .contact-text p { color: rgba(250,230,210,0.85); }
body.scheme-glass .about-text .pillars-strip { border-color: rgba(250,230,210,0.22); }
body.scheme-glass .about-text .pillar-tile { border-color: rgba(250,230,210,0.14); }
body.scheme-glass .about-text .pillar-tile:hover { background: rgba(250,230,210,0.05); }
body.scheme-glass .about-text .pillar-tile .n { color: var(--larimar); }
body.scheme-glass .about-text .pillar-tile .name { color: var(--seashell); }

/* ════ B · PAPER — Cream/sand paper cards floating on the water ════ */
body.scheme-paper .about-text,
body.scheme-paper .upcoming-detail,
body.scheme-paper .ambassador-text,
body.scheme-paper .contact-text {
  background: linear-gradient(180deg, #fbf5ea 0%, #f4ead8 100%);
  border: 1px solid rgba(20,140,132,0.18);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: 0 30px 80px rgba(0,30,40,0.28);
}
body.scheme-paper .about-text .section-eyebrow,
body.scheme-paper .ambassador-text .eyebrow,
body.scheme-paper .contact-text .eyebrow { color: var(--mangrove); }
body.scheme-paper .about-text h2,
body.scheme-paper .upcoming-detail h3,
body.scheme-paper .ambassador-text h2,
body.scheme-paper .contact-text h2 { color: var(--dominican-navy); }
body.scheme-paper .about-text h2 em,
body.scheme-paper .upcoming-detail h3 em,
body.scheme-paper .ambassador-text h2 em,
body.scheme-paper .contact-text h2 em { color: var(--mangrove); }
body.scheme-paper .about-text .lede,
body.scheme-paper .ambassador-text .lede,
body.scheme-paper .contact-text .lede { color: var(--ink); }
body.scheme-paper .about-text p,
body.scheme-paper .ambassador-text p,
body.scheme-paper .contact-text p { color: var(--ink-soft); }
body.scheme-paper .about-text .pillars-strip { border-color: rgba(20,140,132,0.25); }
body.scheme-paper .about-text .pillar-tile { border-color: rgba(20,140,132,0.15); }
body.scheme-paper .about-text .pillar-tile .n { color: var(--mangrove); }
body.scheme-paper .about-text .pillar-tile .name { color: var(--dominican-navy); }
body.scheme-paper .upcoming-detail .chapter { color: var(--mangrove); }
body.scheme-paper .upcoming-detail .dates { border-color: rgba(20,140,132,0.3); }
body.scheme-paper .upcoming-detail .dates .when { color: var(--dominican-navy); }
body.scheme-paper .upcoming-detail .dates .for { color: var(--ink-soft); }
body.scheme-paper .upcoming-detail .hotel h4 { color: var(--dominican-navy); }
body.scheme-paper .upcoming-detail .hotel p { color: var(--ink-soft); }
body.scheme-paper .upcoming-detail .activities li { color: var(--ink); }
body.scheme-paper .upcoming-detail .activities li::before { background: var(--mangrove); }
body.scheme-paper .upcoming-detail .included { border-color: rgba(20,140,132,0.2); }
body.scheme-paper .upcoming-detail .included h4 { color: var(--mangrove); }
body.scheme-paper .upcoming-detail .included li { color: var(--ink-soft); }
body.scheme-paper .contact-form {
  background: rgba(5,24,40,0.78);
}
body.scheme-paper .contact-text { padding-right: 0; }

/* ════ C · EDITORIAL — No cards. Pure typography + scrim per section ════ */
body.scheme-editorial .section.on-water,
body.scheme-editorial .section.on-deep {
  position: relative;
}
body.scheme-editorial .section.on-water::before,
body.scheme-editorial .section.on-deep::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(5,24,40,0.45) 0%, transparent 70%),
    radial-gradient(ellipse at 70% 50%, rgba(5,24,40,0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body.scheme-editorial .section > * { position: relative; z-index: 1; }
body.scheme-editorial .about-text h2,
body.scheme-editorial .upcoming-detail h3,
body.scheme-editorial .ambassador-text h2,
body.scheme-editorial .contact-text h2 {
  color: var(--seashell);
  text-shadow: 0 2px 12px rgba(0,20,30,0.7), 0 1px 3px rgba(0,0,0,0.6);
}
body.scheme-editorial .about-text h2 em,
body.scheme-editorial .upcoming-detail h3 em,
body.scheme-editorial .ambassador-text h2 em,
body.scheme-editorial .contact-text h2 em { color: var(--larimar); }
body.scheme-editorial .about-text .section-eyebrow,
body.scheme-editorial .ambassador-text .eyebrow,
body.scheme-editorial .contact-text .eyebrow {
  color: var(--larimar);
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
body.scheme-editorial .about-text .lede,
body.scheme-editorial .ambassador-text .lede,
body.scheme-editorial .contact-text .lede {
  color: var(--seashell);
  text-shadow: 0 1px 4px rgba(0,20,30,0.7), 0 2px 10px rgba(0,0,0,0.4);
  font-weight: 500;
}
body.scheme-editorial .about-text p,
body.scheme-editorial .ambassador-text p,
body.scheme-editorial .contact-text p {
  color: var(--seashell);
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
}
body.scheme-editorial .about-text .pillars-strip { border-color: rgba(250,230,210,0.35); }
body.scheme-editorial .about-text .pillar-tile { border-color: rgba(250,230,210,0.18); }
body.scheme-editorial .about-text .pillar-tile .n { color: var(--larimar); text-shadow: 0 1px 3px rgba(0,0,0,0.6); }
body.scheme-editorial .about-text .pillar-tile .name { color: var(--seashell); text-shadow: 0 1px 3px rgba(0,0,0,0.6); }
body.scheme-editorial .upcoming-detail .chapter { color: var(--larimar); text-shadow: 0 1px 3px rgba(0,0,0,0.6); }
body.scheme-editorial .upcoming-detail .dates .when { text-shadow: 0 1px 3px rgba(0,0,0,0.6); }
body.scheme-editorial .upcoming-detail .activities li { text-shadow: 0 1px 3px rgba(0,0,0,0.55); }
body.scheme-editorial .upcoming-detail .included h4 { text-shadow: 0 1px 3px rgba(0,0,0,0.6); }
body.scheme-editorial .upcoming-detail .included li { text-shadow: 0 1px 3px rgba(0,0,0,0.55); }
body.scheme-editorial .upcoming-detail .hotel h4 { text-shadow: 0 1px 3px rgba(0,0,0,0.6); }
body.scheme-editorial .upcoming-detail .hotel p { text-shadow: 0 1px 3px rgba(0,0,0,0.55); }

/* =============================================================
   HIDE SECTION EYEBROWS
   The small "— Section Name" labels above each big heading.
   ============================================================= */
.section-head .eyebrow,
.about-text .section-eyebrow,
.ambassador-text > .eyebrow,
.contact-text > .eyebrow,
.upcoming-detail .chapter { display: none !important; }

/* Title-toggle UI no longer relevant — hide it */
.title-toggle { display: none !important; }

/* Section heads: remove the empty gap left by the missing eyebrow */
.section-head { gap: 22px; }

/* Pillars section sits in larimar shallows (~47-58%). Inverted: dark main, light italic. */
#pillars .section-head h2 { color: var(--mangrove-deep); }
#pillars .section-head h2 em { color: var(--mangrove-deep); }
#pillars .section-head .sub {
  color: var(--mangrove-deep);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(255,250,240,0.4);
}

/* Gallery — "trip moments." gets a warm coral accent instead of larimar,
   to differentiate from the surrounding water-tone titles. */
#gallery .section-head h2 em { color: var(--mangrove-deep); }

/* ─────────────────────────────────────────────────────────
   Inline SENSE wordmark — drops the logo into running text
   in place of the typed "SΞNSΞ". Two variants for context:
   .sense-inline       → Seashell wordmark for dark backgrounds
   .sense-inline--dark → Mangrove wordmark for light backgrounds
   .sense-inline--lg   → larger size for h2/h3 headings
   ───────────────────────────────────────────────────────── */
.sense-inline,
.sense-inline--dark {
  display: inline-block;
  height: 0.85em;
  width: auto;
  vertical-align: baseline;
  transform: translateY(0.1em);
  margin: 0 0.08em;
}
.sense-inline--lg { height: 0.78em; transform: translateY(0.08em); }
.sense-inline--xl { height: 0.72em; transform: translateY(0.06em); }

/* =============================================================
   PER-SECTION GRADIENT-AWARE OVERRIDES
   The Trips section sits in the sand→cyan transition zone (24-39%
   of the gradient). Light cream text washes out — force dark text.
   ============================================================= */
#trips .section-head h2 { color: var(--mangrove); }
#trips .section-head h2 em { color: var(--mangrove); }
#trips .section-head .eyebrow { color: var(--mangrove); text-shadow: none; }
#trips .section-head .sub {
  color: var(--larimar-deep);
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(255,255,255,0.25);
}
#trips .trips-controls .info {
  color: var(--ink-soft);
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}
#trips .trips-controls .ctrl {
  border-color: rgba(0,45,98,0.4);
  color: var(--dominican-navy);
}
#trips .trips-controls .ctrl:hover {
  background: var(--dominican-navy);
  color: var(--seashell);
  border-color: var(--dominican-navy);
}

/* Title-style toggle still applies — override its color rules for trips */
body.title-rule #trips .section-head .eyebrow { color: var(--mangrove); text-shadow: 0 1px 2px rgba(255,255,255,0.4); }
body.title-rule #trips .section-head .eyebrow::before,
body.title-rule #trips .section-head .eyebrow::after,
body.title-rule #trips .section-head .eyebrow-rule::before,
body.title-rule #trips .section-head .eyebrow-rule::after { background: var(--mangrove); }
body.title-bold #trips .section-head .eyebrow {
  color: var(--dominican-navy);
  text-shadow:
    0 1px 2px rgba(255,255,255,0.6),
    0 2px 8px rgba(255,255,255,0.4);
}
body.title-plate #trips .section-head .eyebrow {
  color: var(--mangrove);
  background: rgba(255,255,255,0.55);
  border-color: rgba(20,140,132,0.55);
  backdrop-filter: blur(8px);
}

/* =============================================================
   EYEBROW / SMALL-TITLE READABILITY OPTIONS
   Toggle via body.title-rule / title-pill / title-bold / title-plate.
   Targets section eyebrows (the small lines above big headings).
   ============================================================= */

/* Common selector for all the small "above-title" eyebrows we want to restyle */
:where(
  .section-head .eyebrow,
  .about-text .section-eyebrow,
  .ambassador-text > .eyebrow,
  .contact-text > .eyebrow,
  .upcoming-detail .chapter
) {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  transition: background 0.2s, color 0.2s, border-color 0.2s, padding 0.2s;
}

/* ── 1 · RULE — hairlines on either side, cream type ───────── */
body.title-rule .section-head .eyebrow,
body.title-rule .about-text .section-eyebrow,
body.title-rule .ambassador-text > .eyebrow,
body.title-rule .contact-text > .eyebrow,
body.title-rule .upcoming-detail .chapter {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--seashell);
  gap: 14px;
  padding: 0;
  background: none; border: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
body.title-rule .section-head .eyebrow::before,
body.title-rule .section-head .eyebrow::after,
body.title-rule .about-text .section-eyebrow::before,
body.title-rule .about-text .section-eyebrow::after,
body.title-rule .ambassador-text > .eyebrow::before,
body.title-rule .ambassador-text > .eyebrow::after,
body.title-rule .contact-text > .eyebrow::before,
body.title-rule .contact-text > .eyebrow::after,
body.title-rule .upcoming-detail .chapter::before,
body.title-rule .upcoming-detail .chapter::after {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--larimar);
  opacity: 0.85;
}
/* The eyebrow inside section-head already has `eyebrow-rule`, suppress its rules to avoid double */
body.title-rule .section-head .eyebrow-rule::before,
body.title-rule .section-head .eyebrow-rule::after { background: var(--larimar); width: 36px; }

/* ── 2 · PILL — larimar capsule with cream text ──────────── */
body.title-pill .section-head .eyebrow,
body.title-pill .about-text .section-eyebrow,
body.title-pill .ambassador-text > .eyebrow,
body.title-pill .contact-text > .eyebrow,
body.title-pill .upcoming-detail .chapter {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dominican-navy);
  background: var(--larimar);
  padding: 8px 18px;
  border-radius: 999px;
  gap: 0;
  box-shadow: 0 6px 20px rgba(68,192,197,0.35);
  border: 1px solid transparent;
  font-style: normal;
  font-family: var(--sans);
}
/* Suppress rule decorations for pill */
body.title-pill .section-head .eyebrow-rule::before,
body.title-pill .section-head .eyebrow-rule::after { display: none; }

/* ── 3 · BOLD — same shape, weight 700 + heavy shadow ───── */
body.title-bold .section-head .eyebrow,
body.title-bold .about-text .section-eyebrow,
body.title-bold .ambassador-text > .eyebrow,
body.title-bold .contact-text > .eyebrow,
body.title-bold .upcoming-detail .chapter {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--seashell);
  gap: 0;
  padding: 0;
  background: none; border: 0;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.7),
    0 2px 12px rgba(0,30,40,0.6),
    0 4px 24px rgba(0,30,40,0.4);
  font-style: normal;
  font-family: var(--sans);
}
body.title-bold .section-head .eyebrow-rule::before,
body.title-bold .section-head .eyebrow-rule::after { display: none; }

/* ── 4 · PLATE — hairline outline box, like a museum label ── */
body.title-plate .section-head .eyebrow,
body.title-plate .about-text .section-eyebrow,
body.title-plate .ambassador-text > .eyebrow,
body.title-plate .contact-text > .eyebrow,
body.title-plate .upcoming-detail .chapter {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--larimar);
  padding: 8px 16px;
  border: 1px solid rgba(68,192,197,0.55);
  background: rgba(5,24,40,0.45);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  gap: 12px;
  border-radius: 0;
  font-style: normal;
  font-family: var(--sans);
}
body.title-plate .section-head .eyebrow::before,
body.title-plate .section-head .eyebrow::after { display: none; }
body.title-plate .section-head .eyebrow-rule::before,
body.title-plate .section-head .eyebrow-rule::after { display: none; }

/* Title-style toggle UI */
.title-toggle {
  position: fixed; bottom: 24px; left: 24px; z-index: 60;
  display: flex; align-items: center; gap: 4px;
  background: rgba(11,39,36,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 6px;
  border: 1px solid rgba(250,230,210,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.title-toggle .lbl {
  padding: 0 10px;
  font-family: var(--serif); font-style: italic; font-size: 13px;
  color: var(--larimar);
}
.title-toggle button {
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,230,210,0.7);
  transition: background 0.2s, color 0.2s;
}
.title-toggle button:hover { color: var(--seashell); }
.title-toggle button.is-active {
  background: var(--larimar);
  color: var(--dominican-navy);
  font-weight: 600;
}

/* Stack the two toggles vertically */
.scheme-toggle { bottom: 80px; }
