:root {
  color-scheme: light;
  --background: #f2f0e9;
  --ink: #161616;
  --muted: #6b6962;
  --accent: #3158d8;
  --line: rgba(22, 22, 22, 0.22);
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--background);
}

a {
  color: inherit;
}

.page {
  width: min(100%, 96rem);
  min-height: 100vh;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

.site-header {
  display: flex;
  min-height: 5rem;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordmark,
.header-link {
  text-decoration: none;
}

.wordmark span {
  padding-inline: 0.45rem;
  color: var(--accent);
}

.header-link {
  padding-block: 0.65rem;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease;
}

.header-link:hover,
.header-link:focus-visible {
  border-color: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(47rem, calc(100vh - 5rem));
  padding-block: clamp(4rem, 10vw, 9rem);
  align-items: end;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.label {
  margin: 0 0 1.5rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 2.3rem;
  font-size: clamp(3.4rem, 9vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.88;
}

.intro {
  max-width: 29rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-number {
  position: absolute;
  right: -0.08em;
  bottom: -0.18em;
  margin: 0;
  color: transparent;
  font-size: clamp(17rem, 44vw, 40rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(49, 88, 216, 0.22);
  user-select: none;
}

.schedule {
  display: grid;
  padding-block: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(3rem, 8vw, 8rem);
}

h2 {
  max-width: 9ch;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.events {
  padding: 0;
  margin: 0;
  list-style: none;
}

.event {
  display: grid;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  grid-template-columns: 3.5rem minmax(8.5rem, 0.8fr) minmax(12rem, 1.2fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
}

.event:last-child {
  border-bottom: 1px solid var(--line);
}

.event-index,
.event time,
.event-time {
  margin: 0;
  padding-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-index {
  color: var(--accent);
}

.event time,
.event-time {
  color: var(--muted);
}

.event-details h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.event-details p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.event-details h3 a {
  text-decoration-color: var(--line);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.event-details h3 a:hover,
.event-details h3 a:focus-visible {
  color: var(--accent);
}

footer {
  display: flex;
  min-height: 7rem;
  padding-block: 2rem;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

@media (max-width: 48rem) {
  .hero {
    min-height: 42rem;
    align-items: center;
  }

  .hero-number {
    right: -0.1em;
    bottom: 0;
  }

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

  .event {
    grid-template-columns: 2rem 1fr;
  }

  .event time,
  .event-time {
    grid-column: 2;
  }

  .event-details {
    grid-column: 2;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
