:root {
  --navy: #102b39;
  --ink: #153240;
  --crimson: #c52121;
  --cream: #f4eddd;
  --paper: #fffaf0;
  --yellow: #f1bc3b;
  --blue: #79bed0;
  --line: rgba(16, 43, 57, 0.19);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Manrope, sans-serif;
}
a {
  color: inherit;
}
.site-header {
  height: 76px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 16px 21px;
  background: var(--crimson);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  border: 1px solid var(--crimson);
  transition: 0.2s;
}
.button:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.button-small {
  padding: 11px 15px;
  gap: 16px;
}
.hero {
  min-height: calc(100vh - 76px);
  height: 760px;
  position: relative;
  overflow: hidden;
  color: white;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/dc-biking-scavenger-hunt-2026.png") center/cover
    no-repeat;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--crimson);
}
.section h2,
.signup h2 {
  font-size: clamp(54px, 6vw, 88px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  margin: 25px 0;
  font-weight: 800;
}
.section h2 em,
.signup h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.text-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "DM Mono", monospace;
  font-weight: 500;
  text-underline-offset: 5px;
}
.light {
  color: white;
}
.scroll-note {
  position: absolute;
  z-index: 2;
  right: 4.5vw;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font: 9px "DM Mono";
  letter-spacing: 0.12em;
}
.scroll-note i {
  display: block;
  width: 48px;
  height: 1px;
  background: white;
}
.section {
  padding: 120px 8vw;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.section-heading h2,
.recap h2,
.faq-heading h2 {
  font-size: clamp(45px, 5.4vw, 76px);
  margin: 25px 0 60px;
}
.section-heading h2 em {
  color: var(--crimson);
}
.details-layout {
  display: flow-root;
}
.details-photo {
  float: right;
  width: min(42%, 540px);
  aspect-ratio: 4 / 3;
  margin: 0 0 42px clamp(34px, 5vw, 72px);
  overflow: hidden;
  border: 8px solid var(--paper);
  box-shadow: 10px 10px 0 var(--crimson);
  transform: rotate(-0.75deg);
}
.details-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
}
.detail-copy {
  padding-top: 20px;
}
.detail-copy .lede {
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.4;
  margin-top: 0;
}
.detail-copy > p:not(.lede) {
  font-size: 14px;
  line-height: 1.8;
  margin: 25px 0;
}
.event-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 27px 32px;
  box-shadow: 10px 10px 0 var(--blue);
  transform: rotate(0.5deg);
}
.card-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font: 9px "DM Mono";
  letter-spacing: 0.12em;
}
.event-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}
.event-card dl div {
  padding: 25px 10px;
  border-bottom: 1px solid var(--line);
}
.event-card dl div:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.event-card dt {
  font: 9px "DM Mono";
  letter-spacing: 0.14em;
  color: var(--crimson);
  margin-bottom: 7px;
}
.event-card dd {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.event-card small {
  font-size: 12px;
  font-weight: 400;
}
.route-line {
  height: 60px;
  display: flex;
  align-items: center;
}
.route-line span {
  font: 8px "DM Mono";
  margin-right: 8px;
}
.route-line i {
  height: 1px;
  background: var(--navy);
  flex: 1;
}
.route-line b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--crimson);
}
.route-line strong {
  width: 28px;
  height: 28px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-left: 7px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 115px;
  border-top: 1px solid var(--line);
}
.steps article {
  padding: 35px 45px 0 0;
  position: relative;
}
.steps article + article {
  padding-left: 45px;
  border-left: 1px solid var(--line);
}
.steps article > span {
  position: absolute;
  top: -10px;
  background: var(--cream);
  padding: 0 9px;
  font: 10px "DM Mono";
  color: var(--crimson);
}
.step-icon {
  font-size: 35px;
  height: 65px;
  display: flex;
  align-items: center;
}
.steps h3 {
  font-size: 19px;
}
.steps p {
  font-size: 13px;
  line-height: 1.7;
}
.recap {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.recap:before {
  content: "Blue's Clues";
  position: absolute;
  right: 0;
  top: -60px;
  font-size: 200px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.025);
}
.recap-intro {
  max-width: 650px;
}
.recap h2 em {
  color: var(--cream);
}
.recap-intro > p:last-child {
  max-width: 440px;
  line-height: 1.7;
  color: #b8c4c6;
}
.stats {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 70px 0;
}
.stats div {
  padding: 30px 0;
}
.stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 35px;
}
.stats strong {
  font-family: Georgia, serif;
  color: var(--yellow);
  font-size: 55px;
  font-weight: 400;
  display: block;
}
.stats span {
  font: 9px "DM Mono";
  letter-spacing: 0.16em;
}
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: 24px;
  align-items: center;
}
.photo {
  margin: 0;
}
.photo > div {
  height: 260px;
  display: grid;
  place-items: center;
  font-size: 80px;
  background: var(--crimson);
  border: 8px solid var(--cream);
  filter: saturate(0.8);
}
.photo-two > div {
  background: var(--yellow);
  transform: rotate(1.5deg);
}
.photo figcaption {
  font: 9px "DM Mono";
  letter-spacing: 0.1em;
  margin-top: 12px;
}
.photo-strip blockquote {
  font: italic 26px/1.4 Georgia;
  margin: 0;
  padding-left: 30px;
}
.photo-strip cite {
  display: block;
  font: 9px "DM Mono";
  letter-spacing: 0.1em;
  margin-top: 18px;
  font-style: normal;
  color: var(--yellow);
}
.fine-print {
  font: 8px "DM Mono";
  opacity: 0.5;
  margin-top: 40px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 11vw;
  background: var(--paper);
}
.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}
.faq-heading h2 em {
  color: var(--crimson);
}
.faq-heading > p:not(.eyebrow) {
  font-size: 13px;
  margin-top: 40px;
}
.faq-heading > a {
  font: 11px "DM Mono";
  text-underline-offset: 5px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
}
summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  color: var(--crimson);
  font-size: 24px;
  font-weight: 400;
  transition: 0.2s;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 570px;
  color: #53666e;
  padding-right: 40px;
}
.signup {
  padding: 80px 8vw;
  background: var(--crimson);
  color: white;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.signup h2 {
  font-size: clamp(42px, 5vw, 70px);
  margin: 25px 0 0;
}
.signup h2 em {
  color: var(--yellow);
}
.button-cream {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--navy);
  margin-bottom: 10px;
}
footer {
  padding: 34px 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  font: 9px "DM Mono";
  letter-spacing: 0.08em;
}
footer p {
  margin: 0;
}
@media (max-width: 800px) {
  .site-header {
    height: 64px;
  }
  .site-header nav {
    display: none;
  }
  .hero {
    height: 720px;
  }
  .hero-image {
    background-position: 62% center;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(12, 37, 50, 0.8),
      rgba(12, 37, 50, 0.25)
    );
  }
  .hero-copy {
    left: 7vw;
    top: 45%;
    right: 7vw;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-stamp {
    display: none;
  }
  .section {
    padding: 85px 7vw;
  }
  .section-heading,
  .details-layout,
  .faq-section {
    display: block;
  }
  .details-layout {
    display: grid;
    grid-template-columns: 1fr;
  }
  .section-heading h2 {
    margin-bottom: 30px;
  }
  .event-card {
    margin-top: 35px;
    padding: 22px;
  }
  .steps {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }
  .steps article,
  .steps article + article {
    padding: 32px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .steps article > span {
    top: -8px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stats div:nth-child(3) {
    border-left: 0;
  }
  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }
  .photo-strip blockquote {
    grid-column: 1/-1;
    padding: 20px 0;
  }
  .photo > div {
    height: 190px;
  }
  .faq-heading {
    position: static;
    margin-bottom: 60px;
  }
  .signup {
    display: block;
  }
  .signup .button {
    margin-top: 40px;
  }
  footer {
    gap: 20px;
    flex-wrap: wrap;
  }
  .scroll-note {
    display: none;
  }
}
@media (max-width: 480px) {
  .button-small {
    font-size: 0;
    gap: 0;
  }
  .button-small span {
    font-size: 14px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .hero-intro {
    font-size: 15px;
  }
  .event-card dl {
    grid-template-columns: 1fr;
  }
  .event-card dl div:nth-child(odd) {
    border-right: 0;
  }
  .photo-strip {
    grid-template-columns: 1fr;
  }
  .photo-strip blockquote {
    grid-column: auto;
  }
  .stats strong {
    font-size: 44px;
  }
  .stats div + div {
    padding-left: 18px;
  }
  footer p:nth-child(2) {
    display: none;
  }
}

/* Past clue archive */
.clue-archive {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}

.clue-archive-heading h2 {
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.clue-archive-heading h2 em {
  color: var(--crimson);
  font-family: Georgia, serif;
  font-weight: 400;
}

.clue-archive-heading > p:last-child {
  font-size: 13px;
  color: #53666e;
}

.clue-fan {
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px 5vw;
}

.clue-card {
  position: relative;
  width: clamp(210px, 23vw, 310px);
  flex: 0 0 auto;
  margin: 0 clamp(-88px, -6vw, -52px);
  padding: 8px;
  border: 0;
  background: var(--cream);
  box-shadow: 9px 12px 24px rgba(16, 43, 57, 0.25);
  color: var(--navy);
  cursor: zoom-in;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.clue-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8.5 / 11;
}

.clue-card span {
  display: inline-block;
  font: 500 10px "DM Mono", monospace;
  letter-spacing: 0.12em;
  padding: 8px;
  width: 100%;
}

.clue-card-2023 {
  z-index: 1;
  transform: rotate(-10deg) translateY(24px);
}
.clue-card-2023 span {
  text-align: left;
}

.clue-card-2024 {
  z-index: 2;
  transform: rotate(11deg) translateY(26px); 
}
.clue-card-2024 span {
  text-align: right;
}

.clue-card-2025 {
  z-index: 3;
  
  transform: rotate(1deg) translateY(-8px);
}
.clue-card-2025 span {
  text-align: center;
}

.clue-card:hover,
.clue-card:focus-visible {
  z-index: 4;
  transform: rotate(0) translateY(-22px) scale(1.04);
  box-shadow: 12px 18px 30px rgba(16, 43, 57, 0.32);
}

.clue-lightbox {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 24px;
  border: 0;
  overflow: auto;
  background: rgba(8, 25, 33, 0.96);
}

.clue-lightbox[open] {
  display: grid;
  place-items: center;
}

.clue-lightbox::backdrop {
  background: rgba(8, 25, 33, 0.96);
}

.clue-lightbox img {
  display: block;
  width: auto;
  max-width: calc(100vw - 48px);
  height: auto;
  max-height: calc(100dvh - 48px);
  object-fit: contain;
}

.clue-lightbox-close {
  position: fixed;
  z-index: 2;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: var(--crimson);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 800px) {
  .clue-archive {
    grid-template-columns: 1fr;
  }

  .clue-fan {
    min-height: 460px;
    padding-inline: 0;
  }

  .clue-card {
    width: min(34vw, 250px);
    margin-inline: -42px;
  }
}

@media (max-width: 480px) {
  .clue-fan {
    min-height: 400px;
  }

  .clue-card {
    width: 46vw;
    margin-inline: -34px;
  }

  .clue-lightbox {
    padding: 12px;
  }

  .clue-lightbox img {
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}

/* Recap scrollytelling */
.recap {
  overflow-x: clip;
  overflow-y: visible;
}
.recap-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(36px, 6vw, 90px);
  margin: 90px -8vw 0;
  padding-left: 8vw;
  position: relative;
  background: var(--navy);
}
.recap-map-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  align-self: start;
  overflow: hidden;
  background: #173e4b;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.recap-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #173e4b;
}
.recap-map:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  background: rgba(12, 43, 55, 0.13);
  mix-blend-mode: multiply;
}
.recap-map .leaflet-tile-pane {
  filter: saturate(0.45) sepia(0.12) hue-rotate(145deg) brightness(0.78)
    contrast(1.08);
}
.recap-map .leaflet-control-attribution {
  font:
    8px "DM Mono",
    monospace;
  background: rgba(244, 237, 221, 0.85);
  color: var(--navy);
}
.recap-map .leaflet-control-attribution a {
  color: var(--navy);
}
.recap-map .leaflet-control-zoom {
  display: none;
}
.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(
      circle at 45% 40%,
      rgba(121, 190, 208, 0.32),
      transparent 30%
    ),
    linear-gradient(135deg, #1b4a58, #102b39);
  transition: opacity 0.3s;
}
.map-fallback:before,
.map-fallback:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(244, 237, 221, 0.14);
  border-radius: 48% 52% 56% 44%;
  width: 75%;
  height: 38%;
  transform: rotate(-18deg);
}
.map-fallback:after {
  width: 42%;
  height: 70%;
  transform: rotate(45deg);
}
.map-fallback span,
.map-fallback small {
  font:
    9px "DM Mono",
    monospace;
  letter-spacing: 0.14em;
  color: var(--yellow);
}
.map-fallback strong {
  font:
    italic 36px Georgia,
    serif;
  margin: 10px 0;
  color: var(--cream);
}
.map-ready .map-fallback {
  opacity: 0;
  pointer-events: none;
}
.map-key {
  position: absolute;
  z-index: 600;
  left: 25px;
  top: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--navy);
  box-shadow: 4px 4px 0 var(--crimson);
  font:
    8px "DM Mono",
    monospace;
  letter-spacing: 0.13em;
}
.map-key i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(241, 188, 59, 0.2);
}
.story-panels {
  position: relative;
  z-index: 3;
  padding-right: 8vw;
}
.story-panel {
  min-height: 92vh;
  display: flex;
  align-items: center;
  opacity: 0.35;
  transform: scale(0.97);
  transition:
    opacity 0.45s,
    transform 0.45s;
}
.story-panel.is-active {
  opacity: 1;
  transform: none;
}
@media (min-width: 801px) {
  .story-panel + .story-panel {
    margin-top: 90px;
  }
}
.panel-card {
  width: 100%;
  padding: clamp(28px, 3vw, 44px);
  background: var(--cream);
  color: var(--navy);
  box-shadow: 10px 10px 0 var(--crimson);
  position: relative;
}
.panel-card:before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(16, 43, 57, 0.12);
  pointer-events: none;
}
.panel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
  font:
    9px "DM Mono",
    monospace;
  letter-spacing: 0.13em;
}
.panel-meta time {
  font-size: 15px;
  color: var(--crimson);
  font-weight: 500;
}
.panel-kicker {
  font:
    9px "DM Mono",
    monospace;
  letter-spacing: 0.18em;
  margin: 25px 0 12px;
  color: #61737a;
}
.panel-card h3 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 25px 0;
}
.panel-card h3 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--crimson);
}
.panel-photo {
  display: block;
  width: 100%;
  height: auto;
  margin: 25px 0 20px;
  border: 6px solid var(--paper);
  box-shadow: 6px 6px 0 var(--crimson);
}
.clue-verse {
  margin: 22px 0 0;
  padding: 0 0 0 18px;
  border-left: 3px solid var(--paper);
  color: var(--navy);
  font: italic 15px/1.65 Georgia, serif;
}

.standings-table {
  width: 100%;
  margin-top: 25px;
  border-collapse: collapse;
  /*table-layout: fixed;*/
  font-size: 11px;
}
.standings-table th,
.standings-table td {
  padding: 9px 8px;
  border-bottom: 1px dashed var(--line);
  text-align: left;
  vertical-align: middle;
}
.standings-table thead th,
.standings-table thead td {
  border-bottom-style: solid;
}
.standings-table thead th {
  color: var(--crimson);
  font: 500 12px "DM Mono", monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.standings-table tbody th {
  font-weight: 600;
  line-height: 1.35;
}
.standings-table tbody th span {
  font-weight: bold;
}
.standings-table tbody td span {
  font-weight: bold;
  color: var(--crimson);
}

.panel-card > p:not(.panel-kicker) {
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
  max-width: 480px;
}
.panel-location {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.panel-location > span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--navy);
  font-size: 18px;
}
.panel-location div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.panel-location small {
  font:
    8px "DM Mono",
    monospace;
  letter-spacing: 0.13em;
  color: var(--crimson);
}
.panel-location strong {
  font-size: 13px;
}
.story-marker {
  width: 28px;
  height: 28px;
  border: 3px solid var(--cream);
  border-radius: 50% 50% 50% 0;
  background: var(--crimson);
  transform: rotate(-45deg);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
  transition: 0.25s;
}
.story-marker:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream);
  left: 7px;
  top: 7px;
}
.story-marker.active {
  background: var(--yellow);
  transform: rotate(-45deg) scale(1.3);
  box-shadow:
    0 0 0 7px rgba(241, 188, 59, 0.25),
    0 3px 14px rgba(0, 0, 0, 0.4);
}
.story-tooltip {
  background: var(--navy);
  border: 0;
  border-radius: 0;
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--crimson);
  font:
    9px "DM Mono",
    monospace;
  letter-spacing: 0.08em;
  padding: 8px 10px;
}
.story-tooltip:before {
  display: none;
}

@media (max-width: 800px) {
  .recap-story {
    display: block;
    margin: 70px -7vw 0;
    padding: 0;
  }
  .recap-map-wrap {
    height: 100svh;
    width: 100%;
    top: 0;
  }
  .story-panels {
    margin-top: -100svh;
    padding: 0 7vw;
  }
  .story-panel {
    min-height: 100svh;
    opacity: 1;
    transform: none;
    align-items: flex-end;
    padding: 15vh 0 7vh;
  }
  .panel-card {
    background: rgba(244, 237, 221, 0.94);
    box-shadow: 7px 7px 0 var(--crimson);
    backdrop-filter: blur(8px);
  }
  .map-key {
    top: 18px;
    left: 18px;
  }
  .recap-map .leaflet-control-attribution {
    font-size: 6px;
  }
  .recap .fine-print {
    position: relative;
    z-index: 4;
    margin-top: 0;
    padding-top: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .story-panel,
  .story-marker,
  .map-fallback {
    transition: none;
  }
}

/* Header identity */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  height: 86px;
  padding-inline: 3.5vw;
  position: static;
  z-index: auto;
}
.hero {
  min-height: calc(100svh - 86px);
}
.site-header > .brand {
  justify-self: start;
  font:
    500 10px/1.55 "DM Mono",
    monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-title {
  justify-self: center;
  margin: 0;
  font:
    400 clamp(40px, 6vw, 64px)/1 "Kapakana",
    "Snell Roundhand",
    "Zapfino",
    "Apple Chancery",
    cursive;
  color: var(--crimson);
  white-space: nowrap;
  transform: rotate(-1deg);
}
.event-date {
  justify-self: end;
  margin: 0;
  text-align: right;
  font:
    500 10px/1.55 "DM Mono",
    monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.event-date span {
  color: var(--crimson);
  font-weight: 500;
}

/* Event schedule */
.schedule {
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.schedule-block {
  padding: 31px 0 28px;
  border-bottom: 1px solid var(--line);
}

.schedule-block:first-child {
  padding-top: 0;
}

.schedule-block:last-child {
  border-bottom: 0;
}

.schedule-block header {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  align-items: start;
  margin-bottom: 20px;
}

.schedule-number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--crimson);
  color: white;
  font: 500 9px "DM Mono", monospace;
}

.schedule-block header p {
  margin: 0 0 5px;
  color: var(--crimson);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.14em;
}

.schedule-block h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.schedule-block ul,
.timed-events {
  margin: 0 0 0 53px;
  padding: 0;
}
.schedule-block ul ul {
  margin: 0;
}

.schedule-block ul {
  padding-left: 18px;
}

.schedule-block ul li {
  padding: 6px 0 6px 5px;
  font-size: 13px;
  line-height: 1.65;
}

.schedule-block li::marker {
  color: var(--crimson);
}

.timed-events {
  list-style: none;
}

.timed-events li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 15px;
  padding: 13px 0;
  border-top: 1px dashed var(--line);
}

.timed-events time {
  color: var(--crimson);
  font: 500 11px "DM Mono", monospace;
}

.timed-events p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.timed-events em {
  color: #61737a;
  font-style: normal;
}

.schedule a {
  color: var(--crimson);
  font-weight: 700;
  text-underline-offset: 3px;
}

@media (max-width: 800px) {
  .details-layout {
    display: block;
  }

  .details-photo {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 44px;
  }

  .schedule {
    margin-top: 0;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .schedule-block ul,
  .timed-events {
    margin-left: 0;
  }

  .timed-events li {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .site-header {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 16px 4vw 18px;
    text-align: center;
  }
  .hero {
    min-height: 0;
  }
  .site-header > .brand {
    font-size: 9px;
    white-space: normal;
  }
  .header-title {
    font-size: 64px;
    white-space: normal;
  }
  .event-date {
    font-size: 9px;
    text-align: center;
    white-space: normal;
  }
  .event-date br {
    display: none;
  }
}
@media (max-width: 480px) {
  .site-header {
    gap: 6px;
    padding-block: 14px 16px;
  }
  .header-title {
    font-size: 48px;
  }
  .site-header > .brand,
  .event-date {
    font-size: 8px;
  }
}
