:root {
  --ink: #211918;
  --paper: #f4eee3;
  --paper-light: #fffaf0;
  --paper-deep: #ded1c0;
  --coral: #e96955;
  --yellow: #efb83f;
  --plum: #55203f;
  --sage: #6f7953;
  --line: rgba(33, 25, 24, 0.22);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

#choices,
#planner,
#details {
  scroll-margin-top: 88px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1440px);
  height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark,
.footer-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 46% 54% / 58% 48% 52% 42%;
  background: var(--coral);
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1;
  transform: rotate(-7deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.brand small {
  margin-top: 5px;
  color: rgba(33, 25, 24, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 650;
}

.site-header nav a:not(.nav-cta) {
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease;
}

.site-header nav a:not(.nav-cta):hover {
  border-color: currentColor;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background-color 160ms ease, color 160ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--paper-light);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 132px);
  width: min(100% - 48px, 1440px);
  min-height: 690px;
  margin: 0 auto;
  padding: 64px 2vw 82px;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(0.1px);
}

.hero::before {
  top: 11%;
  right: 25%;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(85, 32, 63, 0.16);
}

.hero::after {
  bottom: 12%;
  left: 42%;
  width: 18px;
  height: 18px;
  background: var(--yellow);
  box-shadow: 32px 18px 0 -4px var(--coral), -16px 40px 0 -6px var(--sage);
}

.kicker,
.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker {
  color: var(--plum);
}

.kicker span {
  margin-right: 8px;
  color: var(--coral);
  font-size: 8px;
  vertical-align: 1px;
}

.hero h1 {
  max-width: 860px;
  margin: 26px 0 30px;
  font-family: var(--serif);
  font-size: clamp(64px, 7.5vw, 118px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.hero h1 em,
.send-copy h2 em {
  color: var(--coral);
  font-weight: 400;
}

.hero-intro {
  max-width: 590px;
  margin: 0;
  color: rgba(33, 25, 24, 0.72);
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-dark {
  background: var(--ink);
  color: var(--paper-light);
}

.button-dark:hover {
  box-shadow: 0 8px 0 rgba(233, 105, 85, 0.42);
}

.button-coral {
  width: 100%;
  background: var(--coral);
  color: #fff;
}

.button-coral:hover {
  box-shadow: 0 6px 0 rgba(33, 25, 24, 0.18);
}

.research-stamp {
  color: rgba(33, 25, 24, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-ticket {
  position: relative;
  width: 100%;
  max-width: 465px;
  justify-self: end;
  padding: 25px 28px 28px;
  overflow: hidden;
  border: 1px solid rgba(33, 25, 24, 0.65);
  border-radius: 24px 24px 56px 24px;
  background:
    radial-gradient(circle at 80% 12%, rgba(239, 184, 63, 0.24), transparent 25%),
    var(--plum);
  color: var(--paper-light);
  box-shadow: 16px 18px 0 #c9b8a7;
  transform: rotate(1.5deg);
}

.hero-ticket::before {
  position: absolute;
  top: -82px;
  right: -82px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 250, 240, 0.15);
  border-radius: 50%;
  content: "";
}

.ticket-topline,
.ticket-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticket-topline {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.28);
}

.ticket-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 28px;
}

.ticket-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.ticket-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 5vw, 78px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-align: right;
}

.mini-itinerary {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-itinerary > li:not(.walk-line) {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 250, 240, 0.18);
}

.mini-itinerary time {
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 20px;
}

.mini-itinerary strong,
.mini-itinerary small {
  display: block;
}

.mini-itinerary strong {
  font-size: 15px;
}

.mini-itinerary small {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.62);
  font-size: 11px;
}

.walk-line {
  position: relative;
  height: 28px;
  margin-left: 35px;
  border-left: 1px dashed rgba(255, 250, 240, 0.4);
}

.walk-line span {
  position: absolute;
  top: 7px;
  left: 22px;
  color: rgba(255, 250, 240, 0.54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticket-footer {
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 250, 240, 0.28);
}

.ticket-footer span:nth-child(2) {
  color: var(--coral);
  font-size: 20px;
}

.routes-section {
  padding: 105px max(24px, calc((100vw - 1392px) / 2)) 120px;
  border-radius: 34px 34px 0 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(85, 32, 63, 0.58), transparent 25%),
    var(--ink);
  color: var(--paper-light);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 250, 240, 0.61);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
}

.routes-section .kicker {
  color: var(--yellow);
}

.filter-row {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  padding: 10px 16px;
  border: 1px solid rgba(255, 250, 240, 0.25);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 250, 240, 0.67);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--paper-light);
  background: var(--paper-light);
  color: var(--ink);
}

.planner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.68fr);
  align-items: start;
  gap: 28px;
}

.route-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.route-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 210px;
  padding: 24px 24px 24px 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  background: #f5efe4;
  color: var(--ink);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.route-card:hover {
  transform: translateY(-2px);
}

.route-card.selected {
  border-color: var(--coral);
  box-shadow: inset 5px 0 0 var(--coral);
}

.route-number {
  align-self: stretch;
  display: grid;
  place-items: start center;
  padding-top: 3px;
  border-right: 1px solid var(--line);
  color: rgba(33, 25, 24, 0.45);
  font-family: var(--serif);
  font-size: 18px;
}

.route-card-main {
  min-width: 0;
}

.route-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.eyebrow {
  color: var(--coral);
}

.route-card h3 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.neighborhood {
  flex: none;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(33, 25, 24, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-stops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.route-stop {
  display: grid;
  grid-template-columns: 22px 56px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.stop-index {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--paper-light);
  font-size: 9px;
  font-weight: 800;
}

.route-stop time {
  padding-top: 3px;
  font-size: 11px;
  font-weight: 800;
}

.route-stop strong,
.route-stop span {
  display: block;
}

.route-stop strong {
  font-size: 13px;
  line-height: 1.2;
}

.route-stop span {
  margin-top: 4px;
  color: rgba(33, 25, 24, 0.56);
  font-size: 11px;
  line-height: 1.35;
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
  color: rgba(33, 25, 24, 0.57);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pick-button {
  align-self: end;
  min-width: 124px;
  padding: 11px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: background-color 160ms ease, color 160ms ease;
}

.pick-button:hover,
.pick-button.picked {
  background: var(--ink);
  color: var(--paper-light);
}

.plan-panel {
  position: sticky;
  top: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 22px 22px 56px 22px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 10px 10px 0 rgba(255, 250, 240, 0.12);
}

.plan-panel .eyebrow {
  color: rgba(33, 25, 24, 0.58);
}

.plan-panel-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 10px 0 25px;
}

.plan-panel-title > span {
  display: grid;
  flex: none;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(33, 25, 24, 0.35);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 15px;
}

.plan-panel-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 46px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.date-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(33, 25, 24, 0.28);
  border-bottom: 1px solid rgba(33, 25, 24, 0.28);
}

.date-field span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.date-field input {
  width: 100%;
  min-height: 36px;
  padding: 6px 8px;
  border: 0;
  border-radius: 7px;
  outline: 0;
  background: rgba(255, 250, 240, 0.62);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.date-field input:focus {
  box-shadow: 0 0 0 2px var(--ink);
}

.selected-itinerary {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.selected-itinerary li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 15px 0;
}

.selected-itinerary li + li {
  border-top: 1px dashed rgba(33, 25, 24, 0.3);
}

.selected-index {
  color: rgba(33, 25, 24, 0.43);
  font-family: var(--serif);
  font-size: 13px;
}

.selected-itinerary time,
.selected-itinerary strong,
.selected-itinerary a {
  display: block;
}

.selected-itinerary time {
  margin-bottom: 4px;
  color: rgba(33, 25, 24, 0.54);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selected-itinerary strong {
  font-size: 15px;
}

.selected-itinerary a {
  width: fit-content;
  margin-top: 5px;
  border-bottom: 1px solid rgba(33, 25, 24, 0.5);
  font-size: 10px;
  font-weight: 750;
}

.date-advice {
  display: flex;
  gap: 9px;
  margin: 0;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.58);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.date-advice > span:first-child {
  color: var(--coral);
}

.plan-note {
  margin: 16px 0 21px;
  color: rgba(33, 25, 24, 0.69);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.45;
}

.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
}

.send-status {
  max-width: 280px;
  margin: -3px 0 1px;
  color: rgba(33, 25, 24, 0.62);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.text-link {
  border-bottom: 1px solid rgba(33, 25, 24, 0.55);
  font-size: 11px;
  font-weight: 800;
}

.day-choice-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.06);
}

.choice-step-heading {
  display: flex;
  align-items: center;
  gap: 17px;
}

.choice-step-heading > span {
  display: grid;
  flex: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 240, 0.36);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 15px;
}

.choice-step-heading h3 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.choice-step-heading.compact {
  min-height: 74px;
  padding: 0 3px;
}

.choice-step-heading.compact h3 {
  font-size: 29px;
}

.day-options {
  display: flex;
  gap: 10px;
}

.day-button {
  min-width: 160px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 13px;
  background: transparent;
  color: var(--paper-light);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.day-button:hover {
  transform: translateY(-2px);
  border-color: var(--paper-light);
}

.day-button.selected {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.day-button strong,
.day-button small {
  display: block;
}

.day-button strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.day-button small {
  margin-top: 4px;
  color: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  opacity: 0.64;
  text-transform: uppercase;
}

.choice-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(310px, 0.72fr);
  align-items: start;
  gap: 24px;
}

.choice-column {
  min-width: 0;
}

.choice-card-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.choice-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 172px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 17px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(233, 105, 85, 0.72);
}

.choice-card.selected {
  border-color: var(--coral);
  box-shadow: inset 5px 0 0 var(--coral);
}

.choice-check {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(33, 25, 24, 0.2);
  border-radius: 50%;
  color: transparent;
  font-size: 12px;
  font-weight: 900;
}

.choice-card.selected .choice-check {
  border-color: var(--plum);
  background: var(--plum);
  color: var(--paper-light);
}

.choice-badge {
  display: block;
  width: fit-content;
  max-width: calc(100% - 38px);
  margin-bottom: 13px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(111, 121, 83, 0.14);
  color: var(--sage);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.choice-badge.caution {
  background: rgba(239, 184, 63, 0.2);
  color: #76550b;
}

.choice-card > strong,
.choice-card > small,
.choice-place {
  display: block;
}

.choice-card > strong {
  padding-right: 30px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.choice-card > small {
  max-width: 390px;
  margin-top: 8px;
  color: rgba(33, 25, 24, 0.61);
  font-size: 11px;
  line-height: 1.45;
}

.choice-place {
  margin-top: 15px;
  color: rgba(33, 25, 24, 0.48);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.choice-summary {
  position: sticky;
  top: 24px;
  margin-top: 74px;
  padding: 28px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 22px 22px 50px 22px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 10px 10px 0 rgba(255, 250, 240, 0.12);
}

.choice-summary .eyebrow {
  color: rgba(33, 25, 24, 0.54);
}

.summary-day {
  width: fit-content;
  margin: 15px 0 10px;
  padding: 7px 10px;
  border: 1px solid rgba(33, 25, 24, 0.26);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.choice-summary > h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 45px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.summary-itinerary {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(33, 25, 24, 0.28);
  list-style: none;
}

.summary-itinerary li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 11px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(33, 25, 24, 0.28);
}

.summary-itinerary li > span {
  padding-top: 2px;
  color: rgba(33, 25, 24, 0.42);
  font-family: var(--serif);
  font-size: 12px;
}

.summary-itinerary time,
.summary-itinerary small,
.summary-itinerary strong {
  display: block;
}

.summary-itinerary time {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.summary-itinerary small {
  margin-top: 8px;
  color: rgba(33, 25, 24, 0.53);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-itinerary strong {
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.25;
}

.choice-advice {
  margin: 17px 0;
  padding: 13px;
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.58);
  color: rgba(33, 25, 24, 0.72);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.45;
}

.summary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 18px;
}

.summary-links a {
  border-bottom: 1px solid rgba(33, 25, 24, 0.42);
  font-size: 9px;
  font-weight: 850;
}

.shortlist-section {
  padding: 110px max(24px, calc((100vw - 1392px) / 2)) 122px;
  background: var(--paper);
}

.shortlist-heading > p {
  color: rgba(33, 25, 24, 0.61);
}

.shortlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 90px);
}

.column-label {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 2px solid var(--ink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.column-label span:first-child {
  color: var(--coral);
}

.bench-card {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) minmax(112px, 0.35fr) 22px;
  gap: 14px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 160ms ease, color 160ms ease;
}

.bench-card:hover {
  padding-left: 9px;
  color: var(--plum);
}

.bench-index {
  color: rgba(33, 25, 24, 0.4);
  font-family: var(--serif);
  font-size: 12px;
}

.bench-main strong,
.bench-main small,
.bench-meta small {
  display: block;
}

.bench-main strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.bench-main small {
  max-width: 360px;
  margin-top: 7px;
  color: rgba(33, 25, 24, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.bench-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bench-meta small {
  color: rgba(33, 25, 24, 0.54);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.bench-arrow {
  justify-self: end;
  font-size: 17px;
}

.send-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 9vw, 150px);
  padding: 105px max(24px, calc((100vw - 1392px) / 2));
  background: var(--coral);
  color: var(--paper-light);
}

.send-section .kicker {
  color: rgba(255, 250, 240, 0.72);
}

.send-copy h2 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.send-copy h2 em {
  color: var(--ink);
}

.send-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.send-checklist li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 250, 240, 0.34);
}

.send-checklist li:last-child {
  border-bottom: 1px solid rgba(255, 250, 240, 0.34);
}

.send-checklist > li > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 240, 0.56);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 13px;
}

.send-checklist p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 250, 240, 0.74);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
}

.send-checklist strong {
  color: var(--paper-light);
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 155px;
  padding: 32px max(24px, calc((100vw - 1392px) / 2));
  background: var(--ink);
  color: var(--paper-light);
}

footer p {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.45;
}

.footer-note {
  color: rgba(255, 250, 240, 0.52);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

footer > a {
  border-bottom: 1px solid rgba(255, 250, 240, 0.44);
  font-size: 11px;
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 48px;
  }

  .planner-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  }

  .route-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .pick-button {
    grid-column: 2;
    justify-self: start;
    align-self: auto;
  }

  .route-stops {
    grid-template-columns: 1fr;
  }

  .shortlist-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .choice-builder {
    grid-template-columns: 1fr 1fr;
  }

  .choice-summary {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-width: 650px;
    margin-top: 12px;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: min(100% - 32px, 1440px);
  }

  .site-header nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1440px);
    padding-top: 58px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-ticket {
    max-width: 560px;
    justify-self: center;
    transform: none;
  }

  .section-heading,
  .send-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .planner-layout {
    grid-template-columns: 1fr;
  }

  .day-choice-block {
    align-items: flex-start;
    flex-direction: column;
  }

  .plan-panel {
    position: static;
    grid-row: 1;
    border-radius: 22px;
  }

  .send-section {
    display: grid;
  }

  footer {
    grid-template-columns: auto 1fr auto;
  }

  .footer-note {
    display: none;
  }
}

@media (max-width: 580px) {
  .site-header {
    height: 76px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    gap: 8px;
    padding: 10px 13px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 72px;
  }

  .hero h1 {
    font-size: clamp(56px, 18vw, 82px);
  }

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

  .hero-ticket {
    padding: 21px;
    border-radius: 19px 19px 42px 19px;
    box-shadow: 9px 11px 0 #c9b8a7;
  }

  .ticket-title h2 {
    font-size: 58px;
  }

  .routes-section,
  .shortlist-section,
  .send-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .routes-section {
    padding-top: 78px;
    padding-bottom: 88px;
    border-radius: 24px 24px 0 0;
  }

  .filter-row {
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: none;
  }

  .route-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .choice-builder {
    grid-template-columns: 1fr;
  }

  .choice-summary {
    grid-column: 1;
    padding: 24px;
  }

  .day-choice-block {
    padding: 20px;
  }

  .day-options {
    width: 100%;
  }

  .day-button {
    min-width: 0;
    flex: 1;
    padding: 12px;
  }

  .choice-step-heading.compact {
    min-height: 66px;
  }

  .choice-step-heading.compact h3 {
    font-size: 26px;
  }

  .choice-card {
    min-height: 0;
  }

  .route-number {
    display: none;
  }

  .route-card-heading {
    flex-direction: column-reverse;
  }

  .route-card h3 {
    font-size: 34px;
  }

  .route-stops {
    gap: 19px;
  }

  .route-stop {
    grid-template-columns: 22px 52px minmax(0, 1fr);
  }

  .pick-button {
    grid-column: 1;
  }

  .plan-panel {
    padding: 24px;
  }

  .shortlist-section {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .bench-card {
    grid-template-columns: 24px minmax(0, 1fr) 20px;
  }

  .bench-meta {
    display: none;
  }

  .send-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .send-checklist li {
    grid-template-columns: 44px 1fr;
    gap: 15px;
  }

  footer {
    grid-template-columns: auto 1fr;
    min-height: 130px;
  }

  footer > a {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
