body {
  --cream: #ffffff;
  --cream-deep: #f7f7f5;
  --paper: #ffffff;
  --ink: #1b2541;
  --navy: #1b2541;
  --sub: #505660;
  --muted: #727780;
  --line: #e1e3e6;
  --rust: #c4663a;
  --rust-dark: #a94e2a;
  --blue: #c4663a;
  --shadow: none;
  --serif: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: var(--navy);
}

:focus-visible {
  outline-color: var(--rust);
}

.topbar .menu-link:hover,
.topbar .menu-link:focus-visible,
.topbar .mobile-plain-links a:hover,
.topbar .mobile-plain-links a:focus-visible {
  background: var(--cream-deep);
}

.call-menu,
.mobile-call-menu {
  position: relative;
}

.call-menu > summary,
.mobile-call-menu > summary {
  cursor: pointer;
  list-style: none;
}

.call-menu > summary::-webkit-details-marker,
.mobile-call-menu > summary::-webkit-details-marker {
  display: none;
}

.call-menu > summary {
  gap: 9px;
}

.call-menu > summary::after {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 150ms ease;
}

.call-menu[open] > summary::after {
  transform: translateY(2px) rotate(225deg);
}

.call-navmenu {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  z-index: 1100;
  width: min(410px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(27, 37, 65, 0.12);
}

.call-navmenu::before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 22px;
  content: "";
}

.call-navmenu .menu-label {
  margin: 0 8px 8px;
}

.call-menu-link {
  display: block;
  min-height: 58px;
  border-radius: 10px;
  padding: 10px 11px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.call-menu-link small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.4;
}

.call-menu-link:hover,
.call-menu-link:focus-visible {
  background: var(--cream-deep);
  color: var(--rust-dark);
}

.call-menu-overview {
  display: flex;
  min-height: 48px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
  padding: 14px 10px 0;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.call-menu-overview:hover,
.call-menu-overview:focus-visible {
  color: var(--rust-dark);
}

.mobile-call-menu {
  margin-top: 16px;
}

.mobile-call-options {
  display: grid;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  gap: 2px;
  background: var(--cream-deep);
}

.mobile-call-options a {
  display: flex;
  min-height: 44px;
  border-radius: 9px;
  padding: 10px;
  align-items: center;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.mobile-call-options a:hover,
.mobile-call-options a:focus-visible {
  background: #fff;
  color: var(--rust-dark);
}

.eyebrow {
  display: block;
  color: var(--rust);
  letter-spacing: 0.18em;
}

.eyebrow::before {
  display: none;
}

.choice-section {
  scroll-margin-top: 76px;
  min-height: 0;
  border-bottom: 1px solid var(--line);
  padding: 76px 0 68px;
  background: #fff;
}

.choice-intro {
  display: block;
  max-width: 900px;
  margin: 0 0 44px;
}

.choice-intro h1 {
  max-width: 880px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(46px, 5.1vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.choice-intro > p {
  margin: 22px 0 0;
  color: var(--sub);
  font-size: 18px;
  line-height: 1.65;
}

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

.choice-card {
  position: relative;
  display: flex;
  min-height: 240px;
  width: 100%;
  cursor: pointer;
  border: 1px solid var(--line);
  border-top: 3px solid var(--rust);
  border-radius: 14px;
  padding: 28px;
  flex-direction: column;
  align-items: flex-start;
  background: var(--cream-deep);
  color: var(--navy);
  text-align: left;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.choice-card:hover {
  border-color: var(--rust);
  background: #fff;
  transform: translateY(-2px);
}

.choice-card[aria-pressed="true"] {
  border-color: var(--rust);
  background: #fff;
  box-shadow: 0 0 0 2px var(--rust);
}

.choice-card[aria-pressed="true"]::after {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  content: "✓";
  font-size: 15px;
  font-weight: 800;
  place-items: center;
}

.choice-title {
  max-width: 15ch;
  margin: 4px 46px 12px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.choice-topics {
  max-width: 30ch;
  margin: 0 0 24px;
  color: var(--sub);
  font-size: 15px;
  line-height: 1.55;
}

.choice-action {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  color: var(--rust-dark);
  font-size: 13px;
  font-weight: 800;
}

.different-situation {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.different-situation a,
.change-choice,
.calendar-fallback,
.noscript-note a {
  text-underline-offset: 4px;
}

.different-situation a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.booking-section {
  scroll-margin-top: 76px;
  border-bottom: 1px solid var(--line);
  padding: 82px 0 94px;
  background: var(--cream-deep);
}

.booking-summary {
  max-width: 820px;
  margin-bottom: 24px;
}

.tailored-copy {
  padding: 0;
}

.tailored-copy h2,
.calendar-heading h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.tailored-copy h2 {
  max-width: 720px;
  margin-bottom: 18px;
}

.tailored-copy > p {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--sub);
  font-size: 17px;
  line-height: 1.7;
}

.tailored-copy .call-details {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.call-coverage {
  max-width: 820px;
  margin: 28px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.call-coverage h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.booking-topics {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 34px;
  list-style: none;
}

.booking-topics li {
  position: relative;
  padding-left: 18px;
  color: var(--sub);
  font-size: 15px;
  line-height: 1.55;
}

.booking-topics li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
  content: "";
  transform: translateY(-50%);
}

.change-choice {
  min-height: 44px;
  cursor: pointer;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--rust-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
}

.booking-section .boundary-note {
  margin: 0 0 62px;
  border-left-color: var(--rust);
  border-radius: 0;
  background: #fff;
}

.calendar-heading {
  display: flex;
  margin-bottom: 24px;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.calendar-heading h2 {
  margin-bottom: 0;
}

.calendar-fallback {
  display: inline-flex;
  min-height: 44px;
  flex: none;
  align-items: center;
  gap: 7px;
  color: var(--rust-dark);
  font-size: 14px;
  font-weight: 800;
}

.calendar-frame {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.calendar-frame iframe {
  display: block;
  width: 100%;
  height: 800px;
  border: 0;
  background: #fff;
}

.noscript-note {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  color: var(--sub);
  text-align: center;
}

.noscript-section {
  padding: 48px 0;
  background: var(--cream-deep);
}

.footer-head,
.footer-links a:hover {
  color: var(--rust);
}

.legal {
  font-size: 13px;
  line-height: 1.7;
}

[hidden] {
  display: none !important;
}

@media (max-width: 920px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 170px;
  }

  .choice-title {
    max-width: none;
    margin-bottom: 10px;
  }

  .topbar .mobile-panel .navcta {
    border: 1px solid var(--rust);
    border-radius: 999px;
    padding: 12px 18px;
    background: var(--rust);
    color: #fff;
  }
}

@media (max-width: 720px) {
  .choice-section {
    min-height: 0;
    padding: 54px 0 64px;
  }

  .choice-intro {
    margin-bottom: 30px;
  }

  .choice-intro h1 {
    font-size: 41px;
  }

  .choice-intro > p {
    margin-top: 16px;
    font-size: 16px;
  }

  .choice-grid {
    gap: 12px;
  }

  .choice-card {
    min-height: 0;
    border-radius: 12px;
    padding: 22px 20px;
  }

  .choice-title {
    margin: 0 46px 10px 0;
    font-size: 20px;
  }

  .choice-topics {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .different-situation {
    margin-top: 18px;
  }

  .booking-section {
    padding: 64px 0 74px;
  }

  .booking-section .boundary-note {
    margin-bottom: 48px;
  }

  .booking-topics {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .calendar-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .calendar-frame {
    width: calc(100% + 8px);
    margin-left: -4px;
    border-radius: 12px;
  }

  .calendar-frame iframe {
    height: 760px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .choice-card {
    transition: none;
  }
}
