/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Base ───────────────────────────────────────────────── */
body {
  background: #F9F6EB;
  color: #000;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  padding: 80px 24px 100px;
}

a {
  color: #000;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* ─── Layout ─────────────────────────────────────────────── */
.page {
  max-width: 660px;
  margin: 0 auto;
}

/* ─── Header ─────────────────────────────────────────────── */
.introducing {
  text-align: center;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 18px;
}

h1 {
  text-align: center;
  font-size: 36px;
  font-weight: normal;
  letter-spacing: 0.01em;
  margin-bottom: 72px;
}

/* ─── Body ───────────────────────────────────────────────── */
.section {
  margin-bottom: 28px;
}

.tagline {
  text-align: center;
  font-style: italic;
  font-size: 20px;
  margin: 48px 0 52px;
}

/* ─── Join CTA ───────────────────────────────────────────── */
.join {
  text-align: center;
  margin: 56px 0 44px;
}

.join a {
  font-style: italic;
  font-size: 17px;
}

/* ─── Patrons ────────────────────────────────────────────── */
.patrons-heading {
  font-weight: bold;
  margin-bottom: 12px;
}

.patrons-list {
  list-style: none;
  margin-bottom: 36px;
}

.patrons-list li {
  margin-bottom: 2px;
}

.patrons-list li::before {
  content: "- ";
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.7;
}

/* ─── Ripple Canvas ──────────────────────────────────────── */
#ripple-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  will-change: contents;
}
