:root {
  --ink: #10131a;
  --muted: #5d6675;
  --line: #d9dee7;
  --paper: #ffffff;
  --mist: #f5f7fa;
  --forest: #214f3b;
  --river: #176d89;
  --sun: #c88a2a;
  --clay: #9b4f35;
  --shadow: 0 18px 50px rgba(16, 19, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-nav.is-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(16, 19, 26, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  line-height: 1;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 32px);
  font-size: 0.85rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 0 16px;
}

.hero {
  min-height: 92svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #10131a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(12, 15, 22, 0.78), rgba(12, 15, 22, 0.24) 52%, rgba(12, 15, 22, 0.42)), url("/images/wntt/hero1.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22vh;
  background: linear-gradient(to bottom, transparent, rgba(16, 19, 26, 0.78));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f0c06c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: #f0c06c;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
}

.strip-item {
  background: #fff;
  color: var(--ink);
  padding: 22px;
}

.strip-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.strip-value {
  display: block;
  margin-top: 8px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 850;
}

.section {
  padding: 116px clamp(18px, 4vw, 56px);
}

.section.tight {
  padding-top: 78px;
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.feature-expeditions {
  display: grid;
  gap: 22px;
}

.feature-trip {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 19, 26, 0.08);
}

.feature-trip-reverse {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
}

.feature-trip-reverse .feature-trip-media {
  order: 2;
}

.feature-trip-media {
  min-height: 520px;
  overflow: hidden;
  background: var(--mist);
}

.feature-trip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.feature-trip:first-child .feature-trip-media img {
  object-position: center 46%;
}

.feature-trip:hover .feature-trip-media img {
  transform: scale(1.035);
}

.feature-trip-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.trip-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.trip-topline span,
.trip-kicker {
  color: var(--river);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trip-topline strong {
  border-radius: 8px;
  padding: 8px 10px;
  color: #fff;
  background: var(--forest);
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.feature-trip-content h3 {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.feature-trip-content p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.feature-trip-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature-trip-meta div {
  min-width: 0;
  padding: 14px;
  background: #fff;
}

.feature-trip-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-trip-meta strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(0.88rem, 1.8vw, 1rem);
}

.feature-trip-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--ink);
  font-weight: 850;
  border-bottom: 2px solid var(--sun);
}

.future-route {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.future-route h3 {
  margin: 6px 0 0;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.06;
}

.future-route p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.flight-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  color: #fff;
  background: #151922;
}

.flight-copy {
  display: grid;
  align-content: center;
  min-height: 620px;
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 70px);
}

.flight-copy h2 {
  max-width: 680px;
}

.flight-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(250px, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.flight-stack figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: #0f131a;
}

.flight-stack figure:first-child {
  grid-row: span 2;
}

.flight-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flight-stack figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 19, 26, 0.62), rgba(16, 19, 26, 0.04) 58%);
}

.flight-stack figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  font-size: 0.86rem;
  font-weight: 850;
}

.film-band {
  color: #fff;
  background: #0f1415;
}

.film-band .section-lede {
  color: rgba(255, 255, 255, 0.72);
}

.film-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.film-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(190px, 1fr);
  gap: 12px;
}

.film-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0;
  color: #fff;
  background: #10131a;
  cursor: pointer;
}

.film-card.large {
  grid-row: span 2;
}

.film-card img,
.film-card iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border: 0;
}

.film-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 19, 26, 0.76), rgba(16, 19, 26, 0.08) 60%);
}

.film-card span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #f0c06c;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.film-card.is-playing::after,
.film-card.is-playing span {
  display: none;
}

.story-band {
  background: var(--mist);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.story-photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.proof-item {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 14px;
  align-items: start;
}

.proof-item::before {
  content: "";
  width: 6px;
  height: 100%;
  min-height: 44px;
  background: var(--clay);
  border-radius: 4px;
}

.proof-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.proof-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.media-band {
  color: #fff;
  background: #151922;
}

.media-band .section-lede {
  color: rgba(255, 255, 255, 0.7);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(220px, 28vw);
  gap: 12px;
}

.media-tile {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #0f131a;
}

.media-tile.large {
  grid-row: span 2;
}

.media-tile.tall {
  grid-row: span 2;
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.media-tile:hover img {
  transform: scale(1.04);
}

.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 19, 26, 0.72), rgba(16, 19, 26, 0.02) 58%);
}

.media-tile figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 850;
}

.client-app {
  color: #fff;
  background: var(--ink);
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.client-app .section-lede {
  color: rgba(255, 255, 255, 0.7);
}

.phone-frame {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.phone-screen {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

.phone-hero {
  min-height: 210px;
  display: flex;
  align-items: end;
  padding: 18px;
  color: #fff;
  background-image: linear-gradient(to top, rgba(16, 19, 26, 0.84), transparent), url("/images/wntt/egypt2.jpeg");
  background-size: cover;
  background-position: center;
}

.phone-hero h3 {
  margin: 0;
  font-size: 1.45rem;
}

.phone-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  border-top: 1px solid var(--line);
}

.phone-row span {
  color: var(--muted);
}

.phone-row strong {
  text-align: right;
}

.support-map {
  background: #eef4f2;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(23, 109, 137, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.support-card span,
.journal-card span {
  color: var(--river);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-card h3,
.journal-card h3 {
  margin: 18px 0 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.support-card p,
.journal-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.ricardo-band {
  color: #fff;
  background: #14231e;
}

.ricardo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.ricardo-copy .section-lede {
  color: rgba(255, 255, 255, 0.72);
}

.ricardo-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.ricardo-stats div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.ricardo-stats strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1;
}

.ricardo-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ricardo-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34);
}

.ricardo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voices-band {
  background: #fbf8f1;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.voice-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(155, 79, 53, 0.2);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 19, 26, 0.06);
}

.voice-card p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 850;
  line-height: 1.08;
}

.voice-card span {
  margin-top: 24px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pilot-companion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pilot-companion-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 19, 26, 0.06);
}

.clean-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.55;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
}

.journal-band {
  background: var(--mist);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.journal-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.questions-band {
  color: #fff;
  background: #123746;
}

.questions-band .section-lede {
  color: rgba(255, 255, 255, 0.72);
}

.questions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.question-list {
  display: grid;
  gap: 10px;
}

.question-list details {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.question-list summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 850;
}

.question-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  padding: 54px clamp(18px, 4vw, 56px) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
}

.footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.9rem;
}

.footer-grid.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 0.75fr));
  align-items: start;
  gap: clamp(24px, 5vw, 56px);
}

.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-grid p {
  max-width: 360px;
  margin: 0;
  line-height: 1.62;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(1160px, 100%);
  margin: 34px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.trip-detail-page {
  background: var(--paper);
}

.trip-loading,
.trip-empty {
  min-height: 88svh;
  display: grid;
  place-items: center;
  padding: 120px 18px 70px;
  color: #fff;
  background: var(--ink);
}

.trip-loading-card,
.trip-empty > div {
  width: min(620px, 100%);
  text-align: center;
}

.trip-loading-card span {
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: #f0c06c;
  border-radius: 50%;
  animation: trip-spin 800ms linear infinite;
}

.trip-loading-card p,
.trip-empty p {
  color: rgba(255, 255, 255, 0.7);
}

.trip-empty h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 0.96;
}

@keyframes trip-spin {
  to {
    transform: rotate(360deg);
  }
}

.trip-detail-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.trip-detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.trip-detail-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28vh;
  background: linear-gradient(to bottom, transparent, rgba(16, 19, 26, 0.86));
}

.trip-detail-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.trip-detail-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.trip-detail-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.62;
}

.trip-tagline {
  margin: 22px 0 0;
  color: #fff !important;
  font-size: clamp(1.16rem, 2.3vw, 1.6rem) !important;
  font-weight: 760;
  line-height: 1.35 !important;
}

.trip-booking-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.trip-booking-panel > span {
  display: inline-flex;
  border-radius: 8px;
  padding: 7px 10px;
  color: #fff;
  background: var(--forest);
  font-size: 0.74rem;
  font-weight: 850;
}

.trip-booking-panel > strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.trip-booking-panel > p {
  margin: 8px 0 16px;
  color: var(--muted);
  line-height: 1.45;
}

.trip-booking-panel dl {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
}

.trip-booking-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.trip-booking-panel dt {
  color: var(--muted);
  font-weight: 760;
}

.trip-booking-panel dd {
  margin: 0;
  text-align: right;
  font-weight: 850;
}

.trip-booking-panel .button {
  width: 100%;
}

.trip-detail-section {
  padding: 96px clamp(18px, 4vw, 56px);
}

.trip-detail-muted {
  background: var(--mist);
}

.trip-detail-layout,
.trip-columns {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(26px, 5vw, 70px);
}

.trip-detail-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  align-items: start;
}

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

.trip-detail-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.trip-richtext {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.trip-richtext p {
  margin: 0 0 18px;
}

.trip-richtext ul,
.trip-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trip-richtext li,
.trip-check-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.55;
}

.trip-richtext li::before,
.trip-check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
}

.trip-side-note {
  border-left: 6px solid var(--clay);
  padding: 8px 0 8px 18px;
}

.trip-side-note h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.trip-side-note p,
.trip-gallery-head p,
.trip-muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.trip-overview-band {
  background: #fff;
}

.trip-info-grid {
  display: grid;
  gap: 14px;
}

.trip-info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--mist);
}

.trip-info-card span {
  color: var(--river);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trip-info-card h3 {
  margin: 12px 0 0;
  font-size: 1.24rem;
  line-height: 1.12;
}

.trip-info-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.trip-flow-band {
  background: #fbf8f1;
}

.trip-timeline {
  display: grid;
  gap: 12px;
}

.trip-timeline-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.trip-timeline-item > span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trip-timeline-item h3,
.trip-level-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.16;
}

.trip-timeline-item p,
.trip-level-card p,
.trip-detail-row p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.trip-level-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trip-level-card {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.trip-detail-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trip-detail-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(150px, 0.6fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: #fff;
}

.trip-detail-row span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trip-detail-row strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.departure-list {
  display: grid;
  gap: 10px;
}

.departure-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) repeat(3, minmax(110px, 0.7fr)) minmax(108px, auto);
  gap: 14px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.departure-row span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
}

.departure-row strong {
  display: block;
  margin-top: 4px;
  font-size: 0.98rem;
}

.departure-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.departure-action .button {
  min-height: 42px;
  padding: 0 16px;
}

.reservation-shell {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow: auto;
  padding: 28px 18px;
  background: rgba(16, 19, 26, 0.72);
  backdrop-filter: blur(10px);
}

.reservation-shell.is-open {
  display: flex;
}

.reservation-modal {
  position: relative;
  width: min(880px, 100%);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.reservation-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  background: rgba(16, 19, 26, 0.35);
  font-weight: 850;
  cursor: pointer;
}

.reservation-head {
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background-image: linear-gradient(90deg, rgba(16, 19, 26, 0.9), rgba(16, 19, 26, 0.46)), url("/images/wntt/hero1.jpeg");
  background-size: cover;
  background-position: center;
}

.reservation-head h2,
.reservation-success h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.reservation-head p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

.reservation-form,
.reservation-success {
  padding: clamp(22px, 4vw, 38px);
}

.reservation-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.reservation-summary div {
  min-width: 0;
  padding: 14px;
  background: var(--mist);
}

.reservation-summary span,
.reservation-fields label span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.reservation-summary strong {
  display: block;
  margin-top: 5px;
}

.reservation-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.reservation-fields label {
  display: grid;
  gap: 7px;
}

.reservation-fields input,
.reservation-fields select,
.reservation-fields textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.reservation-fields textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.reservation-wide {
  grid-column: 1 / -1;
}

.reservation-error {
  min-height: 22px;
  margin: 14px 0 0;
  color: #b42318;
  font-weight: 760;
}

.reservation-form > .button,
.reservation-success .button {
  margin-top: 10px;
}

.reservation-small,
.reservation-success p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.reservation-success {
  text-align: center;
}

.reservation-success h2,
.reservation-success p {
  margin-left: auto;
  margin-right: auto;
}

.trip-check-list {
  margin-top: 24px;
}

.trip-gallery-band {
  color: #fff;
  background: var(--ink);
}

.trip-photo-story {
  color: #fff;
  background: #10131a;
}

.trip-photo-story .trip-gallery-head p {
  color: rgba(255, 255, 255, 0.74);
}

.trip-photo-story-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(210px, 19vw);
  gap: 12px;
}

.trip-photo-story-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #05070a;
}

.trip-photo-story-grid figure.wide {
  grid-column: span 2;
}

.trip-photo-story-grid figure.tall {
  grid-row: span 2;
}

.trip-photo-story-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-film-band {
  color: #fff;
  background: #0f1415;
}

.trip-film-band .trip-richtext {
  color: rgba(255, 255, 255, 0.72);
}

.trip-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #05070a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  cursor: pointer;
}

.trip-video-frame img,
.trip-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
}

.trip-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 19, 26, 0.78), rgba(16, 19, 26, 0.08) 62%);
}

.trip-video-frame span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #f0c06c;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.trip-video-frame.is-playing::after,
.trip-video-frame.is-playing span {
  display: none;
}

.trip-gallery-head {
  width: min(1160px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
}

.trip-gallery-head p {
  color: rgba(255, 255, 255, 0.72);
}

.trip-gallery-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
  line-height: 0.98;
}

.trip-gallery-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
}

.trip-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

.trip-gallery-grid img:first-child {
  grid-row: span 2;
}

.trip-faq {
  display: grid;
  gap: 10px;
}

.trip-faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trip-faq-item summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 850;
}

.trip-faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .nav-links a:not(.nav-action) {
    display: none;
  }

  .hero-strip,
  .section-head,
  .story-layout,
  .app-grid,
  .feature-trip,
  .feature-trip-reverse,
  .future-route,
  .flight-band,
  .support-grid,
  .film-layout,
  .ricardo-layout,
  .voice-grid,
  .pilot-companion-grid,
  .journal-grid,
  .questions-layout,
  .footer-grid.footer-inner,
  .trip-detail-inner,
  .trip-detail-layout,
  .trip-columns,
  .trip-gallery-head,
  .trip-level-grid,
  .trip-detail-row {
    grid-template-columns: 1fr;
  }

  .feature-trip-reverse .feature-trip-media {
    order: 0;
  }

  .feature-trip-media {
    min-height: 360px;
    aspect-ratio: 16 / 10;
  }

  .feature-trip-meta {
    grid-template-columns: 1fr 1fr;
  }

  .future-route {
    align-items: start;
  }

  .flight-copy {
    min-height: auto;
  }

  .flight-stack {
    grid-template-columns: 1fr 1fr;
  }

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

  .film-card.large {
    grid-row: auto;
  }

  .ricardo-stats {
    grid-template-columns: 1fr 1fr;
  }

  .trip-detail-inner {
    padding-bottom: 46px;
  }

  .departure-row {
    grid-template-columns: 1fr 1fr;
  }

  .departure-action {
    justify-content: flex-start;
  }

  .reservation-summary {
    grid-template-columns: 1fr 1fr;
  }

  .trip-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trip-photo-story-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
  }

  .trip-photo-story-grid figure.wide,
  .trip-photo-story-grid figure.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .media-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(220px, 40vw);
  }

  .media-tile.large,
  .media-tile.tall {
    grid-row: auto;
  }

  .trip-gallery-grid img:first-child {
    grid-row: auto;
  }

  .trip-gallery-grid img {
    height: 320px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    padding: 14px 16px;
  }

  .brand span {
    display: none;
  }

  .nav-action {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding-bottom: 42px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .strip-item {
    padding: 18px;
  }

  .section {
    padding: 82px 16px;
  }

  .section.tight {
    padding-top: 64px;
  }

  .feature-trip-media {
    min-height: 280px;
  }

  .feature-trip-content {
    padding: 22px;
  }

  .trip-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .feature-trip-meta {
    grid-template-columns: 1fr;
  }

  .future-route {
    padding: 18px;
  }

  .flight-stack {
    grid-template-columns: 1fr;
  }

  .flight-stack figure:first-child {
    grid-row: auto;
  }

  .flight-stack figure {
    min-height: 260px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-card,
  .voice-card,
  .journal-card {
    min-height: auto;
  }

  .ricardo-stats {
    grid-template-columns: 1fr;
  }

  .trip-detail-hero {
    min-height: auto;
  }

  .trip-detail-inner {
    width: calc(100% - 32px);
    padding: 130px 0 36px;
  }

  .trip-booking-panel {
    padding: 16px;
  }

  .trip-booking-panel dl div,
  .phone-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .departure-row,
  .reservation-summary,
  .reservation-fields,
  .trip-timeline-item {
    grid-template-columns: 1fr;
  }

  .reservation-shell {
    padding: 14px;
  }

  .reservation-close {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
  }

  .trip-booking-panel dd,
  .phone-row strong {
    text-align: left;
  }

  .trip-detail-section {
    padding: 76px 16px;
  }

  .departure-row,
  .trip-gallery-grid,
  .trip-photo-story-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .trip-photo-story-grid {
    grid-auto-rows: 260px;
  }

  .media-grid {
    grid-auto-rows: 270px;
  }

  .trip-gallery-grid img {
    height: 260px;
    min-height: 220px;
  }
}
