@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&family=Parisienne&display=swap');

:root {
  --ink: #182233;
  --ink-soft: #526174;
  --sage: #80988c;
  --sage-dark: #526c62;
  --mist: #e7efed;
  --paper: #fbfaf6;
  --paper-warm: #f2eee5;
  --rose: #b98982;
  --rose-soft: #e7d4cd;
  --brown: #6a5046;
  --line: rgba(24, 34, 51, 0.16);
  --shadow: 0 24px 70px rgba(40, 55, 64, 0.13);
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Parisienne', 'Brush Script MT', cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 11% 17%, rgba(224, 190, 175, 0.26), transparent 22rem),
    radial-gradient(circle at 90% 34%, rgba(188, 208, 197, 0.42), transparent 28rem),
    linear-gradient(135deg, #e7efed 0%, #eef0ee 48%, #e8edef 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  display: block;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(83, 111, 100, 0.08);
  border-radius: 48% 52% 63% 37%;
  content: '';
  pointer-events: none;
}

body::before {
  top: -20rem;
  left: -19rem;
  transform: rotate(34deg);
}

body::after {
  right: -22rem;
  bottom: -19rem;
  transform: rotate(-25deg);
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

button,
input,
textarea,
a {
  outline-offset: 4px;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}

button {
  cursor: pointer;
}

.page-shell {
  width: min(100% - 48px, 1380px);
  margin: 0 auto;
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 16px;
  height: 130px;
  border-right: 1px solid rgba(82, 108, 98, 0.2);
  transform-origin: bottom center;
  pointer-events: none;
}

.ambient::before,
.ambient::after {
  position: absolute;
  width: 48px;
  height: 16px;
  border: 1px solid rgba(82, 108, 98, 0.16);
  border-radius: 100% 0 100% 0;
  content: '';
}

.ambient::before {
  right: 0;
  top: 35px;
  transform: rotate(-34deg);
}

.ambient::after {
  left: 0;
  top: 74px;
  transform: rotate(35deg) scaleX(-1);
}

.ambient--one {
  top: 18rem;
  left: 2%;
  transform: rotate(-38deg);
}

.ambient--two {
  top: 46rem;
  right: 4%;
  transform: rotate(28deg) scale(0.8);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 98px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.wordmark i {
  color: var(--rose);
  font-family: var(--font-script);
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 34px;
}

.topbar-kicker,
.eyebrow,
.detail-label,
.aside-note,
.privacy-note {
  color: var(--sage-dark);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.topbar-kicker {
  color: var(--ink-soft);
  font-size: 0.62rem;
}

.faire-part-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.icon {
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.faire-part-link .icon,
.text-link .icon {
  width: 16px;
  height: 16px;
  color: var(--rose);
  transition: transform 180ms ease;
}

.faire-part-link:hover .icon,
.text-link:hover .icon {
  transform: translate(3px, -3px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: center;
  min-height: 700px;
  padding: 86px 4% 118px;
}

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

.eyebrow {
  margin: 0 0 19px;
}

.hero h1 {
  max-width: 800px;
  margin: 0 0 20px;
  font-family: var(--font-script);
  font-size: clamp(4.9rem, 9.5vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.hero h1 span {
  display: inline-block;
  margin: 0 0.05em;
  color: var(--rose);
  font-family: var(--font-script);
  font-size: 0.8em;
  font-style: italic;
  font-weight: 400;
  vertical-align: 0em;
}

.hero-lede {
  max-width: 480px;
  margin: 0 0 42px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.event-details {
  display: flex;
  gap: 0;
  max-width: 540px;
  margin-bottom: 38px;
}

.event-detail {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 3px;
  padding: 0 34px;
  border-left: 1px solid var(--line);
}

.event-detail:first-child {
  padding-left: 0;
  border-left: 0;
}

.detail-label {
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 0.61rem;
}

.event-detail strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.05;
}

.event-detail > span:last-child {
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.venue-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  padding: 15px 19px 15px 13px;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.venue-link:hover {
  border-color: rgba(106, 80, 70, 0.42);
  background: rgba(251, 250, 246, 0.42);
  transform: translateY(-2px);
}

.venue-pin {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rose-soft);
}

.venue-pin svg {
  width: 17px;
  fill: none;
  stroke: var(--brown);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.venue-link > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.venue-link strong {
  font-size: 0.85rem;
}

.venue-link small {
  overflow-wrap: anywhere;
  color: var(--ink-soft);
  font-size: 0.71rem;
}

.venue-arrow {
  width: 16px;
  height: 16px;
  margin-left: 14px;
  color: var(--rose);
}

.invitation-card {
  position: relative;
  justify-self: center;
  width: min(100%, 440px);
  aspect-ratio: 1240 / 1748;
  padding: 16px;
  background: rgba(251, 250, 246, 0.58);
  box-shadow: var(--shadow);
  transform: rotate(1.1deg);
}

.invitation-card::before {
  position: absolute;
  inset: -13px 24px 22px -19px;
  z-index: -1;
  border: 1px solid rgba(106, 80, 70, 0.15);
  content: '';
  transform: rotate(-4deg);
}

.card-frame {
  position: relative;
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(106, 80, 70, 0.45);
  background: linear-gradient(155deg, #fdfcf8 0%, #f7f3ec 100%);
}

.invitation-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.rsvp-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 106px max(24px, calc((100vw - 1250px) / 2)) 124px;
  background: rgba(251, 250, 246, 0.74);
  border-top: 1px solid rgba(24, 34, 51, 0.08);
}

.rsvp-section::before {
  position: absolute;
  top: 0;
  right: 11%;
  width: 1px;
  height: 86px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  content: '';
}

.section-heading {
  max-width: 710px;
  margin: 0 auto 75px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 15px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.section-heading > p:last-child {
  max-width: 470px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.rsvp-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 720px);
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
  max-width: 1060px;
  min-width: 0;
  margin: 0 auto;
}

.rsvp-aside {
  position: sticky;
  top: 26px;
  padding-top: 4px;
}

.aside-mark {
  display: block;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 6.6rem;
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.aside-note {
  max-width: 120px;
  margin: 19px 0 25px;
  color: var(--ink);
  font-size: 0.63rem;
  line-height: 1.5;
}

.aside-plus-one {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.aside-line {
  display: block;
  width: 52px;
  height: 1px;
  margin-bottom: 22px;
  background: var(--rose);
}

.aside-small {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.97rem;
  line-height: 1.3;
}

.aside-small strong {
  color: var(--brown);
  font-weight: 600;
}

.form-wrap {
  min-width: 0;
}

.rsvp-form {
  min-width: 0;
  width: 100%;
}

.form-block {
  min-width: 0;
  margin: 0;
  padding: 0 0 37px;
  border: 0;
}

.form-block + .form-block,
.attending-fields > .form-block {
  padding-top: 20px;
}

.form-block legend {
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.1;
}

.form-block legend b,
.field-label b {
  color: var(--rose);
  font-family: var(--font-body);
  font-size: 0.8em;
}

.field-help {
  margin: 8px 0 12px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.attendance-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 16px;
}

.attendance-option {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  gap: 13px;
  align-items: center;
  min-height: 120px;
  padding: 18px 17px;
  border: 1px solid var(--line);
  background: rgba(231, 239, 237, 0.36);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.attendance-option:hover {
  border-color: rgba(106, 80, 70, 0.45);
  transform: translateY(-2px);
}

.attendance-option:has(input:checked),
.attendance-option.is-selected {
  border-color: var(--brown);
  background: rgba(231, 212, 205, 0.46);
  box-shadow: 0 9px 25px rgba(106, 80, 70, 0.08);
}

.attendance-option input,
.choice-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.option-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(106, 80, 70, 0.34);
  border-radius: 50%;
  color: var(--brown);
}

.option-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.option-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.option-copy strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.05;
}

.option-copy small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.option-arrow {
  display: block;
  width: 16px;
  height: 16px;
  align-self: start;
  color: var(--rose);
}

.identity-block[hidden],
.attending-fields[hidden],
.success-panel[hidden],
.form-feedback[hidden] {
  display: none;
}

.identity-block {
  animation: reveal 420ms ease both;
}

.plus-one-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: fit-content;
  margin-top: 30px;
  color: var(--ink);
  cursor: pointer;
}

.plus-one-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkbox-mark {
  display: grid;
  flex: 0 0 19px;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  border: 1px solid var(--ink-soft);
  background: transparent;
  transition: border-color 180ms ease, background 180ms ease;
}

.plus-one-toggle input:checked + .checkbox-mark {
  border-color: var(--brown);
  background: var(--brown);
}

.checkbox-icon {
  display: block;
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--paper);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  opacity: 0;
  transition: opacity 180ms ease;
}

.plus-one-toggle input:checked + .checkbox-mark .checkbox-icon {
  opacity: 1;
}

.plus-one-toggle > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.plus-one-toggle strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.1;
}

.plus-one-toggle small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.plus-one-fields {
  padding-top: 37px;
  animation: reveal 420ms ease both;
}

.plus-one-fields[hidden] {
  display: none;
}

.plus-one-identity {
  margin-top: 5px;
}

.plus-one-choice {
  margin-top: 32px;
}

.plus-one-choice legend {
  font-size: 1.22rem;
}

.plus-one-allergies {
  margin-top: 30px;
}

.block-heading {
  display: flex;
  gap: 17px;
  align-items: flex-start;
}

.block-number {
  display: grid;
  flex: 0 0 32px;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  color: var(--rose);
  font-size: 0.65rem;
  font-weight: 700;
}

.block-heading h3 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.block-heading .field-help {
  margin-bottom: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
  margin-top: 5px;
}

.field-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-label small {
  color: var(--ink-soft);
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.field-label input,
.field-label textarea {
  width: 100%;
  padding: 13px 0 11px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field-label textarea {
  min-height: 79px;
  resize: vertical;
  line-height: 1.5;
}

.field-label input:focus,
.field-label textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 1px 0 var(--brown);
}

.field-label input::placeholder,
.field-label textarea::placeholder {
  color: rgba(82, 97, 116, 0.58);
}

.choice-block legend {
  font-size: 1.22rem;
}

.choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 14px;
}

.choice-list--stacked {
  flex-direction: column;
}

.choice-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  min-height: 44px;
  padding: 9px 15px 9px 11px;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.82rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.choice-list--stacked .choice-option {
  width: 100%;
}

.choice-option:hover,
.choice-option:has(input:checked) {
  border-color: var(--brown);
  background: rgba(231, 212, 205, 0.36);
}

.choice-dot {
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid var(--ink-soft);
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 0 3px var(--paper);
}

.choice-option:has(input:checked) .choice-dot {
  border-color: var(--brown);
  background: var(--rose);
}

.allergies-block {
  border-bottom: 0;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 36px;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-width: 250px;
  padding: 16px 19px 16px 22px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.submit-button:hover {
  color: var(--ink);
  background: transparent;
  transform: translateY(-2px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.submit-button .submit-arrow {
  width: 20px;
  height: 16px;
  color: var(--rose-soft);
  transition: transform 180ms ease;
}

.submit-button:hover .submit-arrow {
  transform: translateX(4px);
}

.privacy-note {
  max-width: 380px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: none;
}

.form-feedback {
  margin: 24px 0 0;
  padding: 12px 14px;
  border-left: 2px solid var(--rose);
  color: var(--brown);
  background: rgba(231, 212, 205, 0.32);
  font-size: 0.8rem;
}

.success-panel {
  padding: 65px 35px;
  border: 1px solid var(--line);
  background: rgba(231, 239, 237, 0.52);
  text-align: center;
  animation: reveal 450ms ease both;
}

.success-symbol {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: var(--rose);
}

.success-panel .eyebrow {
  margin-bottom: 13px;
}

.success-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}

.success-panel p:not(.eyebrow) {
  max-width: 390px;
  margin: 0 auto 24px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 29px 4%;
  color: var(--ink-soft);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer span:first-child {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0;
  text-transform: none;
}

.footer i {
  color: var(--rose);
  font-family: var(--font-script);
  font-size: 1.3rem;
  font-style: normal;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(9px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.7fr);
    gap: 45px;
    padding-right: 0;
    padding-left: 0;
  }

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

  .rsvp-layout {
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 45px;
  }

  .aside-mark {
    font-size: 5.4rem;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 32px, 520px);
  }

  .topbar {
    min-height: 78px;
  }

  .topbar-meta {
    gap: 0;
  }

  .topbar-kicker {
    display: none;
  }

  .faire-part-link {
    font-size: 0.62rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 68px;
    min-height: 0;
    padding: 72px 0 100px;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .hero-lede {
    margin-bottom: 35px;
    font-size: 0.93rem;
  }

  .event-details {
    margin-bottom: 30px;
  }

  .event-detail {
    padding: 0 16px;
  }

  .event-detail:first-child {
    padding-left: 0;
  }

  .event-detail strong {
    font-size: 1.28rem;
  }

  .event-detail > span:last-child {
    font-size: 0.67rem;
  }

  .venue-link {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
    padding-right: 12px;
  }

  .venue-link small {
    font-size: 0.65rem;
  }

  .venue-arrow {
    margin-left: auto;
  }

  .invitation-card {
    width: min(85%, 390px);
    margin: 0 auto 16px;
    transform: none;
  }

  .rsvp-section {
    width: 100%;
    margin-left: 0;
    padding-top: 78px;
    padding-bottom: 84px;
  }

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

  .section-heading h2 {
    font-size: clamp(2.9rem, 13vw, 4.6rem);
  }

  .rsvp-layout {
    display: block;
  }

  .rsvp-aside {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 43px;
  }

  .aside-mark {
    font-size: 4.3rem;
  }

  .aside-note {
    margin: 0;
  }

  .aside-line {
    width: 1px;
    height: 35px;
    margin: 0 1px 0 2px;
  }

  .aside-small {
    font-size: 0.83rem;
  }

  .attendance-options,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .attendance-option {
    min-height: 100px;
  }

  .form-block legend {
    font-size: 1.4rem;
  }

  .choice-list:not(.choice-list--stacked) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .choice-list:not(.choice-list--stacked) .choice-option {
    justify-content: center;
    padding-right: 8px;
    padding-left: 8px;
  }

  .choice-list:not(.choice-list--stacked) .choice-option span:last-child {
    font-size: 0.78rem;
  }

  .choice-list--stacked .choice-option {
    font-size: 0.76rem;
  }

  .footer {
    flex-direction: column;
    gap: 11px;
    padding: 25px 0 31px;
  }
}

@media (max-width: 390px) {
  .page-shell {
    width: min(100% - 24px, 520px);
  }

  .hero {
    padding-top: 59px;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .event-detail strong {
    font-size: 1.14rem;
  }

  .event-detail > span:last-child {
    font-size: 0.61rem;
  }

  .rsvp-aside {
    gap: 11px;
  }

  .aside-small {
    font-size: 0.75rem;
  }

  .choice-list:not(.choice-list--stacked) .choice-option {
    gap: 7px;
    padding-right: 5px;
    padding-left: 5px;
  }

  .choice-list:not(.choice-list--stacked) .choice-option span:last-child {
    font-size: 0.7rem;
  }
}

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