/* ═══════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════════ */
:root {
  /*
  */
  --cream: #f3f0e7;
  --amber: #eaaa63;
  --copper: #ad8359;
  --slate: #7da1b1;
  --teal: #1f2325;
  --bg: #272d30;
  --bg-card: #2e3538;
  --bg-soft: #383f42;
  /*
  --bg: #1a1a18;
  --bg-soft: #222220;
  --bg-card: #2a2a27; */
  --text: #f3f0e7;
  --text-soft: #d8cfbb;
  --text-mid: #ece9dc;
  --text-muted: #9f9c93;
  --accent: #e39631;
  --accent-bright: #d18233;
  --teal: #7eb8c4;
  --teal-bright: #a8d4de;
  --logo: #d6f6fd;
  --input-bg: rgba(0, 0, 0, 0.15);
  --input-border: rgba(232, 228, 220, 0.15);
  --rule: rgba(232, 228, 220, 0.08);
  --rule-gradient: linear-gradient(90deg, transparent, rgba(232, 228, 220, 0.12), transparent);
}

html.light {
  --bg: #f3f1e7;
  --bg-soft: #ebe7df;
  --bg-card: #efebe2;
  --text: #2a2820;
  --text-soft: #1f1602;
  --text-mid: #5a564e;
  --text-muted: #8a867e;
  /* --accent: #8b7355;
  --accent-bright: #6b5540; */
  --accent: #b87013;
  --accent-bright: #d18233;
  --teal: #156073;
  --teal-bright: #0d4a5a;
  --logo: #0d4a5a;
  --input-bg: rgba(0, 0, 0, 0.04);
  --input-border: rgba(0, 0, 0, 0.12);
  --rule: rgba(42, 40, 32, 0.1);
  --rule-gradient: linear-gradient(90deg, transparent, rgba(42, 40, 32, 0.15), transparent);
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1px solid var(--teal-bright);
  outline-offset: 2px;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family:
    'Plus Jakarta Sans',
    -apple-system,
    sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.7;
  word-spacing: 0.12em;
  transition:
    background-color 0.5s ease,
    color 0.4s ease;
}

strong,
b {
  font-weight: 500;
}

/* Grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

html.light body::after {
  opacity: 0.02;
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease;
}

nav.scrolled {
  background: rgba(39, 45, 48, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
}

html.light nav.scrolled {
  background: var(--bg);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-mark {
  display: inline-block;
  height: 40px;
  width: 40px;
  transition: opacity 0.3s ease;
  background-color: var(--logo);
  opacity: 0.7;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.logo:hover .logo-mark {
  opacity: 0.65;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  opacity: 0.6;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent);
}
.nav-links a:hover::after {
  width: 100%;
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  cursor: default;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 0.5rem 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.45rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: none;
  white-space: nowrap;
  opacity: 0.7;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  opacity: 1;
  color: var(--accent);
  background: rgba(232, 228, 220, 0.04);
}

/* Theme toggle */
.theme-toggle {
  width: 34px;
  height: 34px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  border-color: var(--accent);
  background: rgba(212, 184, 150, 0.08);
}

.theme-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .icon-sun {
  display: none;
}
html.light .theme-toggle .icon-moon {
  display: none;
}
html.light .theme-toggle .icon-sun {
  display: block;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}


/* ═══════════════════════════════════════════════════════════
   PAGE HEADER (interior pages)
   ═══════════════════════════════════════════════════════════ */
.page-header {
  padding: 10rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-header h1 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.page-header p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT SECTION (interior pages)
   ═══════════════════════════════════════════════════════════ */
.content-section {
  padding: clamp(3.5rem, 7vw, 5rem) 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.75vw, 1.85rem);
  color: var(--text);
  margin-bottom: 1.5rem;
}

.content-section p,
.content-section ul {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

.content-section a {
  color: var(--teal-bright);
  text-decoration: underline;
  text-decoration-color: rgba(168, 212, 222, 0.3);
  text-underline-offset: 0.15em;
  transition: text-decoration-color 0.2s;
}
.content-section a:hover {
  text-decoration-color: var(--teal-bright);
}

.content-section strong {
  color: var(--text);
  font-weight: 500;
}

/* Access & Inclusion list */
.access-list {
  margin: 2rem 0 1.5rem;
}

.access-row {
  padding: 1rem 0;
}

.access-row dt {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--teal-bright);
  margin-bottom: 0.4rem;
}

.access-row dd {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin: 0;
}

.access-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 0;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.9rem, 6vw, 4.8rem);
  line-height: 1.1;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1.1rem, 1.75vw, 1.2rem);
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-cta {
  display: inline-block;
  align-self: center;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--text-muted);
  padding: 0.55rem 1.25rem;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-cta:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: auto;
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.stat {
  padding: 1.75rem 3rem;
  text-align: center;
  border-right: 1px solid var(--rule);
}

.stat:last-child {
  border-right: none;
}

.stat-value {
  font-family: 'Corben', Georgia, serif;
  font-size: 1.65rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
  padding: clamp(5rem, 10vw, 8rem) 2rem;
  max-width: none;
  margin: 0 auto;
}

.about .reveal {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 2rem;
}

.about h2 .highlight {
  color: var(--teal-bright);
}

.about p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════
   PILLARS — "A Few Ways to Join"
   ═══════════════════════════════════════════════════════════ */
.pillars {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pillars-intro {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.pillars-intro p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-top: 1.25rem;
}

.pillars-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

h2.pillars-header {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.75vw, 2rem);
  color: var(--text);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.pillar {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background-color 0.5s ease;
  display: flex;
  flex-direction: column;
}

.pillar-num {
  font-family: 'Corben', Georgia, serif;
  font-size: 2rem;
  color: var(--text-muted);
  opacity: 0.35;
  margin-bottom: 1rem;
  line-height: 1;
  transition: color 0.5s ease;
}

.pillar h3 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.pillar p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
  flex: 1;
}

.pillar-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-bright);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.pillar-link:hover {
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════
   WHAT TO EXPECT
   ═══════════════════════════════════════════════════════════ */
.expect {
  padding: clamp(5rem, 10vw, 8rem) 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.expect h2 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.75vw, 2rem);
  color: var(--text);
  margin-bottom: 2rem;
}

.expect > .reveal > p:not(.section-label) {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.expect-list li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}

.expect-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}

.expect-detail {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.expect-detail h3 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.expect-detail p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.expect-detail + .expect-detail {
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   QUOTE
   ═══════════════════════════════════════════════════════════ */
.quote-section {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote-section blockquote {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.25rem;
  position: relative;
}

.quote-section blockquote::before {
  content: '\201C';
  font-family: 'Corben', Georgia, serif;
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.quote-attr {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   GATHERINGS (index.html preview section)
   ═══════════════════════════════════════════════════════════ */
.events {
  padding: clamp(5rem, 10vw, 8rem) 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.events-header h2 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.75vw, 2rem);
  color: var(--text);
}

.event {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.event:hover {
  opacity: 0.7;
}

.event-date {
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding-top: 0.35rem;
  line-height: 1.6;
}

.event-title {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.event-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.event-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.event-meta > * {
  white-space: nowrap;
}

.event-type {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-bright);
  opacity: 0.9;
}

.event-rsvp {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.event-link {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.event-rsvp-none {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

a.event-rsvp,
a.event-link {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.3s ease;
}

a.event-rsvp:hover,
a.event-link:hover {
  text-decoration-color: currentColor;
}

.light .event-type {
  opacity: 1;
}

.event-detail-link {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.3s ease;
}

.event-detail-link:hover {
  text-decoration-color: currentColor;
}

/* ── Event detail modal ──────────────────────────────────── */

.event-modal-backdrop {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.event-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.event-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid rgba(127, 127, 127, 0.2);
  max-width: 760px;
  width: 100%;
  max-height: 80vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.event-modal-header {
  flex-shrink: 0;
  padding: 2.5rem 2.5rem 0;
  position: relative;
}

.event-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.event-modal-close:hover {
  color: var(--text);
}

.event-modal-title {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.event-modal-header-content {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(127, 127, 127, 0.2);
}

.event-modal-date .event-date-sep br {
  display: none;
}

.event-modal-date .event-date-sep::after {
  content: ' · ';
}

.event-modal-date {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.event-modal-header-content > *:last-child {
  margin-bottom: 0;
}

.event-modal .event-rsvp:hover,
.event-modal .event-link:hover {
  text-decoration-color: currentColor;
}

.event-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 2.5rem 2.5rem;
}

.event-modal-content {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

.event-modal-content > *:first-child {
  margin-top: 0;
}

.event-modal-content h1 {
  font-size: 1.35rem;
}

.event-modal-content h1,
.event-modal-content h2,
.event-modal-content h3 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.event-modal-content h2 {
  font-size: 1.25rem;
}
.event-modal-content h3 {
  font-size: 1.1rem;
}

.event-modal-content p {
  margin-bottom: 0.75rem;
}

.event-modal-content ul,
.event-modal-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.event-modal-content hr {
  border: none;
  border-top: 1px solid rgba(127, 127, 127, 0.2);
  margin: 1.5rem 0;
}

.event-modal-content li {
  margin-bottom: 0.35rem;
}

.event-modal-content a {
  color: var(--teal-bright);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.event-modal-content a:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .event-modal-backdrop {
    padding: 0;
  }
  .event-modal {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border: none;
  }
  .event-modal-header {
    padding: 1.75rem 1.75rem 0;
  }
  .event-modal-header-content {
    padding-bottom: 1.25rem;
  }
  .event-modal-body {
    padding: 1.5rem 1.75rem 1.75rem;
  }
}

.events-all-link {
  margin-top: 2rem;
  /* text-align: l; */
}

.events-all-link a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-bright);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.events-all-link a:hover {
  opacity: 0.6;
}

.events-empty {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  padding: 3rem 0;
}

/* Loading skeleton */
.event-skeleton {
  opacity: 0.4;
}
.skeleton-line {
  height: 0.75rem;
  background: var(--rule);
  border-radius: 2px;
  margin-bottom: 0.4rem;
}

@keyframes skeleton-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.2;
  }
}
.event-skeleton {
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   GATHERINGS PAGE (gatherings.html)
   ═══════════════════════════════════════════════════════════ */
.events-page {
  padding: clamp(3.5rem, 7vw, 5rem) 2rem;
  max-width: 800px;
  margin: 0 auto;
  min-height: 80vh;
}

.events-month {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  padding-top: 4rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule);
}

.events-month:first-child {
  padding-top: 0;
}

/* ═══════════════════════════════════════════════════════════
   CLOSING CTA
   ═══════════════════════════════════════════════════════════ */
.closing {
  padding: clamp(5rem, 12vw, 9rem) 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.closing p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
}

.closing-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.closing-cta {
  display: inline-block;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  transition: all 0.4s ease;
}

.closing-cta.primary {
  color: var(--bg);
  background: var(--text);
}

.closing-cta.primary:hover {
  background: var(--accent);
  color: var(--bg);
}

.closing-cta.secondary {
  color: var(--text);
  border: 1px solid var(--text-muted);
  background: transparent;
}

.closing-cta.secondary:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* ═══════════════════════════════════════════════════════════
   DONATION CARD
   ═══════════════════════════════════════════════════════════ */
.donation-card {
  max-width: 900px;
  margin: 0 auto clamp(3rem, 6vw, 4rem);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--rule);
}

.donation-card-heading {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.donation-card-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

.donation-card-link {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 0.65rem 1.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.4s ease;
  opacity: 0.85;
}

.donation-card-link:hover {
  background: var(--accent);
  color: var(--bg);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════ */
.contact {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  max-width: 560px;
  margin: 0 auto;
}

.contact h2 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.75vw, 2rem);
  color: var(--text);
  margin-bottom: 0.75rem;
  text-align: center;
}

.contact > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════
   FORMS (shared between contact and proposal)
   ═══════════════════════════════════════════════════════════ */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family:
    'Plus Jakarta Sans',
    -apple-system,
    sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--text);
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-field input:-webkit-autofill,
.form-field textarea:-webkit-autofill,
.form-field select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--input-bg) inset;
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  transition: background-color 5000s ease-in-out 0s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a776e' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-field select option {
  background: var(--bg-card);
  color: var(--text);
}

/* Honeypot */
.ohnohoney {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

.form-submit {
  font-family:
    'Plus Jakarta Sans',
    -apple-system,
    sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  border: 1px solid var(--text);
  padding: 0.9rem 2.25rem;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 0.5rem;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.form-success h3 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.form-error {
  color: #e07a5f;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.5rem 0;
}

/* Checkbox group (horizontal) */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.checkbox-group-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.checkbox-group-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  width: 100%;
}

.checkbox-option input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.checkbox-option span {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text);
}

/* Mailing list signup section */
.mailing-list {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5rem) 2rem;
  text-align: center;
}

.mailing-list h2 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.75vw, 1.85rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.mailing-list p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.mailing-list,
.kiosk-signup {
  display: grid;
}

.mailing-list > #signupContent,
.mailing-list > #signupSuccess,
.kiosk-signup > #signupContent,
.kiosk-signup > #signupSuccess {
  grid-area: 1 / 1;
  transition: opacity 0.4s ease;
}

.mailing-list > #signupSuccess,
.kiosk-signup > #signupSuccess {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  align-self: center;
}

.mailing-list .form-fields {
  text-align: left;
}

.mailing-list .form-submit {
  align-self: center;
}

.mailing-list .form-success h2 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.75vw, 1.85rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.mailing-list .form-success p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   KIOSK PAGE (signup.html)
   ═══════════════════════════════════════════════════════════ */
.kiosk {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-sizing: border-box;
}

.kiosk-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.kiosk-logo {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--text);
  -webkit-mask: url('noco.svg') center / contain no-repeat;
  mask: url('noco.svg') center / contain no-repeat;
  opacity: 0.6;
  flex-shrink: 0;
}

.kiosk-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.kiosk-signup {
  width: 100%;
}

.kiosk-signup h2 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.75vw, 1.85rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.kiosk-signup p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.kiosk-signup .form-success {
  text-align: center;
}

.kiosk-signup .form-success h2 {
  margin-bottom: 0.75rem;
}

.kiosk-signup .form-success p {
  margin-bottom: 0;
}

.kiosk .form-submit {
  align-self: center;
}

.kiosk-donate {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.kiosk-donate h2 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.75vw, 1.85rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.kiosk-donate p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.kiosk-qr {
  width: 260px;
  height: auto;
  border-radius: 0.5rem;
}

.kiosk-switch-link {
  align-self: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.kiosk-switch-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   PROPOSAL FORM (propose.html)
   ═══════════════════════════════════════════════════════════ */
.proposal-form {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5rem) 2rem;
}

.proposal-form h2 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.75vw, 1.85rem);
  color: var(--text);
  margin-bottom: 0.75rem;
  text-align: center;
}

.proposal-form > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════
   VALUES LIST (propose.html)
   ═══════════════════════════════════════════════════════════ */
.values-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.values-list li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}

.values-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 6px;
  height: 6px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════
   NOTE BOX (propose.html)
   ═══════════════════════════════════════════════════════════ */
.note-box {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 2rem;
  margin: 2rem 0;
}

.note-box h3 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.note-box p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.note-box p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   PARKING GRID (parking.html)
   ═══════════════════════════════════════════════════════════ */
.parking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 2rem 0;
}

.parking-option {
  background: var(--bg);
  padding: 2rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.parking-label {
  font-family: 'Corben', Georgia, serif;
  /* font-size: 1.05rem; */
  color: var(--teal-bright);
}

.parking-detail p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.parking-detail p:last-child {
  margin-bottom: 0;
}

.parking-detail a {
  color: var(--teal-bright);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.parking-detail a:hover {
  opacity: 0.6;
}

.parking-cost {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 184, 150, 0.25);
  padding: 0.2rem 0.6rem;
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════
   APP CALLOUT (parking.html)
   ═══════════════════════════════════════════════════════════ */
.app-callout {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 2rem;
  margin: 2rem 0;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.app-callout-text {
  flex: 1;
}

.app-callout-text h3 {
  font-family: 'Corben', Georgia, serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.app-callout-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 0;
}

.app-qr {
  flex-shrink: 0;
}

.qr-code {
  width: 100px;
  height: 100px;
  border: 2px solid var(--text);
  border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════════
   TIP BOX (parking.html)
   ═══════════════════════════════════════════════════════════ */
.tip-box {
  border-left: 2px solid var(--accent);
  padding: 1rem 0 1rem 1.5rem;
  margin: 1.5rem 0;
}

.tip-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   MAP (parking.html)
   ═══════════════════════════════════════════════════════════ */
.map {
  width: 100%;
  border: 1px solid var(--rule);
}
.map.dark {
  display: none;
}
.map.light {
  display: block;
}
html.light .map.dark {
  display: block;
}
html.light .map.light {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   PROJECTS PAGE (projects.html)
   ═══════════════════════════════════════════════════════════ */
ul.project-list {
  list-style-position: outside;
  list-style-type: none;
}

/* ═══════════════════════════════════════════════════════════
   DIVERSE-FUTURES
   ═══════════════════════════════════════════════════════════ */

.diverse-futures span.highlight {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.diverse-futures .page-header {
   padding-bottom: 0;
}
.diverse-futures .page-header + .content-section > .quote-section {
   padding-top: 0;
}

.diverse-futures .presenter-head-shot {
  float: right;
  margin-left: 1em;
  margin-bottom: 1em;
  width: 40%;
  max-width: 250px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-mark {
  display: inline-block;
  height: 28px;
  width: 28px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
  background-color: var(--text);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.footer-mark:hover {
  opacity: 0.5;
}

.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0.5;
  max-width: 360px;
  line-height: 1.6;
  text-align: center;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

collapsible-section {
  cursor: pointer;
}

collapsible-section > .cs-wrap {
  display: grid;
  overflow: hidden;
}

collapsible-section > .cs-wrap > * {
  min-height: 0;
}

collapsible-section > .cs-hidden {
  grid-template-rows: 0fr;
  opacity: 0;
  pointer-events: none;
  transition:
    grid-template-rows 0.2s ease,
    opacity 0.2s ease;
}

collapsible-section > .cs-visible {
  grid-template-rows: 1fr;
  opacity: 1;
  transition:
    grid-template-rows 0.7s ease 0.2s,
    opacity 0.7s ease 0.2s;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav {
    padding: 1.25rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }

  /* Mobile nav overlay */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 200;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem;
  }

  /* backdrop-filter on nav creates a containing block for fixed descendants,
     which breaks the full-viewport overlay — disable it when the menu is open */
  nav:has(.nav-links.open) {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  html.light .nav-links.open {
    background: var(--bg);
  }

  .nav-links.open a {
    font-size: 1.2rem;
    opacity: 0.8;
    letter-spacing: 0.15em;
  }

  /* Mobile dropdown */
  .nav-links.open .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-links.open .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    padding: 0.25rem 0 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .nav-links.open .nav-dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-links.open .dropdown-menu a {
    font-size: 0.95rem;
    padding: 0.25rem 0;
    opacity: 0.6;
  }

  .nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 4px;
  }

  .nav-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
  }

  /* Page headers */
  .page-header {
    padding: 8rem 1.5rem 3rem;
  }

  /* Hero */
  .hero {
    padding: 6rem 1.5rem 0;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
  .stat {
    padding: 1.25rem 1.5rem;
    flex: 1 1 33%;
  }

  /* Grids */
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .checkbox-group-options {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .parking-option {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .app-callout {
    flex-direction: column;
    text-align: center;
  }

  /* Events */
  .event {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .event-date {
    padding-top: 0;
  }
  .events-page {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-copy {
    order: 3;
  }

  /* Section padding */
  .about,
  .pillars,
  .quote-section,
  .events,
  .closing,
  .expect,
  .contact {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .donation-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .content-section,
  .proposal-form {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   SHARED ELEMENTS
   ═══════════════════════════════════════════════════════════ */

a.highlight {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.page-header blockquote p {
  margin-bottom: 2ex;
}

choose-one div.choice {
  display: none;
}

.divider {
  height: 1px;
  background: var(--rule-gradient);
  max-width: 900px;
  margin: 0 auto;
}

.float-right {
  float: right;
  margin-left: 1em;
}
.float-left {
  float: left;
  margin-right: 1em;
}

section ul {
  margin-left: 3em;
  list-style-position: inside;
}

p.section-label {
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* Back link (interior pages) */
.back-link {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-bright);
  text-decoration: none;
  transition: opacity 0.3s ease;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.back-link:hover {
  opacity: 0.6;
}

.event-summary {
  list-style: none;
}

li.event-summary {
  margin-top: 12pt;
}

.event-summary strong {
  color: var(--accent);
  font-weight: bold;
}

.event-summary .event-summary-header > a {
  text-decoration: none;
}

.event-summary .event-summary-header,
.event-summary .event-summary-title {
  display: inline;
}

.event-summary .event-summary-date,
.event-summary .event-summary-oneline {
  padding-left: 2em;
}

.event-summary .event-date-sep::before {
  content: ", ";
}
.event-summary .event-date-sep br {
  display: none;
}