:root {
  --ink: #26241f;
  --muted-ink: #5c574b;
  --paper: #f6f0e3;
  --paper-light: #fffdf7;
  --terracotta: #9d3f28;
  --terracotta-dark: #71301f;
  --olive: #5f643f;
  --line: #d8c8aa;
  --shadow: 0 0.75rem 2rem rgb(49 38 25 / 10%);
  --content-width: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-padding-top: 1rem;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgb(246 240 227 / 96%), rgb(246 240 227 / 96%)),
    repeating-linear-gradient(0deg, transparent 0 6px, rgb(112 84 47 / 3%) 6px 7px);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  line-height: 1.65;
  overflow-wrap: break-word;
}

a {
  color: var(--terracotta-dark);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--terracotta);
}

a:focus-visible {
  border-radius: 0.15rem;
  outline: 0.2rem solid #1c6ea4;
  outline-offset: 0.2rem;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.55rem 0.85rem;
  color: #fff;
  background: var(--ink);
  border-radius: 0.25rem;
  transform: translateY(-200%);
}

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

.event-header {
  position: relative;
  overflow: hidden;
  color: #fffdf8;
  background:
    radial-gradient(circle at 50% -20%, rgb(255 255 255 / 16%), transparent 45%),
    linear-gradient(135deg, #6b2d20, #903b27 52%, #5e291f);
  box-shadow: 0 0.35rem 1.3rem rgb(38 27 21 / 22%);
}

.hero {
  display: grid;
  grid-template-columns: minmax(7rem, 0.55fr) minmax(19rem, 2.4fr) minmax(7rem, 0.55fr);
  align-items: end;
  width: min(100% - 2rem, var(--content-width));
  min-height: 31rem;
  margin-inline: auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 49rem;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2.4rem);
  text-align: center;
}

.hero-copy p {
  margin-block: 0.65rem;
}

.eyebrow {
  font-size: 1.08em;
  letter-spacing: 0.01em;
}

.hero a {
  color: #fff9eb;
  text-decoration-color: rgb(255 249 235 / 75%);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 18ch;
  margin: 0.55rem auto 0.9rem;
  font-size: clamp(2.15rem, 4.8vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-shadow: 0 0.12rem 0.25rem rgb(27 16 12 / 38%);
}

.event-date,
.event-location {
  font-size: clamp(1.08rem, 1rem + 0.45vw, 1.38rem);
  font-weight: 700;
  line-height: 1.45;
}

.direction-link {
  display: inline-block;
  min-width: 7.5rem;
  padding: 0.45rem 1.1rem;
  border: 0.1rem solid rgb(255 255 255 / 75%);
  border-radius: 999px;
  text-decoration: none;
}

.direction-link:hover {
  color: var(--ink);
  background: var(--paper-light);
}

.site-hours {
  font-size: 1.08em;
  font-weight: 700;
}

.archer {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 27rem;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
  filter: sepia(0.25) contrast(1.25);
  opacity: 0.88;
}

.archer-left {
  justify-self: end;
  width: 116%;
  max-width: none;
}

.archer-right {
  justify-self: start;
}

.page-content {
  width: min(100% - 2rem, var(--content-width));
  margin: clamp(1.75rem, 4vw, 3.5rem) auto;
}

.intro-grid,
.schedule-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.panel {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: rgb(255 253 247 / 92%);
  border: 1px solid var(--line);
  border-top: 0.35rem solid var(--olive);
  border-radius: 0.25rem;
  box-shadow: var(--shadow);
}

.intro-grid .panel,
.schedule-grid .panel,
.contacts-grid .panel {
  margin-bottom: 0;
}

.panel h2 {
  margin: 0 0 0.85rem;
  color: var(--terracotta-dark);
  font-size: clamp(1.5rem, 1.34rem + 0.7vw, 2rem);
  line-height: 1.2;
}

.panel h3 {
  margin: 1.4rem 0 0.45rem;
  color: var(--olive);
  font-size: clamp(1.15rem, 1.06rem + 0.4vw, 1.4rem);
  line-height: 1.25;
}

.panel p:first-of-type {
  margin-top: 0;
}

.panel p:last-child,
.panel ul:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0.55rem 0 1rem;
  padding-left: 1.35em;
}

li + li {
  margin-top: 0.55rem;
}

li::marker {
  color: var(--terracotta);
}

.price-list {
  padding: 0;
  list-style: none;
}

.price-list li {
  padding: 0.45rem 0.7rem;
  border-bottom: 1px solid var(--line);
}

.price-list li:first-child {
  border-top: 1px solid var(--line);
}

.registration {
  border-top-color: var(--terracotta);
}

.schedule-grid {
  grid-template-columns: minmax(0, 1.75fr) minmax(16rem, 0.75fr);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.schedule-day + .schedule-day {
  margin-top: 1.6rem;
  padding-top: 0.15rem;
  border-top: 1px solid var(--line);
}

.schedule-day h3 {
  margin-top: 0.9rem;
}

.schedule-day ul {
  margin-bottom: 0;
}

.schedule time {
  font-weight: 700;
  white-space: nowrap;
}

.food {
  align-self: start;
  border-top-color: var(--terracotta);
}

.map-panel {
  padding-bottom: clamp(1.25rem, 3vw, 2.25rem);
}

.site-map {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #756a57;
  box-shadow: 0 0.35rem 1rem rgb(38 27 21 / 18%);
}

.directions {
  scroll-margin-top: 1rem;
}

.contacts-grid {
  margin-bottom: clamp(1.75rem, 4vw, 3.5rem);
}

.contact-wide {
  grid-column: 1 / -1;
}

.site-footer {
  color: #f7f1e6;
  background: #2f2c25;
  border-top: 0.35rem solid var(--terracotta);
}

.footer-inner {
  width: min(100% - 2rem, var(--content-width));
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-inner p {
  max-width: 96ch;
  margin: 0 0 1rem;
}

.footer-inner a {
  color: #ffe1c5;
}

@media (max-width: 54rem) {
  .hero {
    grid-template-columns: minmax(5rem, 0.35fr) minmax(18rem, 2fr) minmax(5rem, 0.35fr);
    min-height: 29rem;
  }

  .archer {
    max-height: 21rem;
    opacity: 0.72;
  }

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

  .schedule-grid .panel {
    margin-bottom: 0;
  }
}

@media (max-width: 38rem) {
  body {
    line-height: 1.58;
  }

  .hero {
    display: block;
    width: min(100% - 1.25rem, var(--content-width));
    min-height: 0;
  }

  .hero-copy {
    padding: 2rem 0.5rem 2.25rem;
  }

  .archer {
    display: none;
  }

  .page-content,
  .footer-inner {
    width: min(100% - 1rem, var(--content-width));
  }

  .panel {
    padding: 1.15rem;
  }

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

  .contact-wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media print {
  :root {
    --ink: #000;
  }

  body {
    background: #fff;
    font-size: 11pt;
  }

  a {
    color: inherit;
    text-decoration: underline;
  }

  .skip-link,
  .archer,
  .event-header {
    color: #000;
    background: #fff;
    box-shadow: none;
    border-bottom: 2px solid #000;
  }

  .hero {
    display: block;
    min-height: 0;
  }

  .hero-copy {
    padding: 1rem 0;
  }

  .hero a {
    color: #000;
  }

  .direction-link {
    border: 1px solid #000;
  }

  .page-content,
  .footer-inner {
    width: 100%;
  }

  .panel {
    break-inside: avoid;
    margin-bottom: 0.75rem;
    padding: 0.8rem;
    background: #fff;
    border: 1px solid #777;
    box-shadow: none;
  }

  .site-footer {
    color: #000;
    background: #fff;
    border-top: 2px solid #000;
  }
}
