:root {
  --ink: #232019;
  --muted: #6d6a63;
  --line: #e6e4e0;
  --accent: #a13a5e;
  --page: min(920px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.site-header,
main,
.site-footer {
  width: var(--page);
  margin: 0 auto;
}

.site-header {
  min-height: 64px;
  display: flex;
  align-items: center;
}

.site-name {
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  padding: 52px 0 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.hero > p {
  max-width: 600px;
  margin: 16px 0 0;
  font-size: 1.1rem;
}

.hero-copy-lead {
  white-space: nowrap;
}

.hero-links {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 11px 20px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 150ms ease;
}

.button:hover {
  background: #702640;
  text-decoration: none;
}

.hero img {
  width: 100%;
  height: auto;
  margin-top: 36px;
  display: block;
  border-radius: 8px;
}

.section {
  padding: 56px 0 0;
}

.schedule-times {
  margin: 10px 0 30px;
  color: var(--muted);
}

.schedule-header,
.schedule-row {
  display: grid;
  grid-template-columns: 110px 170px minmax(0, 1fr);
  gap: 22px;
}

.schedule-header {
  padding-bottom: 8px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
}

.schedule-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-date {
  font-family: Fraunces, Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}

.schedule-location,
.schedule-program,
.schedule-detail {
  font-size: 0.9rem;
}

.schedule-program p {
  margin: 0;
}

.schedule-program p + p {
  margin-top: 4px;
}

.schedule-detail {
  margin: 4px 0 0;
  color: var(--muted);
}

.schedule-status {
  margin: 0;
  padding: 14px 0;
}

.etiquette h2,
.faq h2,
.about h2 {
  margin-bottom: 26px;
}

.etiquette-intro,
.etiquette-item,
.etiquette-contact {
  max-width: 700px;
}

.etiquette-intro {
  margin: 0 0 26px;
  color: var(--muted);
}

.etiquette-item + .etiquette-item {
  margin-top: 22px;
}

.etiquette-item h3 {
  font-size: 1.1rem;
}

.etiquette-item p,
.etiquette-item ul {
  margin: 8px 0 0;
}

.etiquette-item ul {
  padding-left: 1.25rem;
}

.etiquette-item li + li {
  margin-top: 6px;
}

.etiquette-contact {
  margin: 26px 0 0;
  color: var(--muted);
}

.faq-item + .faq-item {
  margin-top: 22px;
}

.faq-item h3 {
  font-size: 1.1rem;
}

.faq-item p {
  max-width: 640px;
  margin: 6px 0 0;
  color: var(--muted);
}

.about > p {
  max-width: 700px;
  margin: 0 0 20px;
}

.about-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0;
}

.site-footer {
  padding: 56px 0 36px;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 32px, 600px);
  }

  .hero {
    padding: 40px 0 0;
  }

  .hero img {
    margin-top: 28px;
  }

  .section {
    padding: 44px 0 0;
  }

  .schedule-header {
    display: none;
  }

  .schedule-row {
    display: block;
    padding: 12px 0;
  }

  .schedule-location {
    display: inline;
    margin-left: 0.35em;
  }

  .schedule-location::before {
    content: "· ";
    color: var(--muted);
  }

  .schedule-program {
    margin-top: 2px;
  }
}

@media (max-width: 330px) {
  .hero-copy-lead {
    white-space: normal;
  }

  .hero-copy-break {
    display: none;
  }
}

@media (max-width: 430px) {
  .site-name {
    max-width: 170px;
    line-height: 1.25;
  }
}

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

  .button {
    transition: none;
  }
}
