/* ═══════════════════════════════════════════════════════════════
   THE TRAVEL SQUAD — HOMEPAGE STYLESHEET
   Navy #0F1A24  |  Teal #11A68D  |  Sand #D4C5B0  |  White #FFFFFF
   Fonts: Barlow Condensed (headings) · Inter (body)
═══════════════════════════════════════════════════════════════ */

/* ── RESET & PROPERTIES ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:      #0F1A24;
  --navy-mid:  #162130;
  --teal:      #11A68D;
  --teal-dark: #0d8a75;
  --sand:      #D4C5B0;
  --white:     #FFFFFF;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h:     90px;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

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

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-teal            { background: var(--teal);  color: var(--white); border-color: var(--teal); }
.btn-teal:hover      { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-outline-white   { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark    { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover  { background: var(--navy); color: var(--white); }
.btn-outline-light   { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ── SECTION TYPOGRAPHY ──────────────────────────────────────── */
.section-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}
.section-heading--light { color: var(--white); }
.section-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(15,26,36,0.65);
  margin-top: 10px;
}
.section-sub--light { color: var(--sand); }
.section-header { margin-bottom: 48px; }


/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy);
  transition: box-shadow 0.25s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.45); }

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  /* no max-height, max-width, or overflow constraints */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-book-btn {
  flex-shrink: 0;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.nav-book-btn:hover { background: var(--teal-dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
@keyframes fadeOutDelayed {
  0%   { opacity: 1; }
  70%  { opacity: 1; }
  100% { opacity: 0; }
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  transform: translateY(-10%);
}
.hero-logo {
  width: 750px;
  max-width: 85vw;
  height: auto;
  display: block;
  animation: fadeOutDelayed 9s ease forwards;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  background: #11A68D;
  color: #fff;
  border: 2px solid #11A68D;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.btn-outline {
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}


/* ══════════════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--sand);
  padding: 20px 24px;
  text-align: center;
}
.stats-bar p {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(15px, 2.2vw, 20px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}


/* ══════════════════════════════════════════════════════════════
   STORY SECTION
══════════════════════════════════════════════════════════════ */
.story-section {
  background: var(--navy);
}

.story-container {
  padding-top: 110px;
  padding-bottom: 110px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: center;
}



.story-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.story-body p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
}
.story-body p + p {
  margin-top: 16px;
}

.story-embed-col {
  display: flex;
  justify-content: center;
}

.vimeo-wrap {
  width: 100%;
  max-width: 290px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}


/* ══════════════════════════════════════════════════════════════
   LEGENDARY PAST TRIPS
══════════════════════════════════════════════════════════════ */
.past-trips-section {
  background: var(--sand);
  padding: 100px 0 80px;
}
.past-trips-section .section-heading { color: var(--navy); }
.past-trips-section .section-sub     { color: var(--navy); }

/* ── Desktop: 4-column grid (769px+) ── */
@media (min-width: 769px) {
  .past-trips-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
  }
}

.past-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  cursor: default;
}

/* ── Card media area ── */
.card-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
}
/* Landscape cards */
.card-media--landscape { aspect-ratio: 16 / 9; }
/* Portrait card (Sail Squad) — 9:16, fills portrait video perfectly */
.card-media--portrait  { aspect-ratio: 9 / 16; }

.card-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s;
  z-index: 2;
}
.card-video-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 1;
  background: #000;
}
.hover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Card info box ── */
.card-info {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
}
.card-tagline {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(15,26,36,0.62);
}

.past-trips-cta {
  margin-top: 40px;
  text-align: center;
}
.carousel-dots { display: none; }


/* ══════════════════════════════════════════════════════════════
   PHOTO GALLERY
══════════════════════════════════════════════════════════════ */
.gallery-section {
  background: #0F1A24;
  padding: 80px 0 72px;
}
.gallery-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}
.gallery-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 52px);
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.gallery-sub {
  font-size: 16px;
  color: #D4C5B0;
  line-height: 1.6;
}

/* Outer clip container */
.gallery-outer {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
}
.gallery-outer:active { cursor: grabbing; }

/* The scrolling strip — width = 24 images × (300 + 8)px */
.gallery-strip {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: gallery-scroll 40s linear infinite;
}
.gallery-strip:hover { animation-play-state: paused; }

@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * (300px + 8px) * 12)); }
}

.gallery-img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
  pointer-events: none;
}


/* ══════════════════════════════════════════════════════════════
   LIVE BOOKABLE TRIPS  (navy background)
══════════════════════════════════════════════════════════════ */
.live-trips-section {
  background: var(--navy);
  padding: 100px 0;
}

/* 2 × 2 card grid */
.live-trips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.trip-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.trip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.trip-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.trip-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  z-index: 2;
}
.trip-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s;
}
.trip-card:hover .trip-card-image img { transform: scale(1.04); }

/* Vietnam motorbike road — pull focus to center-lower portion */
.trip-card-image--vietnam img { object-position: center 60%; }

.trip-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.trip-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}
.trip-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--sand);
  flex: 1;
}
.trip-buttons {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

/* Deposit note — sits below the grid */
.deposit-note {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sand);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.deposit-note strong { color: var(--white); font-weight: 800; }


/* ══════════════════════════════════════════════════════════════
   NOTIFICATION HUB
══════════════════════════════════════════════════════════════ */
.notify-section {
  background: #0F1A24;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 96px 0;
}
.notify-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* Eyebrow */
.notify-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(14px, 2vw, 17px);
  letter-spacing: 0.1em;
  color: #11A68D;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}
.countdown-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(48px, 9vw, 86px);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.countdown-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #D4C5B0;
  margin-top: 6px;
  text-transform: uppercase;
}
.countdown-sep {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 72px);
  color: rgba(255,255,255,0.3);
  line-height: 1;
  padding-top: 4px;
  user-select: none;
}

/* Subtext */
.notify-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Main toggle button */
.btn-notify-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #11A68D;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 16px 32px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-notify-toggle:hover  { background: #0d8f79; }
.btn-notify-toggle:active { transform: scale(0.98); }

/* Panel */
.notify-panel {
  display: none;
  background: #162433;
  border-radius: 8px;
  margin-top: 16px;
  padding: 28px 32px;
  text-align: left;
}
.notify-panel.open { display: block; }

.notify-panel-headline {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  margin-bottom: 24px;
  text-align: center;
}

/* Each option row */
.notify-option {
  padding: 18px 0;
}
.notify-option-label {
  color: #fff;
  font-size: 15px;
  margin-bottom: 8px;
}
.notify-option-body {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.notify-option-action {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.notify-input {
  flex: 1;
  min-width: 180px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  background: #fff;
  border: 2px solid transparent;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}
.notify-input:focus { border-color: #11A68D; }
.notify-input::placeholder { color: rgba(15,26,36,0.45); }
.btn-add {
  padding: 10px 20px;
  background: #11A68D;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-add:hover { background: #0d8f79; }
.btn-add--link { align-self: flex-start; }

.notify-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
}

/* Footnote */
.notify-footnote {
  margin-top: 28px;
  font-size: 13px;
  color: #D4C5B0;
  line-height: 1.6;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .notify-section { padding: 64px 0; }
  .countdown-unit { min-width: 56px; }
  .notify-panel   { padding: 20px 18px; }
  .notify-option-action { flex-direction: column; align-items: stretch; }
  .btn-add--link  { text-align: center; }
}
@media (max-width: 480px) {
  .countdown { gap: 2px; }
  .countdown-unit { min-width: 44px; }
  .countdown-sep  { font-size: 32px; }
}


/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: #0F1A24;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 96px 0;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.testimonials-sub {
  font-size: 17px;
  color: #D4C5B0;
  line-height: 1.6;
}

/* Video grid — landscape left, portrait right on desktop */
.testimonials-videos {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Each video wrapper */
.testimonial-video { flex: 1; }
.testimonial-video--portrait { flex: 0 0 auto; width: 320px; }

/* Ratio containers */
.video-ratio {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.video-ratio--landscape { aspect-ratio: 16 / 9; }

.video-ratio--portrait {
  padding-top: 177.78%; /* 9:16 aspect ratio */
  height: 0;
}

.video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-ratio--portrait iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile — stack portrait above landscape */
@media (max-width: 768px) {
  .testimonials-section { padding: 64px 0; }
  .testimonials-videos {
    flex-direction: column;
    gap: 24px;
  }
  .testimonial-video,
  .testimonial-video--portrait {
    width: 100%;
    flex: none;
  }
  /* Portrait first on mobile: already in DOM order */
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: #0F1A24;
  padding: 60px 40px 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-logo {
  width: 120px;
  height: auto;
}
.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4C5B0;
  margin: 0 0 4px 0;
}
.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #11A68D;
}
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .story-body p  { max-width: 100%; }
  .story-embed-col { justify-content: flex-start; }

  /* footer-top no longer used */
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s;
    padding: 0 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open     { max-height: 300px; }
  .nav-links li       { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a        { display: block; padding: 15px 0; font-size: 16px; }
  .nav-toggle         { display: flex; }
  .nav-book-btn       { display: none; }

  /* Hero */
  .hero {
    height: 75vw;
    min-height: unset;
    align-items: center;
  }
  .hero-video {
    height: 75vw;
    object-fit: cover;
  }
  .hero-content img {
    display: none !important;
  }
  .stats-bar {
    display: none !important;
  }
  .hero-buttons {
    display: none;
  }

  /* Past trips — carousel on mobile */
  #carouselViewport {
    overflow: hidden;
    width: 100%;
  }
  #pastTripsTrack {
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    transition: transform 0.3s ease;
  }
  #pastTripsTrack .past-card {
    width: 100%;
    flex: 0 0 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    padding: 0;
    cursor: pointer;
    transition: background 0.3s;
  }
  .carousel-dot.active {
    background: var(--navy);
  }

  /* Live trips: single column */
  .live-trips-grid { grid-template-columns: 1fr; }

  /* Trip buttons: stack */
  .trip-buttons { flex-direction: column; }
  .trip-buttons .btn { width: 100%; justify-content: center; }

  /* Story */
  .story-container  { padding-top: 72px; padding-bottom: 72px; }
  .story-embed-col  { justify-content: center; }
  .vimeo-wrap       { max-width: 260px; }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
  .footer {
    padding: 40px 24px 24px;
  }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL  (≤ 480px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-heading { letter-spacing: 0.05em; }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — SHORT SCREENS (max-height)
══════════════════════════════════════════════════════════════ */
@media (max-height: 700px) {
  .hero-logo {
    width: 500px;
    max-width: 75vw;
  }
  .hero-content {
    gap: 1rem;
  }
  .btn-primary, .btn-outline {
    padding: 10px 24px;
    font-size: 1rem;
  }
}

@media (max-height: 550px) {
  .hero-logo {
    width: 380px;
    max-width: 65vw;
  }
  .hero-content {
    gap: 0.75rem;
  }
}

