:root {
  --ink: #082847;
  --muted: #586d7a;
  --paper: #edf3f5;
  --surface: #ffffff;
  --line: #cad7dc;
  --navy: #032446;
  --coastal: #387496;
  --gold: #b5965e;
  --gold-deep: #79591f;
  --teal: var(--coastal);
  --teal-deep: var(--navy);
  --citrus: var(--gold);
  --coral: var(--gold-deep);
  --shadow: 0 18px 50px rgba(3, 36, 70, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

.coming-soon-page {
  min-height: 100vh;
  background: var(--navy);
}

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

.coming-soon {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 42px 20px;
  text-align: center;
}

.coming-soon-image,
.coming-soon-scrim {
  position: absolute;
  inset: 0;
}

.coming-soon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon-scrim {
  background:
    linear-gradient(0deg, rgba(3, 36, 70, 0.76), rgba(3, 36, 70, 0.34)),
    linear-gradient(90deg, rgba(3, 36, 70, 0.9), rgba(56, 116, 150, 0.3));
}

.coming-soon-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  color: #fff;
}

.coming-soon-content h1 {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 6.8rem);
  line-height: 0.96;
}

.logo-badge {
  display: block;
  width: min(340px, 72vw);
  height: auto;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(3, 36, 70, 0.28);
}

.coming-soon-logo {
  width: min(380px, 80vw);
  margin: 0 auto 26px;
}

.coming-soon .eyebrow,
.hero .eyebrow {
  color: #e4d4b6;
}

.test-link {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  letter-spacing: 0;
}

.coming-soon-policy-links {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(92vw, 460px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.coming-soon-policy-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 36, 70, 0.88), rgba(3, 36, 70, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  color: var(--ink);
  background: var(--citrus);
  font-size: 0.78rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.nav-links {
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.88;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 76px) 84px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(3, 36, 70, 0.92) 0%, rgba(3, 36, 70, 0.64) 44%, rgba(56, 116, 150, 0.16) 78%),
    linear-gradient(0deg, rgba(181, 150, 94, 0.14), rgba(3, 36, 70, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  color: #fff;
  text-align: center;
}

.hero-logo {
  width: min(360px, 66vw);
  margin: 0 auto 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.6rem, 9vw, 7.8rem);
  line-height: 0.92;
}

.hero-copy {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--navy);
  background: var(--citrus);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #c7aa75;
}

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

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.proof-band div {
  min-height: 112px;
  padding: 26px clamp(20px, 4vw, 56px);
  background: #f5f1e9;
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  margin-bottom: 6px;
  color: var(--teal-deep);
  font-size: 1.3rem;
}

.proof-band span {
  color: var(--muted);
}

.airport-service {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  min-height: 590px;
  scroll-margin-top: 72px;
  background: #dfecef;
}

.airport-service-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.airport-service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 36, 70, 0.08), rgba(3, 36, 70, 0.28));
}

.airport-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.airport-service-copy {
  align-self: center;
  padding: clamp(56px, 8vw, 104px) clamp(28px, 7vw, 92px);
}

.airport-service-copy h2 {
  max-width: 760px;
}

.airport-service-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.airport-service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0 24px;
  border-top: 1px solid rgba(8, 40, 71, 0.2);
  border-bottom: 1px solid rgba(8, 40, 71, 0.2);
  background: rgba(8, 40, 71, 0.16);
}

.airport-service-points p {
  min-width: 0;
  margin: 0;
  padding: 22px;
  background: #eef5f6;
}

.airport-service-points strong,
.airport-service-points span {
  display: block;
}

.airport-service-points strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.05rem;
}

.airport-service-points span {
  color: var(--muted);
  font-size: 0.95rem;
}

.airport-service-copy .airport-boundary-note {
  color: var(--gold-deep);
  font-weight: 800;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button.text-button {
  border-color: rgba(3, 36, 70, 0.36);
  color: var(--navy);
  background: transparent;
}

.button.text-button:hover,
.button.text-button:focus-visible {
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.5);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 6vw, 76px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.section-copy,
.section-heading {
  max-width: 720px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.steps,
.feature-grid {
  display: grid;
  gap: 16px;
}

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

.step-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.step-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 4px;
  padding: 20px;
}

.step-number {
  color: var(--coral);
  font-size: 0.95rem;
  font-weight: 900;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.step-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
}

.step-card p {
  grid-column: 2;
  font-size: 0.98rem;
  line-height: 1.45;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.feature-card {
  padding: 24px;
}

.feature-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 5px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--teal);
}

.feature-card:nth-child(2)::before {
  background: var(--citrus);
}

.feature-card:nth-child(3)::before {
  background: var(--navy);
}

.feature-card:nth-child(4)::before {
  background: var(--teal);
}

.pricing-section {
  background: var(--surface);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

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

.pricing-item {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  background: var(--paper);
}

.pricing-item:nth-child(2) {
  border-top-color: var(--gold);
}

.pricing-item p {
  margin: 0;
}

.pricing-amount {
  color: var(--ink) !important;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pricing-amount strong {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
}

.pricing-label {
  color: var(--teal-deep);
  font-size: 0.95rem;
  font-weight: 800;
}

.pricing-coverage {
  display: block;
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.pricing-formula {
  margin: 32px 0 0 !important;
  color: var(--ink) !important;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(42px, 7vw, 96px);
  scroll-margin-top: 72px;
  background: var(--surface);
}

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

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

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--gold-deep);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 48px 24px 0;
  color: var(--muted);
}

.business-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, auto);
  align-items: center;
  gap: 28px 56px;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 8vw, 110px);
  color: #fff;
  background: var(--navy);
}

.business-details h2 {
  margin: 0;
  max-width: 680px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.business-details p {
  margin: 10px 0 0;
}

.business-details .eyebrow {
  margin: 0 0 12px;
  color: #f3d59a;
}

.business-details address {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.business-details address p {
  margin: 0;
}

.business-details a {
  color: #fff;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.business-details a:hover,
.business-details a:focus-visible {
  color: #f3d59a;
}

.breadcrumbs {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 6px;
  color: #8a9aa4;
}

.breadcrumbs a {
  color: var(--teal-deep);
  text-underline-offset: 3px;
}

.booking-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f9fbfc 0%, var(--paper) 62%, #f3eee5 100%);
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  padding: 22px clamp(20px, 6vw, 76px);
  border-bottom: 0;
  background: var(--navy);
  text-align: center;
}

.booking-brand {
  color: #fff;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  width: 180px;
  height: auto;
  border: 0;
  border-radius: 8px;
  background: #fff;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.24));
}

.back-link {
  color: #fff;
  font-weight: 900;
}

.booking-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 8vw, 86px) clamp(20px, 6vw, 76px);
}

.booking-intro {
  max-width: 520px;
}

.booking-intro h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.booking-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.booking-form {
  align-self: start;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.booking-form label,
.booking-form span {
  display: block;
}

.booking-form span {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.booking-form input::placeholder {
  color: #758793;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: 3px solid rgba(56, 116, 150, 0.22);
  border-color: var(--teal);
}

.price-disclosure {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.choice-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.choice-boxes legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 900;
}

.choice-boxes label {
  display: flex;
  min-width: 110px;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.booking-form .choice-boxes input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--teal);
}

.terms-check {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.terms-check input {
  flex: 0 0 auto;
  width: 20px;
  min-height: 20px;
  margin: 0;
  accent-color: var(--teal);
}

.terms-check span {
  display: inline;
}

.terms-check a {
  color: var(--teal);
  font-weight: 900;
}

.terms-main {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0;
}

.terms-content {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(3, 36, 70, 0.1);
}

.terms-content h1,
.terms-content h2 {
  color: var(--ink);
  line-height: 1.15;
}

.terms-content h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.terms-content h2 {
  margin: 32px 0 10px;
  font-size: 1.3rem;
}

.terms-content h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.terms-content p,
.terms-content li {
  color: var(--muted);
  line-height: 1.7;
}

.terms-content a {
  color: var(--teal);
  font-weight: 900;
}

.terms-content ul {
  margin: 10px 0 18px;
  padding-left: 24px;
}

.choice-boxes span {
  margin: 0;
}

.flight-detail-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-room-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-room-row.no-airport {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.additional-bag-fields {
  display: grid;
  gap: 14px;
}

.additional-bag-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f1e9;
}

.time-wheel-label {
  min-width: 0;
}

.time-wheel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(82px, 0.9fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f1e9;
}

.booking-form .time-wheel select,
.return-pickup-form .time-wheel select {
  min-height: 56px;
  border-color: transparent;
  padding: 10px 8px;
  text-align: center;
  font-weight: 900;
  background: #fff;
}

.full-width {
  grid-column: 1 / -1;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.booking-submit {
  width: 100%;
  margin-top: 22px;
}

.booking-submit:disabled,
.return-pickup-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 1.5em;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.form-status.error {
  color: #9f2f1b;
}

.return-pickup-dialog {
  width: min(560px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.return-pickup-dialog::backdrop {
  background: rgba(3, 36, 70, 0.62);
}

.return-pickup-dialog.dialog-fallback-open {
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  display: block;
  max-height: calc(100vh - 32px);
  margin: 0;
  overflow: auto;
  transform: translate(-50%, -50%);
}

.return-dialog-fallback-open::before {
  content: "";
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(3, 36, 70, 0.62);
}

.return-pickup-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 5vw, 34px);
}

.return-pickup-form h2 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.08;
}

.return-pickup-form p {
  margin: 0;
  color: var(--muted);
}

#returnPickupPrompt p {
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.return-pickup-form label,
.return-pickup-form span {
  display: block;
}

.return-pickup-form span {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.return-pickup-form input,
.return-pickup-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.return-pickup-fields {
  display: grid;
  gap: 14px;
}

.return-choice-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.thank-you-main {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: clamp(44px, 8vw, 86px) clamp(20px, 6vw, 76px);
}

.thank-you-panel {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-panel h1 {
  margin: 0;
  font-size: 2.75rem;
  line-height: 0.96;
  white-space: nowrap;
}

.thank-you-panel p:last-child {
  color: var(--muted);
  font-size: 1.16rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px 36px;
  padding: 30px clamp(20px, 6vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.site-footer span {
  font-weight: 900;
  color: var(--ink);
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.footer-logo-link img {
  width: 160px;
  height: auto;
  border: 0;
  border-radius: 8px;
  background: #fff;
  filter: drop-shadow(0 6px 12px rgba(3, 36, 70, 0.14));
}

.policy-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 12px;
  justify-self: end;
  max-width: 820px;
}

.policy-footer nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(56, 116, 150, 0.24);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--teal-deep);
  background: rgba(237, 243, 245, 0.64);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.15;
}

.policy-footer nav a:hover,
.policy-footer nav a:focus-visible {
  border-color: rgba(56, 116, 150, 0.5);
  background: #f5f1e9;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(3, 36, 70, 0.92), rgba(3, 36, 70, 0.48)),
      linear-gradient(0deg, rgba(181, 150, 94, 0.16), rgba(56, 116, 150, 0.1));
  }

  .proof-band,
  .airport-service,
  .faq-section,
  .split,
  .feature-grid,
  .pricing-layout,
  .pricing-grid,
  .business-details,
  .booking-main {
    grid-template-columns: 1fr;
  }

  .airport-service {
    min-height: 0;
  }

  .airport-service-media {
    min-height: 360px;
  }

  .airport-service-copy {
    padding: 58px clamp(20px, 7vw, 56px);
  }

  .feature-grid {
    margin-top: 24px;
  }

  .thank-you-panel h1 {
    font-size: 2rem;
  }
}

@media (max-height: 800px) and (min-width: 561px) {
  .coming-soon {
    padding: 24px 20px 100px;
  }

  .coming-soon-logo {
    width: min(280px, 54vw);
    margin-bottom: 16px;
  }

  .coming-soon-content h1 {
    font-size: clamp(2.7rem, 5.5vw, 4.5rem);
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    font-size: 0.92rem;
  }

  .coming-soon {
    place-items: start center;
    padding-top: 58px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    justify-items: center;
    background: var(--navy);
    padding-top: 70px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    display: flex;
    align-items: center;
    text-align: center;
  }

  .footer-logo-link {
    justify-self: center;
  }

  .footer-logo-link img {
    width: 170px;
  }

  .policy-footer nav {
    width: 100%;
    justify-content: center;
    justify-self: center;
  }

  .policy-footer nav a {
    width: min(100%, 320px);
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .airport-service-media {
    min-height: 260px;
  }

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

  .booking-header {
    align-items: center;
    flex-direction: column;
    border-bottom: 0;
    background: var(--navy);
    text-align: center;
  }

  .booking-header .back-link {
    color: #fff;
  }

  .booking-header .logo-link img {
    width: 164px;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
  }

  .thank-you-panel {
    padding: 24px 18px;
  }

  .thank-you-panel h1 {
    font-size: 1.45rem;
  }

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

  .flight-detail-row,
  .location-room-row,
  .location-room-row.no-airport {
    grid-template-columns: 1fr;
  }

  .additional-bag-card {
    grid-template-columns: 1fr;
  }

  .return-pickup-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    overflow: auto;
  }

  .return-pickup-form {
    gap: 18px;
    padding: 20px;
  }

  #returnPickupPrompt p {
    font-size: 1.12rem;
  }

  .return-pickup-fields {
    gap: 18px;
  }

  .return-pickup-form label {
    min-width: 0;
  }

  .return-pickup-form input,
  .return-pickup-form select {
    min-height: 52px;
  }

  .return-pickup-form .time-wheel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(76px, 0.9fr);
  }

  .step-card {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
