.navette-page {
  background: var(--bg);
}

.navette-hero {
  min-height: min(820px, 100dvh);
  padding: clamp(136px, 14vw, 178px) 0 clamp(54px, 7vw, 84px);
  background: var(--bg-deep);
}

.navette-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
}

.navette-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.navette-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.navette-hero h1 {
  max-width: 12ch;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
}

.navette-hero-copy > p {
  max-width: 44ch;
  margin: 26px 0 32px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.68;
}

.navette-hero-actions,
.navette-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.navette-hero-media {
  position: relative;
  min-height: min(57vh, 560px);
  overflow: hidden;
  border: 1px solid var(--teal-a18);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 88px -28px rgba(0, 0, 0, .8);
}

.navette-hero-media img,
.navette-timing-media img,
.navette-events-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.navette-hero-media img {
  object-position: center;
}

.navette-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 22, 28, .12), transparent 48%),
    linear-gradient(0deg, rgba(20, 22, 28, .32), transparent 38%);
  pointer-events: none;
}

.navette-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.navette-section-head h2,
.navette-timing-copy h2,
.navette-events-copy h2,
.navette-areas h2,
.navette-faq h2,
.navette-cta h2 {
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.navette-section-head p,
.navette-timing-copy > p,
.navette-events-copy > p,
.navette-areas-grid > div > p,
.navette-faq-grid > div > p,
.navette-cta p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.navette-airports {
  background: var(--bg-alt);
}

.navette-airport-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.navette-airport-card {
  min-height: 246px;
  padding: clamp(25px, 3.2vw, 38px);
  background: var(--bg-card);
  transition: background .25s ease, transform .25s ease;
}

.navette-airport-card--featured {
  grid-row: span 2;
  min-height: 494px;
  background: linear-gradient(145deg, var(--bg-card), var(--teal-a6));
}

.navette-airport-card:hover {
  background: var(--teal-a7);
}

.navette-card-label {
  display: block;
  margin-bottom: 20px;
  color: var(--teal-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.navette-airport-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1.04;
}

.navette-airport-card p {
  max-width: 42ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.navette-card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  transition: gap .2s ease, color .2s ease;
}

.navette-card-link:hover {
  gap: 13px;
  color: var(--teal-bright);
}

.navette-timing {
  background: var(--bg-card);
}

.navette-timing-grid,
.navette-events-grid {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 8vw, 116px);
  align-items: center;
}

.navette-timing-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.navette-timing-media img {
  object-position: center;
}

.navette-timing-copy {
  max-width: 660px;
}

.navette-timing-copy > p,
.navette-events-copy > p {
  margin-top: 20px;
}

.navette-detail-list,
.navette-event-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.navette-detail-list div,
.navette-event-list article {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.navette-detail-list strong,
.navette-detail-list span,
.navette-event-list h3,
.navette-event-list p {
  display: block;
}

.navette-detail-list strong,
.navette-event-list h3 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
}

.navette-detail-list span,
.navette-event-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.navette-events {
  background: var(--bg-deep);
}

.navette-events-copy {
  order: 1;
}

.navette-events-media {
  order: 2;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--teal-a18);
}

.navette-events-media img {
  object-position: center;
}

.navette-areas {
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}

.navette-areas-grid,
.navette-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 8vw, 112px);
  align-items: start;
}

.navette-areas-grid > div > p,
.navette-faq-grid > div > p {
  max-width: 44ch;
  margin-top: 20px;
}

.navette-city-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.navette-city-links a,
.navette-city-links span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  transition: color .2s ease, background .2s ease;
}

.navette-city-links a:nth-child(odd),
.navette-city-links span:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.navette-city-links a:hover {
  background: var(--teal-a7);
  color: var(--teal);
}

.navette-city-links a::after {
  content: "↗";
  margin-left: auto;
  color: var(--teal-deep);
  font-size: 13px;
}

.navette-faq {
  background: var(--bg);
}

.navette-faq-list {
  border-top: 1px solid var(--line);
}

.navette-faq-list details {
  border-bottom: 1px solid var(--line);
}

.navette-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.navette-faq-list summary::-webkit-details-marker {
  display: none;
}

.navette-faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 22px;
  font-weight: 300;
  transition: transform .2s ease;
}

.navette-faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.navette-faq-list details p {
  max-width: 62ch;
  padding: 0 42px 20px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.navette-cta {
  background: radial-gradient(circle at 88% 18%, var(--teal-a12), transparent 43%), var(--bg-alt);
  text-align: center;
}

.navette-cta .wrap {
  max-width: 860px;
}

.navette-cta h2 {
  max-width: 13ch;
  margin: 0 auto;
}

.navette-cta p {
  max-width: 54ch;
  margin: 20px auto 30px;
}

.navette-cta-actions {
  justify-content: center;
}

.navette-page .navette-footer-link {
  color: var(--teal) !important;
}

@media (max-width: 900px) {
  .navette-hero-grid,
  .navette-section-head,
  .navette-timing-grid,
  .navette-events-grid,
  .navette-areas-grid,
  .navette-faq-grid {
    grid-template-columns: 1fr;
  }

  .navette-hero {
    min-height: auto;
  }

  .navette-hero-media {
    min-height: 420px;
  }

  .navette-section-head {
    align-items: start;
  }

  .navette-timing-copy,
  .navette-events-copy {
    max-width: none;
  }

  .navette-events-copy {
    order: 2;
  }

  .navette-events-media {
    order: 1;
  }
}

@media (max-width: 640px) {
  .navette-hero {
    padding-top: 128px;
  }

  .navette-hero h1 {
    max-width: 11ch;
  }

  .navette-hero-media,
  .navette-timing-media,
  .navette-events-media {
    min-height: 300px;
  }

  .navette-airport-grid {
    grid-template-columns: 1fr;
  }

  .navette-airport-card--featured {
    grid-row: auto;
    min-height: 0;
  }

  .navette-detail-list,
  .navette-event-list,
  .navette-city-links {
    grid-template-columns: 1fr;
  }

  .navette-city-links a:nth-child(odd),
  .navette-city-links span:nth-child(odd) {
    border-right: 0;
  }

  .navette-city-links a:last-child,
  .navette-city-links span:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navette-airport-card,
  .navette-card-link,
  .navette-city-links a,
  .navette-faq-list summary::after {
    transition: none;
  }
}
