:root {
  --night: #071b24;
  --deep: #0d2b35;
  --water: #466d74;
  --foam: #e7eeea;
  --mist: #c9d7d5;
  --horizon: #d58b67;
  --signal: #cbd67c;
  --ink: #10252b;
  --line-dark: rgba(231, 238, 234, 0.22);
  --line-light: rgba(16, 37, 43, 0.2);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --mono: "SFMono-Regular", "Cascadia Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--foam);
  color: var(--ink);
  font-family: var(--mono);
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font-family: var(--mono);
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--signal);
  color: var(--night);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--foam);
}

.site-header .wordmark {
  width: max-content;
  font: 400 22px/1 var(--serif);
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: clamp(18px, 3vw, 46px);
}

.site-header nav a,
.site-header > p {
  margin: 0;
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a {
  padding: 12px 0;
}

.site-header nav a:hover {
  color: var(--signal);
}

.site-header > p {
  justify-self: end;
}

.hero {
  position: relative;
  min-height: min(940px, 92svh);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 5vw, 80px) 88px;
  background: var(--night);
  color: var(--foam);
  isolation: isolate;
}

.current-field,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.current-field {
  z-index: -2;
  opacity: 0.82;
}

.hero-grid {
  z-index: -1;
  background-image:
    linear-gradient(rgba(231, 238, 234, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 238, 234, 0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 82%, transparent);
}

.hero-copy {
  align-self: center;
  max-width: 900px;
}

.kicker,
.section-label p,
.hero-reading,
.hero-next,
.cycle-notes,
.timeline p,
.place-facts,
.rsvp-form label,
.rsvp-form legend {
  font-size: 10px;
  text-transform: uppercase;
}

.kicker {
  margin: 0;
  color: var(--signal);
}

.hero h1 {
  margin: 44px 0 38px;
  font: 400 146px/0.68 var(--serif);
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 i {
  display: block;
  width: max-content;
  margin: 0.16em 0 0.1em 36%;
  color: var(--horizon);
  font-size: 0.28em;
  font-weight: 400;
}

.hero-lead {
  max-width: 410px;
  margin: 0 0 0 38%;
  color: var(--mist);
  font: italic 400 25px/1.35 var(--serif);
}

.hero-moon {
  position: relative;
  justify-self: end;
  width: min(29vw, 390px);
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  animation: slow-turn 36s linear infinite;
}

.hero-moon::before,
.hero-moon::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.hero-moon::before {
  inset: 14%;
}

.hero-moon::after {
  inset: 31%;
}

.moon {
  position: absolute;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid var(--mist);
  border-radius: 50%;
  background: var(--foam);
  box-shadow: inset 12px 0 0 var(--night);
}

.moon-one {
  top: -19px;
  left: calc(50% - 19px);
}

.moon-two {
  top: calc(50% - 19px);
  right: -19px;
  box-shadow: none;
}

.moon-three {
  bottom: -19px;
  left: calc(50% - 19px);
  box-shadow: inset -12px 0 0 var(--night);
}

.moon-four {
  top: calc(50% - 19px);
  left: -19px;
  background: var(--night);
  box-shadow: none;
}

.hero-moon p {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 7px;
  margin: 0;
  text-align: center;
  animation: slow-turn-reverse 36s linear infinite;
}

.hero-moon strong {
  color: var(--signal);
  font: 400 44px/1 var(--serif);
}

.hero-moon p {
  color: var(--mist);
  font-size: 9px;
  text-transform: uppercase;
}

.hero-reading {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: 38px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px 22px;
  color: var(--mist);
}

.hero-reading strong {
  grid-column: 1;
  margin-top: 8px;
  color: var(--foam);
  font: 400 28px/1 var(--serif);
}

.hero-reading small {
  grid-column: 2;
  align-self: end;
  color: var(--horizon);
  font-size: 8px;
}

.hero-next {
  position: absolute;
  left: clamp(20px, 5vw, 80px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.hero-next b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--signal);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--water);
}

.section-label span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
}

.section-label p {
  margin: 0;
}

.section-label-light {
  color: var(--signal);
}

.invitation {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.55fr 1.3fr 0.8fr;
  gap: 5vw;
  align-items: center;
  padding: clamp(86px, 11vw, 170px) clamp(20px, 6vw, 100px);
  background: var(--foam);
}

.invitation > .section-label {
  align-self: start;
}

.invitation h2,
.cycle h2,
.program h2,
.place h2,
.dress h2,
.rsvp h2 {
  margin: 0;
  font: 400 92px/0.88 var(--serif);
  letter-spacing: 0;
}

.invitation-copy .kicker {
  margin-bottom: 30px;
  color: var(--horizon);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  text-transform: none;
}

.letter {
  align-self: end;
  padding-bottom: 12px;
  color: rgba(16, 37, 43, 0.72);
  font: 400 14px/1.8 var(--mono);
}

.letter p {
  margin: 0 0 22px;
}

.letter .signature {
  color: var(--water);
  font: italic 400 22px/1 var(--serif);
}

.cycle {
  padding: clamp(86px, 10vw, 150px) clamp(20px, 6vw, 100px);
  background: var(--deep);
  color: var(--foam);
}

.cycle-heading {
  display: grid;
  grid-template-columns: 0.6fr 1fr 0.7fr;
  gap: 5vw;
  align-items: end;
}

.cycle-heading > p {
  max-width: 390px;
  margin: 0;
  color: var(--mist);
  font-size: 12px;
  line-height: 1.8;
}

.cycle-stage {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(220px, 0.45fr);
  gap: 8vw;
  align-items: center;
  max-width: 1180px;
  margin: 110px auto 0;
}

.tide-dial {
  position: relative;
  width: min(58vw, 690px);
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.tide-dial::before,
.tide-dial::after,
.dial-orbits span {
  content: "";
  position: absolute;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  pointer-events: none;
}

.tide-dial::before {
  inset: 8%;
}

.tide-dial::after {
  inset: 22%;
}

.dial-orbits span:first-child {
  inset: 34%;
}

.dial-orbits span:nth-child(2) {
  inset: 47%;
  background: var(--signal);
  border: 0;
}

.dial-moon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 26px;
  aspect-ratio: 1;
  margin: -13px;
  border-radius: 50%;
  background: var(--foam);
  box-shadow: inset 9px 0 0 var(--deep);
  transform: rotate(var(--angle)) translateY(max(-310px, -26vw));
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dial-reading {
  position: absolute;
  inset: 34%;
  display: grid;
  place-content: center;
  text-align: center;
}

.dial-reading p,
.dial-reading span {
  margin: 0;
  color: var(--mist);
  font-size: 9px;
  line-height: 1.45;
  text-transform: uppercase;
}

.dial-reading strong {
  margin: 9px 0;
  color: var(--signal);
  font: 400 48px/1 var(--serif);
}

.phase-point {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 82px;
  min-height: 58px;
  padding: 9px;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: var(--deep);
  color: var(--mist);
  cursor: pointer;
  text-align: center;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.phase-point span {
  font-size: 9px;
}

.phase-point strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.phase-point:hover,
.phase-point[aria-pressed="true"] {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--night);
}

.phase-point-one {
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.phase-point-two {
  top: 50%;
  right: -41px;
  transform: translateY(-50%);
}

.phase-point-three {
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.phase-point-four {
  top: 50%;
  left: -41px;
  transform: translateY(-50%);
}

.cycle-notes {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.cycle-notes div {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.cycle-notes dt {
  margin-bottom: 9px;
  color: var(--horizon);
  font-size: 9px;
}

.cycle-notes dd {
  margin: 0;
  color: var(--foam);
  font: 400 22px/1.2 var(--serif);
}

.program {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  gap: 8vw;
  padding: clamp(86px, 11vw, 170px) clamp(20px, 6vw, 100px);
  background: var(--mist);
}

.program-intro {
  align-self: start;
  position: sticky;
  top: 50px;
}

.program-intro h2 {
  margin: 48px 0 40px;
}

.program-intro > p {
  max-width: 330px;
  color: rgba(16, 37, 43, 0.68);
  font-size: 12px;
  line-height: 1.8;
}

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

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 104px;
  width: 1px;
  background: var(--water);
}

.timeline li {
  min-height: 220px;
  display: grid;
  grid-template-columns: 82px 44px 1fr;
  gap: 0;
  align-items: start;
  padding: 18px 0 64px;
  border-top: 1px solid var(--line-light);
}

.timeline time {
  color: var(--water);
  font: 400 24px/1 var(--serif);
}

.timeline-mark {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: 13px;
  height: 13px;
  border: 3px solid var(--mist);
  border-radius: 50%;
  background: var(--horizon);
  box-shadow: 0 0 0 1px var(--water);
}

.timeline p {
  margin: 0 0 17px;
  color: var(--water);
}

.timeline h3 {
  margin: 0 0 16px;
  font: 400 48px/1 var(--serif);
}

.timeline li div > span {
  display: block;
  max-width: 440px;
  color: rgba(16, 37, 43, 0.68);
  font-size: 12px;
  line-height: 1.7;
}

.place {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--night);
  color: var(--foam);
}

.place-chart {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  background-image:
    linear-gradient(rgba(231, 238, 234, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 238, 234, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
}

.chart-axis {
  position: absolute;
  background: var(--water);
}

.chart-axis-x {
  top: 50%;
  right: 7%;
  left: 7%;
  height: 1px;
}

.chart-axis-y {
  top: 7%;
  bottom: 7%;
  left: 50%;
  width: 1px;
}

.chart-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--water);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.chart-ring-one {
  width: min(62%, 430px);
  aspect-ratio: 1;
}

.chart-ring-two {
  width: min(35%, 240px);
  aspect-ratio: 1;
}

.chart-point {
  position: absolute;
  top: 39%;
  left: 58%;
  width: 48px;
  height: 48px;
  border: 1px solid var(--signal);
  border-radius: 50%;
  animation: point-pulse 2.4s ease-in-out infinite;
}

.chart-point span {
  position: absolute;
  inset: 17px;
  border-radius: 50%;
  background: var(--horizon);
}

.place-chart > p {
  position: absolute;
  right: 7%;
  bottom: 6%;
  margin: 0;
  color: var(--signal);
  font-size: 10px;
  line-height: 1.7;
  text-align: right;
}

.place-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 150px);
}

.place-copy h2 {
  margin: 62px 0 42px;
}

.place-copy > p {
  max-width: 470px;
  margin: 0;
  color: var(--mist);
  font-size: 13px;
  line-height: 1.8;
}

.place-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.place-facts p {
  min-width: 0;
  margin: 0;
  padding: 22px 12px 22px 0;
  color: var(--foam);
}

.place-facts p + p {
  padding-left: 12px;
  border-left: 1px solid var(--line-dark);
}

.place-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--horizon);
  font-size: 8px;
}

.dress {
  display: grid;
  grid-template-columns: 0.45fr 0.85fr 1.15fr;
  gap: 5vw;
  align-items: center;
  padding: clamp(86px, 10vw, 150px) clamp(20px, 6vw, 100px);
  background: var(--foam);
}

.dress > div:nth-child(2) > p {
  max-width: 430px;
  margin: 34px 0 0;
  color: rgba(16, 37, 43, 0.68);
  font-size: 12px;
  line-height: 1.8;
}

.spectrum {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 360px;
}

.spectrum span {
  display: flex;
  align-items: flex-end;
  min-width: 0;
  padding: 12px;
  background: var(--tone);
}

.spectrum i {
  writing-mode: vertical-rl;
  color: var(--night);
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.spectrum span:first-child i,
.spectrum span:nth-child(2) i {
  color: var(--foam);
}

.rsvp {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
  padding: clamp(86px, 10vw, 150px) clamp(20px, 6vw, 100px);
  background: var(--deep);
  color: var(--foam);
}

.rsvp-copy h2 {
  margin: 58px 0 38px;
}

.rsvp-copy > p {
  max-width: 380px;
  color: var(--mist);
  font-size: 12px;
  line-height: 1.8;
}

.rsvp-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
  align-self: start;
  padding-top: 8px;
}

.field {
  display: grid;
  gap: 9px;
}

.field-wide,
.rsvp-form fieldset,
.rsvp-form button,
.form-status {
  grid-column: 1 / -1;
}

.rsvp-form label,
.rsvp-form legend {
  color: var(--signal);
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(231, 238, 234, 0.38);
  border-radius: 0;
  background: transparent;
  color: var(--foam);
  font-size: 13px;
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
  border-bottom-color: var(--signal);
}

.rsvp-form select {
  color-scheme: dark;
}

.rsvp-form textarea {
  resize: vertical;
}

.rsvp-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.rsvp-form legend {
  margin-bottom: 12px;
}

.choice {
  position: relative;
  display: block;
  flex: 1 1 230px;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line-dark);
  color: var(--mist);
  cursor: pointer;
  text-align: center;
}

.choice input:checked + span {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--night);
}

.choice input:focus-visible + span {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.rsvp-form button {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--signal);
  border-radius: 0;
  background: var(--signal);
  color: var(--night);
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
}

.rsvp-form button:hover {
  background: var(--foam);
  border-color: var(--foam);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--horizon);
  font-size: 11px;
  line-height: 1.5;
}

footer {
  min-height: 140px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 30px clamp(20px, 6vw, 100px);
  border-top: 1px solid var(--line-dark);
  background: var(--night);
  color: var(--mist);
}

footer a {
  font: 400 22px/1 var(--serif);
  text-decoration: none;
}

footer p,
footer span {
  margin: 0;
  font-size: 9px;
  text-transform: uppercase;
}

footer span {
  justify-self: end;
  color: var(--horizon);
}

.js:not(.is-static-render) .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js:not(.is-static-render) .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes slow-turn {
  to { transform: rotate(360deg); }
}

@keyframes slow-turn-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes point-pulse {
  50% { transform: scale(1.18); opacity: 0.62; }
}

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

  .invitation h2,
  .cycle h2,
  .program h2,
  .place h2,
  .dress h2,
  .rsvp h2 {
    font-size: 76px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 64px;
    padding-inline: 18px;
  }

  .site-header nav {
    display: none;
  }

  .site-header > p {
    font-size: 9px;
  }

  .hero {
    min-height: max(720px, 91svh);
    grid-template-columns: 1fr;
    align-content: center;
    padding: 100px 18px 88px;
  }

  .hero h1 {
    margin: 34px 0;
    font-size: 84px;
  }

  .hero h1 i {
    margin-left: 42%;
  }

  .hero-lead {
    max-width: 260px;
    margin-left: 32%;
    font-size: 18px;
  }

  .hero-moon {
    position: absolute;
    top: 112px;
    right: -66px;
    width: 180px;
    opacity: 0.75;
  }

  .hero-moon strong {
    font-size: 26px;
  }

  .hero-reading {
    display: none;
  }

  .hero-next {
    bottom: 24px;
  }

  .invitation,
  .cycle-heading,
  .program,
  .place,
  .dress,
  .rsvp {
    grid-template-columns: 1fr;
  }

  .invitation,
  .cycle,
  .program,
  .dress,
  .rsvp {
    padding: 74px 18px;
  }

  .invitation {
    min-height: 0;
    gap: 48px;
  }

  .invitation h2,
  .cycle h2,
  .program h2,
  .place h2,
  .dress h2,
  .rsvp h2 {
    font-size: 64px;
  }

  .letter {
    max-width: 520px;
  }

  .cycle-heading {
    gap: 42px;
  }

  .cycle-heading > p {
    max-width: 520px;
  }

  .cycle-stage {
    grid-template-columns: 1fr;
    gap: 86px;
    margin-top: 96px;
  }

  .tide-dial {
    justify-self: center;
    width: min(76vw, 560px);
  }

  .dial-moon {
    transform: rotate(var(--angle)) translateY(max(-250px, -34vw));
  }

  .cycle-notes {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .program {
    gap: 70px;
  }

  .program-intro {
    position: static;
  }

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

  .timeline li {
    grid-template-columns: 66px 36px 1fr;
  }

  .place-chart {
    min-height: 480px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .place-copy {
    padding: 74px 18px;
  }

  .place-facts {
    max-width: 620px;
  }

  .dress {
    gap: 48px;
  }

  .spectrum {
    min-height: 260px;
  }

  .rsvp {
    gap: 62px;
  }
}

@media (max-width: 520px) {
  .hero-grid {
    background-size: 42px 42px;
  }

  .hero .kicker {
    max-width: 220px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: 72px;
  }

  .invitation h2,
  .cycle h2,
  .program h2,
  .place h2,
  .dress h2,
  .rsvp h2 {
    font-size: 54px;
  }

  .tide-dial {
    width: calc(100vw - 82px);
  }

  .dial-moon {
    width: 20px;
    margin: -10px;
    transform: rotate(var(--angle)) translateY(calc(63px - 50vw));
  }

  .dial-reading {
    inset: 31%;
  }

  .dial-reading strong {
    font-size: 28px;
  }

  .phase-point {
    min-width: 66px;
    min-height: 50px;
    padding: 7px 5px;
  }

  .phase-point strong {
    font-size: 14px;
  }

  .phase-point-two {
    right: -32px;
  }

  .phase-point-four {
    left: -32px;
  }

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

  .timeline li {
    min-height: 210px;
    grid-template-columns: 48px 34px 1fr;
    padding-bottom: 50px;
  }

  .timeline time {
    font-size: 18px;
  }

  .timeline h3 {
    font-size: 34px;
  }

  .place-chart {
    min-height: 390px;
  }

  .place-facts {
    grid-template-columns: 1fr;
  }

  .place-facts p + p {
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .spectrum {
    min-height: 230px;
  }

  .spectrum span {
    padding: 8px 5px;
  }

  .rsvp-form {
    grid-template-columns: 1fr;
  }

  .field,
  .rsvp-form fieldset,
  .rsvp-form button,
  .form-status {
    grid-column: 1;
  }

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

  footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  footer span {
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.is-static-render *,
.is-static-render *::before,
.is-static-render *::after {
  animation: none !important;
  transition: none !important;
}
