:root {
  --ink: #082f39;
  --ink-2: #164953;
  --paper: #f6f1e7;
  --paper-2: #fffaf0;
  --white: #fffdf7;
  --coral: #ff765e;
  --coral-dark: #dc5948;
  --mint: #a9ded2;
  --mint-pale: #dff4ed;
  --ice: #b9def2;
  --ice-pale: #e5f4fb;
  --blue: #2f85a0;
  --violet: #7377a8;
  --rose: #d78a9c;
  --gold: #e6b858;
  --sand: #d5bc91;
  --night: #102b50;
  --line: rgba(8, 47, 57, 0.14);
  --shadow: 0 22px 55px rgba(4, 35, 42, 0.12);
  --shadow-soft: 0 12px 36px rgba(4, 35, 42, 0.08);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: min(1120px, calc(100% - 40px));
  --header-height: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 76px;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.16;
}

.symbol-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(8px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) 8px max(20px, env(safe-area-inset-left));
  color: white;
  background: rgba(7, 55, 68, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.mini-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-decoration: none;
}

.mini-mark__sun {
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.mini-mark__sun::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--coral);
  border-radius: 50%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-clock {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

.icon-button {
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.hero {
  min-height: 790px;
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(88, 174, 183, 0.35), transparent 32%),
    radial-gradient(circle at 18% 70%, rgba(255, 118, 94, 0.16), transparent 28%),
    linear-gradient(155deg, #063744 0%, #0b4d59 48%, #123842 100%);
  padding: calc(var(--header-height) + 74px) 0 160px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  grid-template-areas:
    "copy ticket"
    "weather ticket"
    "note note";
  align-items: end;
  gap: 32px 76px;
  z-index: 2;
}

.hero__copy {
  grid-area: copy;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.2em;
}

.eyebrow span {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.hero h1 {
  margin-bottom: 24px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(70px, 10vw, 128px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 em {
  position: relative;
  color: var(--coral);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 7%;
  bottom: -2px;
  width: 90%;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.32;
  filter: blur(6px);
}

.hero__lead {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.date-ticket {
  grid-area: ticket;
  width: min(100%, 340px);
  justify-self: end;
  position: relative;
  overflow: hidden;
  padding: 24px 27px 29px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(3, 35, 44, 0.2);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(13px);
  transform: rotate(2.5deg);
}

.date-ticket::before,
.date-ticket::after {
  content: "";
  position: absolute;
  top: 59%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0b4652;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.date-ticket::before {
  left: -14px;
}

.date-ticket::after {
  right: -14px;
}

.date-ticket__top,
.date-ticket__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.date-ticket > strong {
  display: block;
  margin: 8px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.42);
  font-family: Georgia, serif;
  font-size: clamp(110px, 15vw, 166px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.date-ticket__snow {
  position: absolute;
  right: -28px;
  top: 62px;
  width: 114px;
  height: 114px;
  color: var(--ice);
  opacity: 0.18;
}

.weather-strip {
  grid-area: weather;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  width: min(100%, 520px);
  gap: 14px;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
}

.weather-strip__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #ffd784;
  background: rgba(255, 215, 132, 0.12);
  border-radius: 14px;
}

.weather-strip__icon svg {
  width: 26px;
  height: 26px;
}

.weather-strip__label {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.weather-strip strong {
  font-size: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}

.weather-strip__rain {
  min-width: 58px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  text-align: right;
}

.weather-strip__rain span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.weather-strip__rain strong {
  font-size: 16px;
}

.hero__note {
  grid-area: note;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero__note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.pulse-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 118, 94, 0.55);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 118, 94, 0.52); }
  70% { box-shadow: 0 0 0 10px rgba(255, 118, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 118, 94, 0); }
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__orb::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: inherit;
}

.hero__orb--one {
  width: 470px;
  height: 470px;
  right: -230px;
  top: 8%;
}

.hero__orb--two {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: 20%;
}

.hero__waves {
  position: absolute;
  z-index: 3;
  inset: auto 0 -1px;
  height: 180px;
  pointer-events: none;
}

.hero__waves svg {
  width: 100%;
  height: 100%;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

.section-heading .kicker {
  margin-bottom: 14px;
  color: var(--coral-dark);
}

.section-heading h2 {
  margin-bottom: 22px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.section-heading--split > p {
  margin-bottom: 0;
  color: rgba(8, 47, 57, 0.66);
  font-size: 14px;
  line-height: 1.9;
}

.section-heading--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading--split h2,
.section-heading--split .kicker {
  margin-bottom: 0;
}

.section-heading--split .kicker {
  margin-bottom: 14px;
}

.section-heading--split > p {
  padding-bottom: 8px;
  text-align: right;
}

.section-heading--light,
.section-heading--light .kicker,
.section-heading--light > p:last-child {
  color: white;
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.section--mission {
  padding-top: 82px;
  background: var(--paper);
}

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

.mission-step {
  min-height: 238px;
  position: relative;
  overflow: hidden;
  padding: 28px 30px 28px 82px;
  background: rgba(255, 253, 247, 0.77);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.mission-step--accent {
  background: var(--ink);
  color: white;
  border-color: transparent;
}

.mission-step--frozen {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(145deg, #d7eef8, #b8ddee);
  border-color: rgba(47, 133, 160, 0.18);
}

.mission-step__number {
  position: absolute;
  top: 31px;
  left: 28px;
  color: var(--coral-dark);
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.mission-step--accent .mission-step__number {
  color: var(--coral);
}

.mission-step__icon {
  position: absolute;
  right: -25px;
  bottom: -30px;
  width: 150px;
  height: 150px;
  color: white;
  opacity: 0.38;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 10px;
  margin-bottom: 13px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint-pale);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.tag--ice { background: var(--ice-pale); }
.tag--navy { color: white; background: var(--ink); }
.tag--coral { color: white; background: var(--coral); }
.tag--mint { background: var(--mint); }
.tag--sand { background: #ecddc2; }
.tag--blue { color: white; background: var(--blue); }
.tag--violet { color: white; background: var(--violet); }
.tag--rose { color: white; background: var(--rose); }
.tag--gold { background: #f4d995; }
.tag--night { color: white; background: var(--night); }

.mission-step h3 {
  position: relative;
  margin-bottom: 12px;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.mission-step p {
  position: relative;
  margin-bottom: 0;
  color: rgba(8, 47, 57, 0.65);
  font-size: 13px;
}

.mission-step--accent p {
  color: rgba(255, 255, 255, 0.7);
}

.price-row {
  position: relative;
  display: flex;
  gap: 28px;
  margin: 20px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 47, 57, 0.15);
}

.price-row div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-row dt {
  color: rgba(8, 47, 57, 0.55);
  font-size: 10px;
  font-weight: 700;
}

.price-row dd {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

.timer-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  grid-template-areas: "icon copy button" "icon copy reset";
  align-items: center;
  gap: 6px 20px;
  margin-top: 22px;
  padding: 22px 24px;
  color: white;
  background: var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.timer-card.is-running {
  background: linear-gradient(110deg, var(--ink), #10596a);
}

.timer-card__icon {
  grid-area: icon;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--coral);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.timer-card__icon svg {
  width: 28px;
  height: 28px;
}

.timer-card__copy {
  grid-area: copy;
}

.timer-card .kicker {
  margin-bottom: 4px;
  color: var(--coral);
}

.timer-card h3 {
  margin-bottom: 3px;
  font-size: 21px;
}

.timer-card p:not(.kicker) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.button {
  min-height: 46px;
  padding: 11px 19px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:active {
  transform: scale(0.97);
}

.button--coral {
  grid-area: button;
  color: white;
  background: var(--coral);
}

.button--coral:hover {
  background: var(--coral-dark);
}

.text-button {
  grid-area: reset;
  justify-self: center;
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.62);
  background: none;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 11px;
  cursor: pointer;
}

.fine-print {
  max-width: 840px;
  margin: 16px 0 0 84px;
  color: rgba(8, 47, 57, 0.54);
  font-size: 11px;
  line-height: 1.75;
}

.section--route {
  color: white;
  background:
    radial-gradient(circle at 0 15%, rgba(87, 168, 176, 0.22), transparent 26%),
    linear-gradient(180deg, #073744, #062d39 72%, #092f3a);
}

.section--route::before {
  content: "08 · 02";
  position: absolute;
  right: 4vw;
  top: 60px;
  color: rgba(255, 255, 255, 0.035);
  font-family: Georgia, serif;
  font-size: min(16vw, 230px);
  line-height: 1;
  pointer-events: none;
}

.waittimes-panel {
  position: relative;
  margin: -4px 0 30px 128px;
  padding: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.waittimes-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(169, 222, 210, 0.08);
  pointer-events: none;
}

.waittimes-panel__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.waittimes-panel .kicker {
  margin-bottom: 4px;
  color: var(--mint);
}

.waittimes-panel h3 {
  margin-bottom: 5px;
  font-size: 25px;
}

.waittimes-panel__status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.waittimes-panel__status .pulse-dot {
  width: 7px;
  height: 7px;
}

.waittimes-panel[data-state="warning"] .waittimes-panel__status {
  color: #f4d995;
}

.waittimes-panel[data-state="error"] .waittimes-panel__status {
  color: #ffb6a8;
}

.waittimes-refresh {
  position: relative;
  z-index: 1;
  min-height: 38px;
  padding: 8px 15px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.waittimes-refresh:hover {
  background: rgba(255, 255, 255, 0.14);
}

.waittimes-refresh:disabled {
  cursor: wait;
  opacity: 0.48;
}

.waittimes-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.waittime-card {
  min-width: 0;
  padding: 13px 14px;
  background: rgba(4, 35, 42, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.waittime-card > span,
.waittime-card strong,
.waittime-card small {
  display: block;
}

.waittime-card > span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.waittime-card strong {
  min-height: 30px;
  margin: 4px 0 2px;
  font-family: Georgia, "Yu Mincho", YuMincho, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.waittime-card small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  line-height: 1.45;
}

.waittime-card[data-wait-level="low"] {
  background: rgba(169, 222, 210, 0.14);
  border-color: rgba(169, 222, 210, 0.28);
}

.waittime-card[data-wait-level="medium"] {
  background: rgba(230, 184, 88, 0.12);
  border-color: rgba(230, 184, 88, 0.25);
}

.waittime-card[data-wait-level="high"] {
  background: rgba(255, 118, 94, 0.12);
  border-color: rgba(255, 118, 94, 0.27);
}

.waittimes-panel__note {
  position: relative;
  z-index: 1;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  line-height: 1.65;
}

.now-card {
  position: sticky;
  top: calc(var(--header-height) + 12px);
  z-index: 20;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 0 0 34px 128px;
  padding: 16px 20px;
  color: var(--ink);
  background: rgba(246, 241, 231, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.now-card__label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-right: 18px;
  border-right: 1px solid var(--line);
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.now-card strong {
  display: block;
  margin-bottom: 1px;
  font-size: 14px;
}

.now-card p {
  margin-bottom: 0;
  color: rgba(8, 47, 57, 0.62);
  font-size: 11px;
  line-height: 1.6;
}

.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 128px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 98px;
  top: 8px;
  bottom: 38px;
  width: 1px;
  background: linear-gradient(to bottom, var(--coral), rgba(255, 255, 255, 0.13));
}

.timeline-card {
  position: relative;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 24px;
  padding: 31px 34px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.13);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 44px;
  width: 13px;
  height: 13px;
  border: 4px solid #073744;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.timeline-card.is-current {
  transform: translateX(8px);
  box-shadow: 0 0 0 2px var(--coral), 0 28px 60px rgba(0, 0, 0, 0.22);
}

.timeline-card.is-current::before {
  box-shadow: 0 0 0 6px rgba(255, 118, 94, 0.2);
}

.timeline-card.is-complete {
  opacity: 0.56;
}

.timeline-card.is-complete .timeline-card__check {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.timeline-card.is-complete .timeline-card__check svg {
  opacity: 1;
}

.timeline-card--priority {
  background: linear-gradient(145deg, #fffaf0, #fbe6df);
}

.timeline-card--frozen {
  background:
    radial-gradient(circle at 95% 0, rgba(255, 255, 255, 0.9), transparent 25%),
    linear-gradient(145deg, #eaf7fb, #c8e8f5);
}

.timeline-card--dress {
  background: linear-gradient(145deg, #fff7f3, #f6e2e6);
}

.timeline-card--night {
  color: white;
  background:
    radial-gradient(circle at 83% 22%, rgba(131, 144, 205, 0.38), transparent 29%),
    linear-gradient(145deg, #152b4f, #0a1b35);
}

.timeline-card--night p,
.timeline-card--night small,
.timeline-card--night .area {
  color: rgba(255, 255, 255, 0.67);
}

.timeline-card__check {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 1px solid rgba(8, 47, 57, 0.18);
  border-radius: 50%;
  cursor: pointer;
}

.timeline-card--night .timeline-card__check {
  color: white;
  border-color: rgba(255, 255, 255, 0.25);
}

.timeline-card__check svg {
  width: 18px;
  height: 18px;
  opacity: 0.25;
}

.timeline-card__time {
  padding-top: 2px;
  border-right: 1px solid var(--line);
}

.timeline-card--night .timeline-card__time {
  border-color: rgba(255, 255, 255, 0.13);
}

.timeline-card__time strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.timeline-card__time span {
  display: block;
  margin-top: 10px;
  color: var(--coral-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.timeline-card--night .timeline-card__time span {
  color: #b9c9ff;
}

.timeline-card__top {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
  padding-right: 36px;
}

.timeline-card__top .tag {
  margin-bottom: 0;
}

.area {
  color: rgba(8, 47, 57, 0.5);
  font-size: 10px;
}

.timeline-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.timeline-card__content > p {
  margin-bottom: 0;
  padding-right: 34px;
  color: rgba(8, 47, 57, 0.64);
  font-size: 13px;
}

.mini-list {
  display: grid;
  gap: 7px;
  margin: 17px 0 0;
  padding: 14px 16px;
  list-style: none;
  background: rgba(8, 47, 57, 0.045);
  border-radius: 12px;
}

.mini-list li {
  position: relative;
  padding-left: 15px;
  color: rgba(8, 47, 57, 0.72);
  font-size: 11px;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.choice-note {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 13px;
  margin-top: 17px;
  padding: 13px 15px;
  background: rgba(255, 118, 94, 0.09);
  border-left: 3px solid var(--coral);
  border-radius: 6px 12px 12px 6px;
  font-size: 11px;
}

.choice-note strong {
  color: var(--coral-dark);
}

.choice-note--warning {
  grid-template-columns: 86px minmax(0, 1fr);
  background: rgba(215, 138, 156, 0.13);
  border-left-color: var(--rose);
}

.choice-note--warning strong {
  color: #a45068;
}

.soarin-option {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 17px;
  padding: 14px 16px;
  color: white;
  background: var(--ink);
  border-radius: 13px;
}

.soarin-option > span {
  color: var(--ice);
  font-size: 11px;
  font-weight: 900;
}

.soarin-option p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.6;
}

.soarin-option strong {
  font-size: 12px;
}

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

.option-grid > div {
  position: relative;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 2px 9px;
  align-items: center;
  padding: 13px 14px;
  background: rgba(47, 133, 160, 0.08);
  border: 1px solid rgba(47, 133, 160, 0.14);
  border-radius: 12px;
}

.option-grid strong {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-size: 10px;
}

.option-grid span {
  font-size: 11px;
  font-weight: 800;
}

.option-grid small {
  color: rgba(8, 47, 57, 0.55);
  font-size: 9px;
}

.photo-prompt {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(8, 47, 57, 0.13);
  color: rgba(8, 47, 57, 0.65);
  font-size: 11px;
}

.photo-prompt svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.split-route {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.split-route > div {
  padding: 15px;
  background: rgba(115, 119, 168, 0.09);
  border: 1px solid rgba(115, 119, 168, 0.15);
  border-radius: 13px;
}

.split-route__who {
  display: block;
  margin-bottom: 5px;
  color: var(--violet);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.split-route strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.split-route small {
  display: block;
  color: rgba(8, 47, 57, 0.55);
  font-size: 9px;
  line-height: 1.55;
}

.meet-time {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: rgba(8, 47, 57, 0.57);
  font-size: 10px;
  font-weight: 700;
}

.meet-time input {
  min-height: 38px;
  padding: 5px 9px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-weight: 800;
}

.night-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.night-times span {
  padding: 11px;
  background: rgba(255, 255, 255, 0.06);
  font-family: Georgia, serif;
  font-size: 19px;
  text-align: center;
}

.night-times small {
  display: block;
  margin-bottom: 3px;
  color: #b9c9ff;
  font-family: "Avenir Next", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.route-rule {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 38px 0 0 128px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.route-rule > svg {
  width: 52px;
  height: 52px;
  padding: 12px;
  color: var(--coral);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.route-rule h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.route-rule p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.section--care {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 118, 94, 0.12), transparent 32%),
    var(--paper);
}

.heat-banner {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 22px;
  color: white;
  background: var(--coral);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.heat-banner__temperature {
  display: grid;
  place-items: center;
  align-content: center;
  padding: 28px;
  background: rgba(8, 47, 57, 0.12);
}

.heat-banner__temperature strong {
  font-family: Georgia, serif;
  font-size: 66px;
  font-weight: 400;
  line-height: 1;
}

.heat-banner__temperature span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.heat-banner__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 36px;
}

.heat-banner__copy > span {
  margin-bottom: 5px;
  color: #ffe3dc;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.heat-banner h3 {
  margin-bottom: 5px;
  font-size: 25px;
}

.heat-banner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

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

.care-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.care-card--dress {
  background: linear-gradient(150deg, #fffaf5, #f9ebed);
}

.care-card__top {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.care-card--dress .care-card__top {
  color: #ad5d71;
}

.care-card__top svg {
  width: 29px;
  height: 29px;
}

.care-card h3 {
  margin-bottom: 24px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.care-card ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.care-card ol li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.care-card ol strong {
  color: var(--blue);
  font-size: 12px;
}

.care-card ol span {
  color: rgba(8, 47, 57, 0.64);
  font-size: 11px;
}

.alert-line {
  margin: 22px 0 0;
  padding: 14px 15px;
  color: #8d4239;
  background: rgba(255, 118, 94, 0.11);
  border-radius: 11px;
  font-size: 11px;
  font-weight: 700;
}

.rule-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rule-list li {
  display: grid;
  grid-template-columns: 33px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.rule-list li > span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: white;
  background: var(--rose);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.rule-list p {
  margin: 3px 0 0;
  color: rgba(8, 47, 57, 0.67);
  font-size: 11px;
}

.dress-note {
  margin-top: 22px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(215, 138, 156, 0.22);
  border-radius: 12px;
}

.dress-note strong {
  display: block;
  margin-bottom: 4px;
  color: #a45068;
  font-size: 10px;
}

.dress-note p {
  margin-bottom: 0;
  color: rgba(8, 47, 57, 0.62);
  font-size: 10px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration-color: rgba(8, 47, 57, 0.25);
  text-underline-offset: 5px;
}

.inline-link svg {
  width: 16px;
  height: 16px;
}

.section--packing {
  background: var(--mint-pale);
}

.packing-progress {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  padding: 17px 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(8, 47, 57, 0.09);
  border-radius: 16px;
}

.packing-progress > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.packing-progress span {
  font-size: 18px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.packing-progress small {
  color: rgba(8, 47, 57, 0.5);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.progress-track {
  height: 7px;
  overflow: hidden;
  background: rgba(8, 47, 57, 0.1);
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--coral));
  border-radius: inherit;
  transition: width 0.35s ease;
}

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

.checklist-group {
  min-width: 0;
  margin: 0;
  padding: 25px;
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid rgba(8, 47, 57, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.checklist-group legend {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 21px;
  font-weight: 700;
}

.checklist-group legend span {
  color: var(--coral-dark);
  font-family: Georgia, serif;
  font-size: 11px;
}

.checklist-group label {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 60px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.checklist-group label:last-child {
  border-bottom: 0;
}

.checklist-group input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fake-check {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  background: transparent;
  border: 1.5px solid rgba(8, 47, 57, 0.24);
  border-radius: 10px;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.fake-check svg {
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.checklist-group input:focus-visible + .fake-check {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.checklist-group input:checked + .fake-check {
  background: var(--blue);
  border-color: var(--blue);
}

.checklist-group input:checked + .fake-check svg {
  opacity: 1;
  transform: scale(1);
}

.checklist-group input:checked ~ span:last-child {
  opacity: 0.5;
}

.checklist-group label strong,
.checklist-group label small {
  display: block;
}

.checklist-group label strong {
  margin-bottom: 1px;
  font-size: 13px;
}

.checklist-group label small {
  color: rgba(8, 47, 57, 0.54);
  font-size: 10px;
  line-height: 1.5;
}

.section--info {
  color: white;
  background: #0a2d36;
}

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

.fact-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.fact-card--hours {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 3px 28px;
  padding: 34px;
  background: var(--coral);
  border-color: transparent;
}

.fact-card--hours span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.fact-card--hours strong {
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.15;
}

.fact-card__label {
  display: block;
  margin-bottom: 20px;
  color: var(--ice);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.show-list {
  margin-bottom: 0;
}

.show-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.show-list div:last-child {
  border-bottom: 0;
}

.show-list dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.show-list dd {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.fact-card--closed ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.fact-card--closed li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.fact-card--closed li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 900;
}

.fact-card--closed p,
.fact-card--height p {
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.fact-card--height dl {
  margin-bottom: 18px;
}

.fact-card--height dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: baseline;
  gap: 15px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fact-card--height dt {
  color: var(--mint);
  font-family: Georgia, serif;
  font-size: 20px;
}

.fact-card--height dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.official-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
}

.official-links a {
  min-height: 126px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: end;
  gap: 12px;
  padding: 21px;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition: background 0.2s ease;
}

.official-links a:hover {
  background: rgba(255, 255, 255, 0.09);
}

.official-links a > span {
  grid-column: 1 / -1;
  align-self: start;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 11px;
}

.official-links a strong {
  font-size: 12px;
}

.official-links svg {
  width: 17px;
  height: 17px;
  color: var(--ice);
}

.source-note {
  max-width: 820px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.site-footer {
  position: relative;
  padding: 82px 0 92px;
  color: white;
  background: #061f27;
  text-align: center;
}

.footer-mark {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--mint);
}

.footer-title {
  margin-bottom: 13px;
  font-family: Georgia, serif;
  font-size: clamp(30px, 5vw, 54px);
  letter-spacing: 0.08em;
}

.site-footer p:not(.footer-title) {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.text-button--light {
  position: static;
  color: rgba(255, 255, 255, 0.54);
}

.bottom-nav {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: max(10px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(460px, calc(100% - 28px));
  min-height: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 6px;
  color: white;
  background: rgba(6, 31, 39, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.bottom-nav a {
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.62);
  border-radius: 15px;
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
}

.bottom-nav a:hover,
.bottom-nav a.is-active {
  color: white;
  background: rgba(255, 255, 255, 0.09);
}

.bottom-nav svg {
  width: 19px;
  height: 19px;
}

.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 90px;
  transform: translate(-50%, 20px);
  max-width: calc(100% - 40px);
  padding: 11px 17px;
  color: white;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.noscript {
  position: fixed;
  z-index: 300;
  inset: auto 10px 10px;
  padding: 12px;
  color: white;
  background: #8b3f36;
  border-radius: 12px;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .hero {
    min-height: 920px;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) 260px;
    grid-template-areas:
      "copy ticket"
      "weather weather"
      "note note";
    gap: 34px 28px;
  }

  .date-ticket {
    padding: 21px 23px 25px;
  }

  .date-ticket > strong {
    font-size: 116px;
  }

  .weather-strip {
    width: 100%;
  }

  .mission-board,
  .care-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .checklist-groups {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-card {
    grid-template-columns: 106px minmax(0, 1fr);
    gap: 20px;
  }

  .waittimes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .official-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
    --header-height: 58px;
    --radius-lg: 26px;
    --radius-md: 19px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .mini-mark {
    gap: 8px;
    font-size: 9px;
  }

  .mini-mark__sun {
    width: 19px;
    height: 19px;
  }

  .live-clock {
    font-size: 9px;
  }

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 910px;
    padding: calc(var(--header-height) + 44px) 0 150px;
  }

  .hero::before {
    background-size: 36px 36px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "ticket"
      "weather"
      "note";
    gap: 24px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 8.5px;
  }

  .hero h1 {
    margin-bottom: 17px;
    font-size: clamp(62px, 22vw, 88px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .date-ticket {
    width: 228px;
    justify-self: end;
    margin-top: -32px;
    padding: 17px 19px 20px;
    border-radius: 22px;
    transform: rotate(3deg);
  }

  .date-ticket::before,
  .date-ticket::after {
    width: 20px;
    height: 20px;
  }

  .date-ticket::before { left: -11px; }
  .date-ticket::after { right: -11px; }

  .date-ticket__top,
  .date-ticket__bottom {
    font-size: 7px;
  }

  .date-ticket > strong {
    margin: 5px 0 12px;
    padding-bottom: 10px;
    font-size: 92px;
  }

  .date-ticket__snow {
    width: 78px;
    height: 78px;
    top: 45px;
  }

  .weather-strip {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 11px 14px 11px 11px;
  }

  .weather-strip__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .weather-strip strong {
    font-size: 18px;
  }

  .hero__note {
    margin-top: 0;
    padding-top: 18px;
  }

  .hero__note p {
    font-size: 10px;
  }

  .hero__orb--one {
    width: 350px;
    height: 350px;
  }

  .hero__waves {
    height: 130px;
  }

  .section {
    padding: 82px 0;
  }

  .section--mission {
    padding-top: 58px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading .kicker,
  .section-heading--split .kicker {
    margin-bottom: 10px;
  }

  .section-heading h2 {
    margin-bottom: 15px;
    font-size: 42px;
  }

  .section-heading > p:last-child,
  .section-heading--split > p {
    font-size: 11px;
  }

  .section-heading--split {
    display: block;
  }

  .section-heading--split > p {
    margin-top: 15px;
    text-align: left;
  }

  .mission-board {
    gap: 12px;
  }

  .mission-step {
    min-height: 0;
    padding: 24px 22px 24px 65px;
  }

  .mission-step__number {
    top: 28px;
    left: 22px;
    font-size: 12px;
  }

  .mission-step h3 {
    margin-bottom: 9px;
    font-size: 19px;
  }

  .mission-step p {
    font-size: 11px;
  }

  .mission-step__icon {
    width: 105px;
    height: 105px;
  }

  .price-row {
    gap: 22px;
    margin-top: 15px;
  }

  .price-row dd {
    font-size: 16px;
  }

  .timer-card {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-areas:
      "icon copy"
      "button button"
      "reset reset";
    gap: 12px 14px;
    padding: 18px;
  }

  .timer-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .timer-card h3 {
    font-size: 16px;
  }

  .timer-card p:not(.kicker) {
    font-size: 10px;
  }

  .button--coral {
    width: 100%;
  }

  .fine-print {
    margin-left: 0;
    font-size: 9px;
  }

  .section--route::before {
    top: 30px;
  }

  .waittimes-panel {
    margin: -4px 0 22px;
    padding: 19px;
  }

  .waittimes-panel__header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .waittimes-panel h3 {
    font-size: 21px;
  }

  .waittimes-panel__status {
    align-items: flex-start;
    font-size: 9px;
  }

  .waittimes-panel__status .pulse-dot {
    margin-top: 4px;
    flex: 0 0 auto;
  }

  .waittimes-refresh {
    min-height: 35px;
    padding-inline: 13px;
  }

  .waittime-card {
    padding: 11px 12px;
  }

  .waittime-card strong {
    min-height: 27px;
    font-size: 18px;
  }

  .now-card {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 12px;
    margin: 0 0 25px;
    padding: 13px 14px;
  }

  .now-card__label {
    padding-right: 10px;
    font-size: 8px;
  }

  .now-card strong {
    font-size: 12px;
  }

  .now-card p {
    font-size: 9px;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline::before {
    left: 4px;
  }

  .timeline-card {
    display: block;
    margin-bottom: 16px;
    padding: 22px 19px 22px 22px;
  }

  .timeline-card::before {
    left: -22px;
    top: 31px;
    width: 11px;
    height: 11px;
    border-width: 3px;
  }

  .timeline-card.is-current {
    transform: translateX(3px);
  }

  .timeline-card__time {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-bottom: 15px;
    padding: 0 44px 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-card--night .timeline-card__time {
    border-bottom-color: rgba(255, 255, 255, 0.13);
  }

  .timeline-card__time strong {
    font-size: 26px;
  }

  .timeline-card__time span {
    margin-top: 0;
  }

  .timeline-card__check {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }

  .timeline-card__top {
    flex-wrap: wrap;
    gap: 7px;
    padding-right: 0;
  }

  .timeline-card h3 {
    font-size: 19px;
  }

  .timeline-card__content > p {
    padding-right: 0;
    font-size: 11px;
  }

  .choice-note,
  .choice-note--warning {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .soarin-option {
    grid-template-columns: 1fr auto;
    gap: 4px 10px;
  }

  .soarin-option p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .option-grid,
  .split-route {
    grid-template-columns: 1fr;
  }

  .meet-time {
    flex-wrap: wrap;
  }

  .route-rule {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    margin-left: 20px;
    padding: 19px;
  }

  .route-rule > svg {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .route-rule h3 {
    font-size: 16px;
  }

  .route-rule p {
    font-size: 10px;
  }

  .heat-banner {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .heat-banner__temperature {
    padding: 18px;
  }

  .heat-banner__temperature strong {
    font-size: 43px;
  }

  .heat-banner__temperature span {
    font-size: 7px;
  }

  .heat-banner__copy {
    padding: 20px 18px;
  }

  .heat-banner h3 {
    font-size: 16px;
  }

  .heat-banner p {
    font-size: 9px;
  }

  .care-grid {
    gap: 14px;
  }

  .care-card {
    padding: 25px 22px;
  }

  .care-card h3 {
    font-size: 23px;
  }

  .checklist-groups {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .checklist-group {
    padding: 20px;
  }

  .packing-progress {
    grid-template-columns: 80px minmax(0, 1fr);
    padding: 14px 16px;
  }

  .facts-grid {
    gap: 13px;
  }

  .fact-card {
    padding: 22px;
  }

  .fact-card--hours {
    padding: 25px;
  }

  .fact-card--hours strong {
    font-size: 42px;
  }

  .official-links {
    grid-template-columns: 1fr 1fr;
  }

  .official-links a {
    min-height: 106px;
    padding: 16px;
  }

  .official-links a strong {
    font-size: 10px;
  }

  .site-footer {
    padding: 70px 0 100px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 61px;
  }

  .date-ticket {
    width: 205px;
  }

  .date-ticket > strong {
    font-size: 82px;
  }

  .heat-banner {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .heat-banner__temperature strong {
    font-size: 37px;
  }
}

@media print {
  body {
    padding: 0;
    color: #111;
    background: white;
    font-size: 10pt;
  }

  .site-header,
  .bottom-nav,
  .timer-card,
  .waittimes-refresh,
  .toast,
  .progress-check,
  .packing-progress,
  .site-footer,
  .hero__orb,
  .hero__waves {
    display: none !important;
  }

  .hero,
  .section,
  .section--route,
  .section--info {
    min-height: 0;
    padding: 24px 0;
    color: #111;
    background: white;
  }

  .hero__content {
    grid-template-columns: 1fr 200px;
  }

  .hero h1,
  .section-heading--light,
  .section-heading--light .kicker,
  .section-heading--light > p:last-child {
    color: #111;
  }

  .date-ticket,
  .weather-strip,
  .waittimes-panel,
  .now-card,
  .timeline-card,
  .fact-card {
    color: #111;
    background: white;
    border: 1px solid #bbb;
    box-shadow: none;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before,
  .timeline-card::before {
    display: none;
  }

  .timeline-card,
  .care-card,
  .checklist-group,
  .fact-card {
    break-inside: avoid;
  }

  .route-rule {
    margin-left: 0;
    color: #111;
    border-color: #bbb;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
