:root {
  color-scheme: light;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --ink: #12213a;
  --muted: #536078;
  --line: #cfd7e4;
  --brand: #174b8a;
  --brand-dark: #103765;
  --focus: #f2b705;
  --content: 70rem;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
  min-width: 20rem;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 0.2rem solid var(--focus);
  outline-offset: 0.25rem;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  padding: 0.75rem 1rem;
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.site-footer,
main {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.site-header {
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 0.0625rem solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  color: var(--brand-dark);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

.brand small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.header-action,
.primary-action,
.phone-action {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.35rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.header-action {
  padding: 0.7rem 1rem;
  border: 0.125rem solid var(--brand);
  color: var(--brand);
}

.booking-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  min-height: 34rem;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.intro-copy {
  max-width: 42rem;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  color: var(--brand-dark);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: var(--ink);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.45;
}

.primary-action {
  min-width: min(100%, 18rem);
  padding: 1rem 1.4rem;
  background: var(--brand);
  color: #ffffff;
}

.primary-action:hover,
.primary-action:active {
  background: var(--brand-dark);
}

.destination-note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
}

.route-summary {
  padding-left: clamp(1.5rem, 4vw, 3rem);
  border-left: 0.25rem solid var(--brand);
}

.route-summary p {
  margin-bottom: 0;
}

.help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--surface);
  border: 0.0625rem solid var(--line);
}

.help p {
  margin-bottom: 0;
}

.phone-action {
  flex: 0 0 auto;
  padding: 0.9rem 1.2rem;
  color: var(--brand-dark);
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.25rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2rem 3rem;
  border-top: 0.0625rem solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer strong {
  color: var(--ink);
}

address {
  margin-top: 0.4rem;
  font-style: normal;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 1.5rem;
}

.site-footer a {
  color: var(--brand-dark);
}

.legal-page main {
  max-width: 48rem;
  padding-block: clamp(3rem, 7vw, 5rem);
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(2.25rem, 6vw, 4rem);
}

.legal-page h2 {
  margin-top: 2.25rem;
}

.legal-page li,
.legal-page p {
  line-height: 1.65;
}

.legal-page .effective-date {
  color: var(--muted);
}

@media (max-width: 44rem) {
  .site-header {
    min-height: 4.75rem;
  }

  .header-action {
    min-height: 2.75rem;
    padding-inline: 0.8rem;
    font-size: 0.9rem;
  }

  .booking-intro {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 4rem;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.25rem);
  }

  .route-summary {
    padding: 1.5rem 0 0;
    border-top: 0.25rem solid var(--brand);
    border-left: 0;
  }

  .help,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-action {
    width: 100%;
    justify-content: flex-start;
    padding-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

