:root {
  color-scheme: light dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4ece2;
  color: #2f2119;
}

* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; }
.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(155deg, #f4ece2, #e4d3c1);
}
.panel {
  width: min(100%, 660px);
  padding: clamp(28px, 7vw, 64px);
  background: #fbf7f0;
  border: 1px solid rgba(110, 76, 67, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(47, 33, 25, 0.08);
}
.wordmark, .eyebrow {
  margin: 0 0 12px;
  color: #b63d3d;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
}
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 8vw, 58px);
  line-height: 1.04;
  font-weight: 600;
}
.lede { margin: 22px 0; color: #7a6a5f; font-size: 18px; line-height: 1.55; }
.note { margin: 22px 0 0; color: #7a6a5f; font-size: 14px; line-height: 1.5; }
.primary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: #b63d3d;
  color: white;
  font-weight: 700;
  text-decoration: none;
}
.primary-button:focus-visible { outline: 3px solid #2f2119; outline-offset: 3px; }
.secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(110, 76, 67, 0.2);
  border-radius: 999px;
  background: #efe5d4;
  color: #2f2119;
  font-weight: 700;
  text-decoration: none;
}
.event-panel { max-width: 720px; }
.event-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 28px;
  border-radius: 8px;
  object-fit: cover;
  background: #efe5d4;
}
.event-image[hidden] { display: none; }
.event-date { margin: 18px 0 0; color: #b63d3d; font-size: 15px; font-weight: 700; line-height: 1.5; }
.event-location { margin: 8px 0 0; color: #7a6a5f; font-size: 14px; line-height: 1.5; }
.event-summary { margin-bottom: 14px; color: #2f2119; font-size: 19px; }
.event-body { margin-top: 18px; color: #2f2119; font-size: 16px; line-height: 1.65; white-space: pre-wrap; }
.event-registration-status { margin: 20px 0 0; color: #7a6a5f; font-size: 14px; font-weight: 650; }
.event-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

@media (prefers-color-scheme: dark) {
  :root { background: #05070a; color: #e2e8f0; }
  .page { background: linear-gradient(155deg, #05070a, #101013); }
  .panel { background: #090c11; border-color: rgba(255,255,255,0.12); box-shadow: none; }
  .wordmark, .eyebrow, .event-date { color: #c5a059; }
  .lede, .note, .event-location, .event-registration-status { color: #8b96a8; }
  .event-summary, .event-body { color: #e2e8f0; }
  .primary-button { background: #c5a059; color: #05070a; }
  .secondary-button { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: #e2e8f0; }
}
