/* ==========================================
   TRIP PAGES — shared by all trip detail pages
   ========================================== */

/* HERO — trip page variant (with stats) */
.wave-pattern { height: 180px; }

.hero-content { padding: 80px 40px 120px; }

.route-label  { margin-bottom: 32px; }

.hero-title   { font-size: clamp(52px, 8vw, 96px); }

.hero-title em {
  font-style: normal;
  color: var(--foam);
}

.hero-sub {
  font-size: clamp(18px, 2.5vw, 26px);
  margin-bottom: 48px;
}

.hero-captain {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(184,216,204,0.5);
  margin-top: -24px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  opacity: 0;
}

.fonts-loaded .route-label  { animation: fadeUp 0.8s ease forwards 0.1s; }
.fonts-loaded .hero-title   { animation: fadeUp 0.8s ease forwards 0.2s; }
.fonts-loaded .hero-sub     { animation: fadeUp 0.8s ease forwards 0.4s; }
.fonts-loaded .hero-stats   { animation: fadeUp 0.8s ease forwards 0.6s; }

.stat { text-align: center; }

.stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
}

.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--foam-dark);
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  background: rgba(184,216,204,0.3);
  align-self: stretch;
}

/* ==========================================
   BACK NAV
   ========================================== */

.back-nav {
  position: absolute;
  top: 24px;
  left: 32px;
  z-index: 10;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(184,216,204,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.back-link:hover { color: var(--foam-dark); }
.back-link svg   { transition: transform 0.2s; }
.back-link:hover svg { transform: translateX(-3px); }

/* ==========================================
   SECTION LABELS & TITLES
   ========================================== */

.section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--ocean);
  margin-bottom: 48px;
}

/* ==========================================
   MAP SECTION
   ========================================== */

.map-section {
  background: var(--foam);
  padding: 80px 40px;
  text-align: center;
}

.map-container {
  max-width: 900px;
  margin: 0 auto 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--foam-dark);
}

.leaflet-map-container {
  width: 100%;
  height: 520px;
  border-radius: 16px;
}

.map-legend {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px 0 0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.legend-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--ocean-mid);
}

.legend-line.dashed {
  background: none;
  border-top: 2px dashed var(--ocean-light);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
}

.legend-dot.start { background: var(--coral); }
.legend-dot.day   { background: var(--ocean-light); }
.legend-dot.stop  { background: var(--ocean); }

/* ==========================================
   DAYS SECTION
   ========================================== */

.days-section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.days-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 64px;
}

.days-header .section-label { margin-bottom: 0; }
.days-header .section-title { margin-bottom: 0; }

.days-grid { display: grid; gap: 2px; }

.day-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-top: 1px solid var(--sand-dark);
  padding: 32px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.day-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.day-row:last-child { border-bottom: 1px solid var(--sand-dark); }

.day-num-col { padding-top: 4px; }

.day-date {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--ocean);
  line-height: 1;
}

.day-weekday {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.day-content-col {
  padding-left: 40px;
  border-left: 1px solid var(--sand-dark);
}

.day-route {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: var(--ocean);
  margin-bottom: 12px;
  line-height: 1.2;
}

.day-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.tag-miles   { background: #dce8f0; color: #0e3d57; }
.tag-dive    { background: #d4ede5; color: #0a4a36; }
.tag-beach   { background: #f0e8d8; color: #5a3a18; }
.tag-nature  { background: #dceadc; color: #2a4a28; }
.tag-city    { background: #e4dff0; color: #3a2a5a; }
.tag-buffer  { background: #f0ede8; color: #4a4038; }
.tag-special { background: var(--ocean); color: var(--foam); }

.day-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(10,42,58,0.7);
  max-width: 620px;
  margin-bottom: 20px;
}

/* Day row photo layout */
.day1-flex {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.day-text-col {
  flex: 1;
  min-width: 0;
}

.day1-photo-col {
  flex-shrink: 0;
  width: 220px;
}

.day-photo-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.day1-stack-desktop {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.day1-carousel-mobile { display: none; }

.day-photo-img {
  width: 100%;
  border-radius: 8px;
  cursor: zoom-in;
  display: block;
}

/* Day mini map */
.day-mini-map {
  width: 100%;
  height: 340px;
  border-radius: 12px;
  margin: 14px 0;
  border: 0.5px solid var(--sand-dark);
  overflow: hidden;
}

/* Anchor info */
.anchor-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
}

.anchor-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border: 1px solid var(--sand-dark);
  border-radius: 20px;
  padding: 6px 14px;
  white-space: nowrap;
}

.anchor-icon {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  flex-shrink: 0;
}

.anchor-info a {
  color: var(--ocean-light);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
}

/* ==========================================
   TIPS SECTION
   ========================================== */

.tips-section {
  background: var(--ocean);
  padding: 100px 40px;
}

.tips-inner { max-width: 900px; margin: 0 auto; }

.tips-section .section-label { color: rgba(184,216,204,0.5); }
.tips-section .section-title { color: var(--sand); margin-bottom: 56px; }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.tip-card {
  border-top: 1px solid rgba(184,216,204,0.25);
  padding-top: 24px;
}

.tip-icon  { font-size: 24px; margin-bottom: 16px; display: block; }

.tip-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--sand);
  margin-bottom: 10px;
}

.tip-text { font-size: 14px; line-height: 1.7; color: rgba(184,216,204,0.7); }

/* ==========================================
   COUNTRY SECTION
   ========================================== */

.country-section { background: var(--foam); padding: 80px 40px; }
.country-inner   { max-width: 900px; margin: 0 auto; }

.country-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 40px 0 32px;
  border-top: 1px solid var(--foam-dark);
}

.country-fact {
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid var(--foam-dark);
}

.country-fact-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.country-fact-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--ocean);
  line-height: 1.2;
}

.visa-map-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

.visa-block {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 28px;
  border-left: 3px solid var(--ocean-light);
  margin-top: 8px;
}

.visa-block-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 10px;
}

.visa-block p { font-size: 14px; line-height: 1.7; color: rgba(10,42,58,0.75); margin-bottom: 8px; }
.visa-block p:last-child { margin-bottom: 0; }

.visa-map-img { flex-shrink: 0; }

.map-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.visa-map-img img,
.map-img {
  width: 280px;
  max-width: 100%;
  border-radius: 10px;
  cursor: zoom-in;
  display: block;
}

/* ==========================================
   CREW SECTION
   ========================================== */

.crew-section { padding: 80px 40px; }
.crew-inner   { max-width: 900px; margin: 0 auto; }

.crew-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  table-layout: fixed;
}

.crew-table th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  padding: 0 16px 12px 0;
  border-bottom: 1px solid var(--sand-dark);
}

.crew-table td {
  font-size: 15px;
  color: var(--ocean);
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--sand-dark);
  vertical-align: top;
  line-height: 1.5;
}

.crew-table td[rowspan] {
  vertical-align: middle;
  text-align: left;
  padding-left: 20px;
}

.crew-table td.name { font-family: var(--serif); font-size: 20px; font-weight: 300; }
.crew-table td.role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding-top: 20px;
}

.crew-flight       { display: block; margin-bottom: 10px; }
.crew-flight:last-child { margin-bottom: 0; }

.flight-route {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ocean);
  display: block;
  white-space: nowrap;
}

.flight-time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
}

.crew-placeholder {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-style: italic;
}

/* Mobile crew */
.crew-mobile { margin-top: 32px; }

.crew-mobile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
  border-bottom: 1px solid var(--sand-dark);
  padding: 16px 0;
  align-items: start;
}

.crew-mc-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  color: var(--ocean);
  line-height: 1.2;
}

.crew-mc-role {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.crew-mc-dir {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 10px 0 3px;
}

.crew-mc-dir:first-child { margin-top: 0; }
.crew-mc-person          { margin-bottom: 10px; }
.crew-mc-person:last-child { margin-bottom: 0; }

/* ==========================================
   CATAMARAN SECTION
   ========================================== */

.cat-section { background: var(--foam); padding: 80px 40px; }
.cat-inner   { max-width: 900px; margin: 0 auto; }

.cat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}

.cat-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--foam-dark);
}

.cat-spec         { padding: 16px 16px 16px 0; border-bottom: 1px solid var(--foam-dark); }
.cat-spec-label   { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.cat-spec-value   { font-family: var(--serif); font-size: 20px; font-weight: 300; color: var(--ocean); }

.cat-photos       { display: grid; grid-template-columns: 1fr; gap: 16px; }

.cat-gallery-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 8px 0 6px;
}

.cat-carousel {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--foam-dark);
  transform: translateZ(0);
}

.cat-carousel-track { display: flex; transition: transform 0.4s ease; }

.cat-carousel-track img {
  min-width: 100%;
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  cursor: pointer;
}

.cat-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,42,58,0.55);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
  line-height: 1;
}

.cat-carousel-btn:hover { background: rgba(10,42,58,0.85); }
.cat-carousel-btn.prev  { left: 10px; }
.cat-carousel-btn.next  { right: 10px; }

.cat-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.cat-carousel-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s;
}

.cat-carousel-dots span.active { background: #fff; }

.cat-plan-img {
  width: 100%;
  border-radius: 12px;
  margin-top: 16px;
  display: block;
}

.cat-plan-slot {
  background: var(--foam-dark);
  border-radius: 8px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 16px;
  grid-column: 1 / -1;
}

/* Stack more tile (Turkey) */
.stack-more-tile {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stack-more-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,42,58,0.6);
}

.stack-more-tile span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 0.05em;
}

/* ==========================================
   CHECKLIST SECTION
   ========================================== */

.checklist-section { background: var(--ocean); padding: 80px 40px; }

.checklist-section .section-label { color: rgba(184,216,204,0.55); text-align: left; }
.checklist-section .section-title { color: var(--sand); text-align: left; }

.checklist-inner { max-width: 900px; margin: 0 auto; }

.checklist-table-wrap { margin-top: 40px; overflow-x: auto; }

.checklist-table { width: 100%; border-collapse: collapse; }

.checklist-table th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--foam-dark);
  padding: 0 0 20px;
  text-align: center;
  font-weight: 400;
}

.checklist-table th.checklist-task-col { width: 44%; text-align: left; }

/* Seychelles checklist has more columns — narrower task col */
.page-seychelles .checklist-table th.checklist-task-col { width: 36%; }

.checklist-table td {
  border-top: 1px solid rgba(184,216,204,0.15);
  padding: 18px 0;
  text-align: center;
}

.checklist-label {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--sand);
  text-align: left !important;
}

.checklist-box {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--foam-dark);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checklist-box.checked { background: var(--foam); border-color: var(--foam); }

.checklist-box.checked::after {
  content: '';
  display: block;
  width: 7px;
  height: 12px;
  border: 2px solid var(--ocean);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.checklist-box.na {
  border-color: transparent;
  color: rgba(184,216,204,0.3);
  font-family: var(--mono);
  font-size: 14px;
}

/* ==========================================
   LIGHTBOX
   ========================================== */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,18,26,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  user-select: none;
  transition: opacity 0.18s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover { color: #fff; }

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.lightbox-btn:hover { background: rgba(255,255,255,0.25); }
.lightbox-btn.prev  { left: 20px; }
.lightbox-btn.next  { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}

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

@media (max-width: 640px) {
  /* Hero */
  .hero-content { padding: 60px 20px 100px; }
  .hero-title   { font-size: clamp(34px, 9vw, 52px); }
  .hero-sub     { font-size: clamp(16px, 4.5vw, 22px); margin-bottom: 36px; }
  .hero-stats   { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .stat         { min-width: 56px; }
  .stat-num     { font-size: 26px; }

  /* Back nav */
  .back-nav { top: 16px; left: 20px; }

  /* Sections */
  .days-section    { padding: 60px 20px; }
  .tips-section    { padding: 60px 20px; }
  .map-section     { padding: 60px 20px; }
  .checklist-section { padding: 60px 20px; }
  .country-section, .crew-section, .cat-section { padding: 60px 20px; }

  /* Days header */
  .days-header {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 40px;
  }

  .section-title { font-size: clamp(26px, 7vw, 40px); }

  /* Day rows */
  .day-row {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .day-num-col {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    padding-bottom: 10px;
  }

  .day-date      { font-size: 28px; }
  .day-weekday   { font-size: 10px; margin-top: 0; }
  .day-content-col { padding-left: 0; border-left: none; }

  .day-route {
    font-size: 17px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .day-desc { font-size: 14px; }

  /* Day photo layout */
  .day1-flex          { flex-direction: column !important; }
  .day1-photo-col     { width: 100% !important; }
  .day1-stack-desktop { display: none !important; }
  .day1-carousel-mobile { display: block !important; }

  /* Visa */
  .visa-map-grid { grid-template-columns: 1fr !important; }
  .visa-map-img img { width: 100% !important; }

  /* Anchor */
  .anchor-info { white-space: normal; max-width: 100%; }

  /* Catamaran */
  .cat-layout { grid-template-columns: 1fr; gap: 32px; }
  .cat-plan-slot { grid-column: 1; }

  /* Crew */
  .crew-table { display: none; }
  .flight-route, .flight-time { white-space: normal; }
}

@media (min-width: 641px) {
  .crew-mobile { display: none; }
}

/* ==========================================
   INLINE LINK STYLES — replaced from HTML
   ========================================== */

/* Links inside section and tip headings */
.section-title a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--foam-dark);
  text-underline-offset: 4px;
}

.tip-title a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(240,235,224,0.4);
  text-underline-offset: 3px;
}

/* Links in day body text */
.day-desc a {
  color: var(--ocean-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

ul.day-desc {
  margin: 0 0 12px;
  padding-left: 20px;
  line-height: 1.7;
}

/* Navily / external service quick links */
.navily-link {
  color: var(--ocean-light);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
}

/* Bold emphasis link inside day description */
.day-link-em {
  color: inherit !important;
  font-weight: 700;
  text-decoration-color: var(--foam-dark);
}

/* Crew: vacant slot */
.crew-vacant {
  color: var(--text-muted);
  font-style: italic;
}

/* Visa section: first block, no top margin */
.visa-block-first { margin-top: 0; }

/* Day route heading links (seychelles: sand-dark underline) */
.day-route a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--sand-dark);
  text-underline-offset: 3px;
}

/* Tag links */
.tag a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--sand-dark);
  text-underline-offset: 3px;
}

/* Tip text links */
.tip-text a {
  color: var(--foam-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Eco note paragraph — muted italic */
.day-desc-note {
  font-style: italic;
  opacity: 0.7;
}

/* Plain text links (for visa/country sections) */
.text-link { color: var(--ocean-light); }

/* Lightbox image transition */
#lb-img { transition: opacity 0.18s ease; }

/* Single-column crew mobile row (Turkey) */
.crew-mobile-row-single { grid-template-columns: 1fr; }

/* No-margin crew person (last slot) */
.crew-mc-person-last { margin-bottom: 0; }

/* Hide Ukraine flag in Leaflet attribution */
.leaflet-attribution-flag {
  display: none !important;
}
