:root {
  --blue: #304d91;
  --blue-deep: #263f7a;
  --blue-ink: #1d376f;
  --sky: #69b9eb;
  --sky-soft: #9bd5f5;
  --paper: #f7f6f1;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(143, 202, 240, 0.72);
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --border: rgba(255, 255, 255, 0.2);
  --content: 780px;
  --wide: 940px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(105, 185, 235, 0.12), transparent 24%),
    radial-gradient(circle at 86% 47%, rgba(105, 185, 235, 0.08), transparent 28%),
    var(--blue);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.22;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.018) 0,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 9px
  );
  pointer-events: none;
}

main {
  position: relative;
  overflow: clip;
}

button,
input {
  font: inherit;
}

button,
a,
input,
label {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a,
button,
label {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--sky-soft);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--sky), var(--white));
  box-shadow: 0 0 18px rgba(105, 185, 235, 0.72);
  transform: scaleX(0);
  transform-origin: left center;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1100;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--white);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms var(--ease-out);
}

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

.content {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 58px 0 84px;
  isolation: isolate;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(127, 201, 243, 0.14), transparent 27%),
    linear-gradient(180deg, rgba(28, 55, 116, 0.15), transparent 65%);
}

.hero::after {
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(143, 202, 240, 0.44), transparent);
}

.hero-ring {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(143, 202, 240, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.hero-ring::before,
.hero-ring::after {
  position: absolute;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.hero-ring-one {
  top: 4%;
  left: -250px;
  width: 580px;
  height: 580px;
}

.hero-ring-one::before {
  inset: 48px;
}

.hero-ring-one::after {
  inset: 112px;
}

.hero-ring-two {
  right: -200px;
  bottom: 5%;
  width: 470px;
  height: 470px;
}

.hero-ring-two::before {
  inset: 58px;
}

.hero-ring-two::after {
  inset: 122px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 42px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 38px;
  height: 1px;
  background: var(--sky);
}

.brand-logo {
  width: min(440px, 82vw);
  height: auto;
  margin-bottom: 44px;
  filter: drop-shadow(0 18px 36px rgba(18, 40, 87, 0.28));
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: none;
}

.hero h1 strong {
  color: var(--sky-soft);
  font: inherit;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--sky-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.hero-lead {
  max-width: 690px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-wrap: balance;
}

.countdown {
  width: min(620px, 100%);
  margin-top: 38px;
}

.countdown-label {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.countdown-unit {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.17),
    0 16px 38px rgba(19, 41, 88, 0.16);
  backdrop-filter: blur(12px);
}

.countdown-unit strong {
  font-size: clamp(29px, 5vw, 42px);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.countdown-unit span {
  margin-top: 8px;
  color: var(--sky-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-cta {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--blue-ink);
  background: linear-gradient(135deg, var(--white), var(--sky-soft));
  box-shadow: 0 16px 40px rgba(18, 40, 87, 0.34);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 240ms var(--ease-spring),
    box-shadow 240ms ease;
}

.hero-cta::after {
  position: absolute;
  top: -60%;
  left: -36%;
  width: 26%;
  height: 220%;
  content: "";
  background: rgba(255, 255, 255, 0.72);
  filter: blur(9px);
  transform: rotate(20deg);
  transition: transform 520ms var(--ease-out);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  box-shadow: 0 20px 48px rgba(18, 40, 87, 0.48);
  transform: translateY(-3px) scale(1.015);
}

.hero-cta:hover::after,
.hero-cta:focus-visible::after {
  transform: translateX(590px) rotate(20deg);
}

.scroll-cue {
  min-height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 24px;
  background: linear-gradient(var(--sky), transparent);
}

.scroll-cue i::after {
  position: absolute;
  bottom: 0;
  left: -2px;
  width: 5px;
  height: 5px;
  border-right: 1px solid var(--sky);
  border-bottom: 1px solid var(--sky);
  content: "";
  transform: rotate(45deg);
}

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

.section-heading {
  margin-bottom: 62px;
  text-align: center;
}

.section-index {
  margin: 0 0 12px !important;
  color: var(--sky) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.2em;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading h2::after {
  display: block;
  width: 52px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  content: "";
  background: var(--sky);
  box-shadow: 0 0 18px rgba(105, 185, 235, 0.48);
}

.section-heading > p:not(.section-index):not(.registration-note) {
  margin: 13px auto 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.program {
  padding-top: 108px;
}

.program::before {
  position: absolute;
  top: 18%;
  right: -18%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(143, 202, 240, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.program-content {
  width: min(var(--wide), calc(100% - 48px));
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.timeline::before {
  position: absolute;
  top: 10px;
  bottom: 2px;
  left: 13px;
  width: 3px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(var(--sky-soft), var(--sky), rgba(105, 185, 235, 0.15));
  box-shadow: 0 0 14px rgba(105, 185, 235, 0.28);
}

.timeline-item {
  position: relative;
  min-height: 120px;
  padding: 4px 24px 48px 70px;
  border-radius: 20px;
  transition:
    background 240ms ease,
    box-shadow 240ms ease;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.timeline-item time {
  display: block;
  margin-bottom: 11px;
  color: var(--sky-soft);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.timeline-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.timeline-item p {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.timeline-item .timeline-subtitle {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.timeline-subtitle span {
  display: block;
}

.timeline-item blockquote {
  max-width: 640px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.48;
}

.timeline-dot {
  position: absolute;
  top: 3px;
  left: 0;
  z-index: 1;
  width: 29px;
  height: 29px;
  border: 4px solid var(--sky);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(105, 185, 235, 0.07);
}

.timeline-item:not(.section) .timeline-dot {
  background: var(--sky);
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.12),
    0 0 0 7px rgba(105, 185, 235, 0.07);
}

.timeline-item.special {
  padding-top: 8px;
}

.timeline-item.special h3 {
  color: var(--sky-soft);
  font-size: 20px;
}

.timeline-end {
  position: absolute;
  bottom: 0;
  left: 12px;
  z-index: 2;
  width: 6px;
  height: 22px;
  background: var(--blue);
}

.venue {
  padding-top: 118px;
}

.venue-content {
  width: min(1040px, calc(100% - 48px));
}

.venue .section-heading {
  margin-bottom: 44px;
}

.venue-photo {
  position: relative;
  margin: 0;
}

.venue-frame {
  position: relative;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background: var(--paper);
  box-shadow:
    0 34px 80px rgba(17, 37, 80, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

.venue-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(36, 65, 126, 0.14);
  pointer-events: none;
}

.venue-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1674 / 941;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}

.venue-photo:hover img {
  transform: scale(1.018);
}

.venue-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.registration {
  padding-top: 130px;
}

.registration-content {
  width: min(820px, calc(100% - 48px));
}

.registration .section-heading {
  margin-bottom: 42px;
}

.registration-note {
  width: fit-content;
  margin: 18px auto 0;
  padding: 10px 16px;
  border: 1px solid rgba(143, 202, 240, 0.25);
  border-radius: 999px;
  color: var(--sky-soft);
  background: rgba(105, 185, 235, 0.07);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.035em;
}

.form-panel {
  position: relative;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(145deg, var(--surface-strong), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.16),
    0 30px 80px rgba(17, 37, 80, 0.26);
  backdrop-filter: blur(16px);
}

.form-panel::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(143, 202, 240, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.guest-form {
  position: relative;
  z-index: 1;
}

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

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label,
.guest-form legend {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.form-field label span,
.guest-form legend span {
  color: var(--sky-soft);
}

.form-field input {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 9px 0 10px;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  caret-color: var(--sky-soft);
  background: transparent;
  font-size: 17px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field input:hover {
  border-color: rgba(255, 255, 255, 0.62);
}

.form-field input:focus {
  border-color: var(--sky-soft);
  box-shadow: 0 10px 18px -18px var(--sky-soft);
}

.guest-form fieldset {
  margin: 35px 0 0;
  padding: 0;
  border: 0;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-field {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 15px;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.radio-field:hover {
  border-color: rgba(143, 202, 240, 0.45);
  color: var(--white);
}

.radio-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.radio-field > span {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 3px solid var(--sky);
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 0 3px var(--blue-deep);
}

.radio-field:has(input:checked) {
  border-color: rgba(143, 202, 240, 0.62);
  color: var(--white);
  background: rgba(105, 185, 235, 0.11);
}

.radio-field input:checked + span {
  background: var(--white);
}

.radio-field input:focus-visible + span {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.guest-form button {
  position: relative;
  min-width: 220px;
  min-height: 52px;
  display: block;
  margin: 38px auto 0;
  padding: 0 28px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: var(--blue-ink);
  background: linear-gradient(135deg, var(--white), var(--sky-soft));
  box-shadow: 0 14px 34px rgba(18, 40, 87, 0.3);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 220ms var(--ease-spring),
    box-shadow 220ms ease,
    opacity 180ms ease;
}

.guest-form button span {
  position: relative;
  z-index: 1;
}

.guest-form button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.7), transparent 75%);
  transform: translateX(-120%);
  transition: transform 620ms var(--ease-out);
}

.guest-form button:hover,
.guest-form button:focus-visible {
  box-shadow: 0 18px 42px rgba(18, 40, 87, 0.46);
  transform: translateY(-2px) scale(1.015);
}

.guest-form button:hover::after,
.guest-form button:focus-visible::after {
  transform: translateX(120%);
}

.guest-form button:disabled {
  cursor: wait;
  opacity: 0.48;
  transform: none;
}

.form-message {
  min-height: 24px;
  margin: 18px 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.form-message.success {
  color: #d4ffe4;
}

.form-message.error {
  color: #ffd9d9;
}

.footer {
  position: relative;
  padding: 100px 0 118px;
  text-align: center;
}

.footer::before {
  display: block;
  width: min(540px, calc(100% - 48px));
  height: 1px;
  margin: 0 auto 72px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(143, 202, 240, 0.42), transparent);
}

.footer-kicker {
  margin: 0 0 24px;
  color: var(--sky);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-statement {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.footer-meta {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.footer-meta span {
  margin: 0 5px;
  color: var(--sky);
}

.reveal-pending {
  opacity: 0;
  transform: translateY(28px) scale(0.992);
  transition:
    opacity 680ms var(--ease-out),
    transform 680ms var(--ease-out);
}

.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ring-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, -12px, 0) scale(1.025);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-enter {
    opacity: 0;
    animation: hero-enter 760ms var(--ease-out) forwards;
  }

  .hero-enter-one {
    animation-delay: 70ms;
  }

  .hero-enter-two {
    animation-delay: 150ms;
  }

  .hero-enter-three {
    animation-delay: 230ms;
  }

  .hero-enter-four {
    animation-delay: 310ms;
  }

  .hero-enter-five {
    animation-delay: 390ms;
  }

  .hero-enter-six {
    animation-delay: 470ms;
  }

  .hero-ring-one {
    animation: ring-drift 12s ease-in-out infinite alternate;
  }

  .hero-ring-two {
    animation: ring-drift 15s ease-in-out 1.5s infinite alternate-reverse;
  }
}

@media (max-width: 720px) {
  .content,
  .program-content,
  .venue-content,
  .registration-content {
    width: min(100% - 32px, var(--content));
  }

  .hero {
    min-height: 100svh;
    padding: 42px 0 68px;
  }

  .hero-ring-one {
    top: -40px;
    left: -330px;
  }

  .hero-ring-two {
    right: -320px;
    bottom: 4%;
  }

  .eyebrow {
    margin-bottom: 32px;
    font-size: 11px;
  }

  .eyebrow span {
    width: 24px;
  }

  .brand-logo {
    width: min(335px, 86vw);
    margin-bottom: 36px;
  }

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

  .hero-meta {
    gap: 9px;
    font-size: 10px;
  }

  .hero-lead {
    margin-top: 27px;
    font-size: 15px;
    line-height: 1.52;
  }

  .countdown {
    margin-top: 30px;
  }

  .countdown-grid {
    gap: 6px;
  }

  .countdown-unit {
    min-height: 76px;
    border-radius: 14px;
  }

  .countdown-unit strong {
    font-size: 27px;
  }

  .countdown-unit span {
    font-size: 8px;
  }

  .hero-cta {
    min-height: 50px;
    margin-top: 30px;
    padding: 0 24px;
    font-size: 12px;
  }

  .section {
    padding: 82px 0;
  }

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

  .section-heading h2 {
    font-size: 26px;
  }

  .section-heading > p:not(.section-index):not(.registration-note) {
    font-size: 15px;
  }

  .program {
    padding-top: 88px;
  }

  .timeline::before {
    left: 10px;
    width: 3px;
  }

  .timeline-item {
    min-height: 106px;
    padding: 2px 8px 40px 48px;
    border-radius: 14px;
  }

  .timeline-dot {
    top: 1px;
    width: 23px;
    height: 23px;
    border-width: 3px;
    box-shadow: 0 0 0 5px rgba(105, 185, 235, 0.07);
  }

  .timeline-item time {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .timeline-item h3,
  .timeline-item.special h3 {
    font-size: 16px;
  }

  .timeline-item p {
    font-size: 15px;
  }

  .timeline-item .timeline-subtitle {
    font-size: 13px;
  }

  .timeline-item blockquote {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.48;
  }

  .timeline-end {
    left: 9px;
  }

  .venue {
    padding-top: 90px;
  }

  .venue-frame {
    border-width: 6px;
    border-radius: 20px;
  }

  .venue-photo figcaption {
    flex-direction: column;
    gap: 5px;
    padding: 14px 8px 0;
    font-size: 10px;
  }

  .registration {
    padding-top: 96px;
  }

  .registration-note {
    max-width: 100%;
    font-size: 11px;
  }

  .form-panel {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .form-field label,
  .guest-form legend {
    font-size: 14px;
  }

  .form-field input {
    font-size: 16px;
  }

  .guest-form button {
    width: 100%;
    min-height: 50px;
  }

  .footer {
    padding: 82px 0 92px;
  }

  .footer::before {
    margin-bottom: 56px;
  }

  .footer-kicker {
    font-size: 11px;
  }

  .footer-statement {
    font-size: 14px;
  }

  .footer-meta {
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .countdown-unit strong {
    font-size: 23px;
  }

  .countdown-unit span {
    letter-spacing: 0.04em;
  }

  .hero-meta {
    letter-spacing: 0.08em;
  }

  .radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .radio-field {
    justify-content: center;
    padding: 0 12px;
  }
}

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

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

  .reveal-pending,
  .reveal-pending.is-visible,
  .hero-enter {
    opacity: 1 !important;
    transform: none !important;
  }

  .venue-photo:hover img,
  .hero-cta:hover,
  .guest-form button:hover {
    transform: none;
  }
}
