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

:root {
  --navy:       oklch(28% 0.08 240);
  --navy-mid:   oklch(34% 0.09 240);
  --green:      oklch(38% 0.08 165);
  --green-light:oklch(50% 0.09 165);
  --sand:       oklch(94% 0.018 80);
  --sand-dark:  oklch(89% 0.025 80);
  --white:      oklch(98% 0.005 80);
  --gray:       oklch(55% 0.015 240);
  --gray-light: oklch(88% 0.008 240);
  --text:       oklch(22% 0.03 240);
  --signal:     oklch(44% 0.10 225);

  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  --max-w: 1120px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid oklch(72% 0.12 90);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn-primary { background: var(--signal); color: var(--white); border-color: var(--signal); }
.btn-primary:hover { background: oklch(38% 0.10 225); border-color: oklch(38% 0.10 225); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: oklch(32% 0.08 165); border-color: oklch(32% 0.08 165); }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex; align-items: center; height: 64px;
}
.nav-logo {
  font-family: var(--font-head); font-size: 19px;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.01em; flex-shrink: 0; margin-right: auto; line-height: 1.2;
}
.nav-logo span {
  display: block; font-family: var(--font-body); font-size: 10px;
  font-weight: 400; letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 1px; white-space: nowrap;
}
.nav-links { display: flex; gap: 4px; list-style: none; height: 100%; }
.nav-links a {
  display: flex; align-items: center; height: 100%; padding: 0 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); text-decoration: none; white-space: nowrap;
  border-bottom: 3px solid transparent; transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); border-bottom-color: oklch(70% 0.09 165); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy-mid);
  color: var(--white);
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 60px);
}
.page-hero .container { max-width: var(--max-w); }
.page-hero .hero-eyebrow {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: oklch(70% 0.09 165); margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.12; text-wrap: pretty;
}
.about-page-hero {
  padding-block: clamp(72px, 10vw, 128px);
  background-image:
    linear-gradient(90deg, rgba(7, 31, 48, 0.88) 0%, rgba(7, 31, 48, 0.72) 48%, rgba(7, 31, 48, 0.48) 100%),
    url('uploads/photo-about-hero.jpg');
  background-position: center 46%;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-page-hero h1 {
  max-width: 820px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.about-page-hero .hero-eyebrow {
  color: oklch(78% 0.09 165);
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

/* ── SECTIONS ── */
.page-section { padding: clamp(48px, 7vw, 80px) 0; }
.page-section.bg-sand { background: var(--sand); }
.page-section.bg-navy { background: var(--navy); color: var(--white); }

/* ── PROSE LAYOUT ── */
.prose-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.prose-main h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--navy);
  margin-top: 44px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.prose-main h2:first-child { margin-top: 0; }
.prose-main h3 {
  font-family: var(--font-body);
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-top: 32px; margin-bottom: 10px;
}
.prose-main p { margin-bottom: 18px; line-height: 1.72; color: var(--text); }
.prose-main p.lead { font-size: 19px; color: var(--gray); line-height: 1.7; margin-bottom: 32px; text-wrap: pretty; }
.content-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}
.content-list li {
  padding-left: 20px; position: relative;
  font-size: 16px; line-height: 1.6; color: var(--text);
}
.content-list li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--green-light);
}
.callout-note {
  background: var(--sand);
  border-left: 3px solid var(--green-light);
  border-radius: 0 3px 3px 0;
  padding: 16px 20px;
  font-size: 15px; line-height: 1.6;
  color: var(--gray);
  margin: 24px 0;
}
.callout-note strong { color: var(--text); }

/* ── SIDEBAR ── */
.prose-sidebar {}
.sidebar-card {
  background: var(--sand);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--sand-dark);
}
.sidebar-stat {
  font-family: var(--font-head);
  font-size: 52px; line-height: 1;
  color: var(--navy);
}
.sidebar-stat-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray); margin-top: 6px;
}
.sidebar-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 14px;
  text-align: left;
}
.dues-sidebar-photo,
.about-sidebar-photo {
  position: relative;
  aspect-ratio: 3/4;
  margin-top: 16px;
  overflow: hidden;
  background: var(--sand-dark);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(23, 42, 54, 0.14);
}
.dues-sidebar-photo img,
.about-sidebar-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dues-sidebar-photo figcaption,
.about-sidebar-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 44px 14px 11px;
  color: rgba(255,255,255,0.94);
  background: linear-gradient(to bottom, transparent, rgba(10, 24, 32, 0.72));
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.015em;
  text-align: right;
  text-shadow: 0 1px 4px rgba(0,0,0,0.75);
}
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-links a {
  font-size: 15px; color: var(--navy);
  text-decoration: none; font-weight: 600;
  transition: color 0.15s;
}
.sidebar-links a:hover { color: var(--signal); text-decoration: underline; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--green);
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 60px);
  color: var(--white);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 8px;
}
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.78); text-wrap: pretty; max-width: 560px; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── FORMS ── */
.form-section { padding: clamp(48px, 7vw, 80px) 0; }
.form-wrap { max-width: 680px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 8px;
}
.form-group .field-hint {
  font-size: 13px; color: var(--gray);
  margin-bottom: 8px; display: block;
  font-weight: 400; text-transform: none; letter-spacing: 0;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 3px;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-group input[type="checkbox"] {
  appearance: auto;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  accent-color: var(--signal);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 3px oklch(44% 0.10 225 / 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; }
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 3px; cursor: pointer;
  accent-color: var(--signal);
}
.checkbox-group label {
  font-size: 15px; font-weight: 400; text-transform: none;
  letter-spacing: 0; color: var(--text); cursor: pointer;
}
.form-submit { margin-top: 32px; }
.form-note {
  font-size: 13.5px; color: var(--gray);
  margin-top: 16px; line-height: 1.6;
}

/* ── RULES PAGE ── */
.rules-section {
  padding: clamp(40px, 6vw, 64px) 0;
  border-bottom: 1px solid var(--gray-light);
}
.rules-section:last-child { border-bottom: none; }
.rules-section h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy); margin-bottom: 16px;
}
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.rule-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.rule-bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 16px; line-height: 1.55; color: var(--text);
}
.rule-bullets li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-light);
  margin-top: 9px; flex-shrink: 0;
}
.avoid-bullets li::before { background: oklch(55% 0.12 28); }
.section-anchor { scroll-margin-top: 80px; }

/* ── DOCUMENTS PAGE ── */
.doc-category { margin-bottom: 48px; }
.doc-category-title {
  font-family: var(--font-head);
  font-size: 26px; color: var(--navy);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-light);
}
.doc-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.doc-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
}
.doc-item:last-child { border-bottom: none; }
.doc-icon {
  width: 36px; height: 36px; background: var(--sand);
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  color: var(--navy); flex-shrink: 0;
}
.doc-name { font-size: 16px; font-weight: 600; color: var(--navy); }
.doc-meta { font-size: 13px; color: var(--gray); margin-top: 2px; }

/* ── SHARED NOTICES & EVENTS ── */
.notice-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-light);
}
.notice-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-light);
}
.notice-date {
  padding-top: 3px;
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.notice-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.notice-body { color: var(--gray); font-size: 14.5px; line-height: 1.55; }
.notice-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tag-dues { background: oklch(92% 0.04 80); color: oklch(42% 0.08 65); }
.tag-lake { background: oklch(91% 0.05 165); color: oklch(34% 0.09 165); }
.tag-meeting { background: oklch(90% 0.04 240); color: oklch(32% 0.08 240); }
.tag-beach { background: oklch(92% 0.03 200); color: oklch(36% 0.08 210); }
.content-empty {
  padding: 28px;
  border: 1px dashed oklch(72% 0.03 220);
  border-radius: 4px;
  background: var(--sand-light);
  color: var(--gray);
  text-align: center;
}
.content-empty-title {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 6px;
}
.events-list { display: grid; gap: 16px; }
.event-card {
  display: grid;
  grid-template-columns: minmax(112px, 150px) 1fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--sand-dark);
  border-left: 4px solid var(--green);
  border-radius: 4px;
  background: var(--white);
}
.event-date {
  font-size: 15px;
  font-weight: 700;
  color: var(--signal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.event-name {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 10px;
}
.event-meta { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.event-meta div { display: flex; gap: 6px; }
.event-meta dt { font-weight: 700; color: var(--navy); }
.event-meta dd { color: var(--gray); }
.event-description { color: var(--gray); margin-top: 12px; line-height: 1.6; }
.configuration-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--sand-dark);
  border-radius: 4px;
  background: var(--sand-light);
}
.doc-download {
  margin-left: auto; font-size: 13px; font-weight: 700;
  color: var(--signal); text-decoration: none;
  letter-spacing: 0.05em; text-transform: uppercase;
  flex-shrink: 0;
}
.doc-download:hover { text-decoration: underline; }
.doc-pending {
  margin-left: auto; font-size: 13px; font-weight: 600;
  color: var(--gray); text-decoration: none;
  letter-spacing: 0.05em; text-transform: uppercase;
  flex-shrink: 0; cursor: default;
}

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }
.about-history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-history-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand-dark);
  border: 1px solid oklch(84% 0.018 80);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(23, 42, 54, 0.12);
}
.about-history-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.about-history-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 16px 12px;
  color: rgba(255,255,255,0.94);
  background: linear-gradient(to bottom, transparent, rgba(10, 24, 32, 0.7));
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.015em;
  text-align: right;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.pavilion-request-grid { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.contact-info-card {
  background: var(--sand);
  border-radius: 4px;
  padding: 32px 28px;
  border: 1px solid var(--sand-dark);
  margin-bottom: 20px;
}
.contact-info-card h3 {
  font-family: var(--font-head); font-size: 20px;
  color: var(--navy); margin-bottom: 16px;
}
.pavilion-sidebar-photo {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  margin: 0 auto 16px;
  overflow: hidden;
  background: var(--navy);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(23, 42, 54, 0.16);
}
.pavilion-sidebar-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pavilion-sidebar-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 14px 12px;
  color: rgba(255,255,255,0.94);
  background: linear-gradient(to bottom, transparent, rgba(10, 24, 32, 0.72));
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.015em;
  text-align: right;
  text-shadow: 0 1px 4px rgba(0,0,0,0.75);
}
.pavilion-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.pavilion-pair-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand-dark);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(23, 42, 54, 0.13);
}
.pavilion-pair-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pavilion-pair-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 36px 12px 10px;
  color: rgba(255,255,255,0.94);
  background: linear-gradient(to bottom, transparent, rgba(10, 24, 32, 0.7));
  font-size: 10.5px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: right;
  text-shadow: 0 1px 4px rgba(0,0,0,0.75);
}
.contact-role-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-role-item {}
.contact-role-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray);
}
.contact-role-email {
  font-size: 15px; color: var(--signal); text-decoration: none; font-weight: 600;
}
.contact-role-email:hover { text-decoration: underline; }
.contact-volunteer-note {
  background: var(--navy);
  border-radius: 4px;
  padding: 24px 28px;
  color: rgba(255,255,255,0.8);
  font-size: 15px; line-height: 1.6;
}
.contact-volunteer-note strong { color: var(--white); }

/* ── FOOTER ── */
.site-footer {
  background: oklch(18% 0.06 240);
  color: rgba(255,255,255,0.65);
  padding: 64px clamp(20px, 5vw, 80px) 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { font-family: var(--font-head); font-size: 22px; color: var(--white); margin-bottom: 12px; }
.footer-tagline { font-size: 13.5px; line-height: 1.6; margin-bottom: 20px; color: rgba(255,255,255,0.5); }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: oklch(65% 0.08 165); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.58); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-credit:hover { color: rgba(255,255,255,0.78); }
.footer-credit img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  opacity: 0.78;
}
.footer-emergency {
  font-size: 12px; color: rgba(255,255,255,0.35);
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; outline: 2px solid oklch(70% 0.09 165); outline-offset: 2px; }

/* ── MOBILE NAV DRAWER ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
  margin-left: 12px;
  flex-shrink: 0;
}
.nav-hamburger svg { display: block; }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  flex-shrink: 0;
}
.mobile-nav-logo {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
}
.mobile-nav-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 8px;
  font-size: 22px;
  line-height: 1;
}
.mobile-nav-close:hover { color: var(--white); }
.mobile-nav-links {
  list-style: none;
  padding: 12px 0;
  flex: 1;
}
.mobile-nav-links li a {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
  color: var(--white);
  border-left-color: oklch(70% 0.09 165);
  background: rgba(255,255,255,0.05);
}
.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  flex-shrink: 0;
}
.mobile-nav-footer a {
  display: block;
  text-align: center;
  background: var(--signal);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 3px;
  text-decoration: none;
}
.mobile-nav-footer a:hover { background: oklch(38% 0.10 225); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .prose-layout { grid-template-columns: 1fr; }
  .prose-sidebar { display: none; }
  .rules-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-history-grid, .pavilion-request-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .notice-item { grid-template-columns: 1fr; gap: 8px; }
  .notice-date { padding-top: 0; }
  .event-card { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
  .configuration-note { align-items: flex-start; flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

/* ── PRINT STYLES ── */
@media print {
  .site-nav,
  .nav-hamburger,
  .mobile-nav-overlay,
  .cta-band,
  .contact-cta,
  .site-footer,
  .skip-link,
  .btn { display: none !important; }

  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 10pt; color: #555; }

  .page-hero {
    background: #f5f5f0 !important;
    color: #000 !important;
    padding: 24pt 0 16pt !important;
  }
  .page-hero h1 { color: #000 !important; font-size: 24pt !important; }
  .page-hero .hero-eyebrow { color: #555 !important; }

  .container { max-width: 100%; padding: 0 !important; }
  .rules-section { border-bottom: 1pt solid #ccc; padding: 16pt 0; }
  .callout-note { border: 1pt solid #ccc; background: #f9f9f9 !important; }
  .doc-item { border-bottom: 1pt solid #eee; }
  .prose-sidebar { display: none !important; }
  .prose-layout { grid-template-columns: 1fr !important; }
  h2 { page-break-after: avoid; }
  ul, ol { page-break-inside: avoid; }
}
