:root {
  --ink: #0b0e13;
  --ink-soft: #111721;
  --paper: #ece9df;
  --paper-muted: #a9a79f;
  --line: rgba(236, 233, 223, 0.16);
  --line-strong: rgba(236, 233, 223, 0.32);
  --ember: #ff765e;
  --sun: #ffe4a3;
  --ice: #91b8c5;
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 72% -15%, rgba(71, 88, 113, 0.23), transparent 38rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.page-grain {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 6rem;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wordmark svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.wordmark svg path {
  stroke-width: 1.6;
}

.site-header nav {
  display: flex;
  gap: clamp(1.25rem, 3vw, 3.5rem);
}

.site-header nav a,
.text-link {
  position: relative;
  color: var(--paper-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-header nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--paper);
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.signal {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signal > span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(255, 118, 94, 0.5);
  animation: signal 2.8s infinite;
}

@keyframes signal {
  0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(255, 118, 94, 0); }
  12% { box-shadow: 0 0 0 0.5rem rgba(255, 118, 94, 0); }
}

.hero {
  display: grid;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(36rem, 1.45fr);
  min-height: calc(100svh - 6rem);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(5rem, 10vw, 9rem) var(--page-pad);
  border-right: 1px solid var(--line);
}

.eyebrow,
.section-number,
.micro-label {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  margin: clamp(2.2rem, 5vw, 4.5rem) 0 2rem;
  font-family: var(--display);
  font-size: clamp(4.6rem, 8.4vw, 9.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.72;
}

.hero h1 em {
  color: var(--ember);
  font-weight: 400;
}

.lede {
  max-width: 32rem;
  margin: 0 0 3.25rem;
  color: var(--paper-muted);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  gap: 1rem;
  padding-bottom: 0.35rem;
  color: var(--paper);
}

.observatory {
  position: relative;
  min-height: 44rem;
  overflow: hidden;
  background: var(--ink-soft);
}

.sky {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.coordinates path {
  fill: none;
  stroke: rgba(236, 233, 223, 0.075);
  stroke-width: 1;
}

.solar-arc {
  fill: none;
  stroke: rgba(255, 228, 163, 0.7);
  stroke-dasharray: 2 7;
  stroke-width: 1.35;
  transition: d 650ms cubic-bezier(.2, .75, .2, 1);
}

.solar-arc--ghost {
  stroke: rgba(236, 233, 223, 0.13);
  stroke-dasharray: 1 11;
}

.sun-halo,
.sun {
  transition: cy 650ms cubic-bezier(.2, .75, .2, 1), opacity 450ms ease;
}

.sun {
  fill: var(--sun);
  filter: drop-shadow(0 0 14px rgba(255, 228, 163, 0.8));
}

.horizon {
  fill: none;
  stroke: rgba(236, 233, 223, 0.5);
  stroke-width: 1;
}

.land {
  fill: #090b0f;
}

.axis-label {
  fill: rgba(236, 233, 223, 0.43);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.observatory-index {
  position: absolute;
  right: clamp(1rem, 2vw, 2.5rem);
  bottom: clamp(1rem, 2vw, 2.5rem);
  left: clamp(1rem, 2vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(11, 14, 19, 0.74);
  border: 1px solid rgba(236, 233, 223, 0.2);
  backdrop-filter: blur(18px);
}

.observatory-index > div {
  padding: 1rem 1.15rem;
  border-right: 1px solid rgba(236, 233, 223, 0.15);
}

.observatory-index > div:last-child {
  border-right: 0;
}

.observatory-index span,
.footer-meta span {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--paper-muted);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.observatory-index strong {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.latitude-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.latitude-ticker > div {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  min-height: 3.5rem;
  color: var(--paper-muted);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: ticker 34s linear infinite;
}

.latitude-ticker i {
  width: 3rem;
  height: 1px;
  background: var(--line-strong);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(7rem, 12vw, 12rem) var(--page-pad);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.7fr) 1.5fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.section-heading h2,
.field-note h2 {
  margin: -0.15em 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.section-heading > div > p,
.field-note__lead {
  max-width: 42rem;
  margin: 0;
  color: var(--paper-muted);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.5;
}

.atlas-panel {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--line-strong);
  background: rgba(17, 23, 33, 0.62);
}

.atlas-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.atlas-panel__head h3 {
  margin: 0.65rem 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
}

.coordinates-readout {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.year-ribbon-wrap {
  padding: clamp(2.5rem, 6vw, 5rem) 0 2rem;
}

.year-ribbon {
  display: grid;
  grid-template-columns: repeat(365, minmax(0, 1fr));
  align-items: end;
  height: clamp(8rem, 19vw, 15rem);
  border-bottom: 1px solid var(--line-strong);
}

.year-day {
  position: relative;
  min-width: 0;
  background: currentColor;
  opacity: 0.78;
  transition: opacity 180ms ease, filter 180ms ease;
}

.year-day.is-selected {
  z-index: 2;
  opacity: 1;
  filter: brightness(1.9);
}

.year-day.is-selected::after {
  position: absolute;
  top: -0.55rem;
  left: 50%;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--paper);
  content: "";
  transform: translateX(-50%);
}

.month-axis {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding-top: 0.75rem;
  color: var(--paper-muted);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-control {
  display: grid;
  grid-template-columns: minmax(12rem, 0.35fr) 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.date-control > span {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.date-control output {
  font-family: var(--display);
  font-size: 1.15rem;
}

input[type="range"] {
  width: 100%;
  height: 1px;
  margin: 0;
  appearance: none;
  background: linear-gradient(to right, var(--ember) var(--range-progress), var(--line-strong) var(--range-progress));
  cursor: ew-resize;
}

input[type="range"]::-webkit-slider-thumb {
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid var(--paper);
  border-radius: 50%;
  appearance: none;
  background: var(--ink);
}

input[type="range"]::-moz-range-thumb {
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: var(--ink);
}

input[type="range"]:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 0.75rem;
}

.daylight-reading {
  display: grid;
  grid-template-columns: minmax(16rem, 0.55fr) 1fr;
  gap: 3rem;
  align-items: end;
  padding-top: 2.4rem;
}

.daylight-number {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.daylight-number sup {
  position: relative;
  top: -0.35em;
  color: var(--paper-muted);
  font-family: var(--sans);
  font-size: 0.18em;
  letter-spacing: 0.05em;
}

.daylight-reading > p:last-child {
  max-width: 27rem;
  margin: 0;
  color: var(--paper-muted);
  font-family: var(--display);
  font-size: 1.15rem;
}

.station-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.station {
  position: relative;
  min-height: 13rem;
  padding: 1.3rem;
  overflow: hidden;
  color: var(--paper-muted);
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.station:hover,
.station:focus-visible,
.station[aria-pressed="true"] {
  color: var(--paper);
  background: rgba(236, 233, 223, 0.045);
}

.station:focus-visible {
  z-index: 2;
  outline: 1px solid var(--sun);
  outline-offset: -1px;
}

.station > span:first-child {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.station strong {
  display: block;
  margin-top: 1rem;
  color: inherit;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}

.station-ribbon {
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  left: 1.3rem;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  align-items: end;
  height: 3.2rem;
  gap: 1px;
}

.station-ribbon i {
  display: block;
  min-height: 1px;
  background: currentColor;
  opacity: 0.58;
}

.field-note {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(4rem, 10vw, 11rem);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.field-note .section-number,
.field-note .field-note__lead {
  color: rgba(11, 14, 19, 0.58);
}

.field-note .section-number {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.field-note__visual {
  position: relative;
  width: min(100%, 38rem);
  aspect-ratio: 1;
  border: 1px solid rgba(11, 14, 19, 0.23);
  border-radius: 50%;
}

.field-note__visual::before,
.field-note__visual::after {
  position: absolute;
  background: rgba(11, 14, 19, 0.18);
  content: "";
}

.field-note__visual::before {
  top: 50%;
  right: -7%;
  left: -7%;
  height: 1px;
}

.field-note__visual::after {
  top: -7%;
  bottom: -7%;
  left: 50%;
  width: 1px;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(11, 14, 19, 0.19);
  border-radius: 50%;
}

.orbit--outer { inset: 11%; }
.orbit--inner { inset: 32%; }

.field-sun {
  position: absolute;
  z-index: 2;
  top: 17%;
  left: 64%;
  width: 10%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 3rem rgba(255, 118, 94, 0.35);
}

.field-note__visual > p {
  position: absolute;
  z-index: 2;
  bottom: 8%;
  left: 50%;
  margin: 0;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  transform: translateX(-50%);
}

.note-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(11, 14, 19, 0.2);
}

.note-columns p {
  margin: 0;
  color: rgba(11, 14, 19, 0.68);
  font-size: 0.82rem;
  line-height: 1.65;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 clamp(5rem, 8vw, 8rem);
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-grid li {
  min-height: 20rem;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-grid li > span {
  color: var(--ember);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.method-grid h3 {
  margin: 6rem 0 1rem;
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 400;
}

.method-grid p {
  max-width: 20rem;
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.83rem;
  line-height: 1.65;
}

.formula {
  max-width: 70rem;
  margin: 0 auto;
  text-align: center;
}

.formula p {
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 3.2rem);
  letter-spacing: -0.02em;
}

.formula p span {
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--line-strong);
}

.formula small {
  color: var(--paper-muted);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: clamp(4rem, 8vw, 7rem) var(--page-pad);
}

.wordmark--footer {
  margin-bottom: 2rem;
}

.site-footer > div:first-child > p {
  max-width: 25rem;
  margin: 0;
  color: var(--paper-muted);
  font-family: var(--display);
  font-size: 1.2rem;
}

.footer-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: end;
  gap: 2rem;
}

.footer-meta p {
  margin: 0;
  font-size: 0.7rem;
}

.noscript {
  position: fixed;
  z-index: 30;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  margin: 0;
  padding: 1rem;
  color: var(--ink);
  text-align: center;
  background: var(--sun);
}

.not-found {
  min-height: 100svh;
  background:
    radial-gradient(circle at 28% 52%, rgba(255, 118, 94, 0.11), transparent 20rem),
    var(--ink);
}

.not-found main {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) 1.2fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
  min-height: 100svh;
  padding: var(--page-pad);
}

.not-found h1 {
  margin: 2rem 0;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.not-found h1 em {
  color: var(--ember);
  font-weight: 400;
}

.not-found main > div:last-child > p:not(.eyebrow) {
  margin: 0 0 3rem;
  color: var(--paper-muted);
  font-family: var(--display);
  font-size: 1.25rem;
}

.not-found__coordinate {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.not-found__coordinate::before,
.not-found__coordinate::after {
  position: absolute;
  background: var(--line-strong);
  content: "";
}

.not-found__coordinate::before {
  top: 50%;
  right: -5%;
  left: -5%;
  height: 1px;
}

.not-found__coordinate::after {
  top: -5%;
  bottom: -5%;
  left: 50%;
  width: 1px;
}

.not-found__coordinate span {
  position: absolute;
  inset: 22%;
  border: 1px dashed var(--line);
  border-radius: 50%;
}

.not-found__coordinate i {
  position: absolute;
  z-index: 2;
  top: 30%;
  left: 63%;
  width: 8%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 2rem rgba(255, 118, 94, 0.45);
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 921px) and (max-width: 1200px) {
  .hero {
    grid-template-columns: minmax(27rem, 0.95fr) minmax(30rem, 1.05fr);
  }

  .hero-copy {
    padding-right: clamp(1.5rem, 3vw, 3rem);
    padding-left: clamp(1.5rem, 3vw, 3rem);
  }

  .hero h1 {
    font-size: clamp(4.8rem, 7.4vw, 6.5rem);
  }
}

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

  .hero-copy {
    min-height: 42rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .observatory {
    min-height: min(78vw, 50rem);
  }

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

  .field-note {
    gap: 5rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 5rem;
  }

  .not-found main {
    grid-template-columns: 1fr;
  }

  .not-found__coordinate {
    width: min(64vw, 20rem);
    margin: 2rem auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    min-height: 38rem;
  }

  .hero h1 {
    font-size: clamp(4.25rem, 21vw, 7rem);
  }

  .observatory {
    min-height: 38rem;
  }

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

  .observatory-index > div:nth-child(2) {
    border-right: 0;
  }

  .observatory-index > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(236, 233, 223, 0.15);
  }

  .section-heading,
  .field-note,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 2.5rem;
  }

  .atlas-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .date-control,
  .daylight-reading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .station-list {
    grid-template-columns: 1fr 1fr;
  }

  .station {
    min-height: 11rem;
  }

  .field-note__visual {
    width: min(82vw, 32rem);
    margin: 1rem auto 3rem;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-grid li {
    min-height: auto;
  }

  .method-grid h3 {
    margin-top: 4rem;
  }

  .footer-meta {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .signal {
    max-width: 6rem;
    text-align: right;
    line-height: 1.25;
  }

  .hero-copy {
    min-height: 35rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    margin-top: 2.5rem;
  }

  .observatory {
    min-height: 33rem;
  }

  .observatory-index > div {
    padding: 0.8rem;
  }

  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-heading h2,
  .field-note h2 {
    font-size: 3.2rem;
  }

  .station-list {
    grid-template-columns: 1fr;
  }

  .month-axis span:nth-child(even) {
    opacity: 0;
  }

  .note-columns,
  .footer-meta {
    grid-template-columns: 1fr;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
