/* ============================================================
   King Solomon-Beethoven Lodge No. 232
   Main Stylesheet
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --navy:       #1D2E5E;
  --navy-dark:  #0F1A3A;
  --navy-mid:   #253670;
  --gold:       #C8A450;
  --gold-light: #E0BC72;
  --gold-dark:  #9E7E30;
  --white:      #FFFFFF;
  --off-white:  #F7F3EB;
  --parchment:  #EDE5D0;
  --text:       #1A1A2E;
  --text-muted: #5A5E7A;
  --border:     #D5C89A;
  --shadow:     0 2px 16px rgba(15, 26, 58, 0.12);
  --shadow-lg:  0 8px 32px rgba(15, 26, 58, 0.18);
  --radius:     4px;
  --radius-lg:  8px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --max-w:      1100px;
  --header-h:   72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy-dark); }

/* --- Section Labels & Dividers --- */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  width: 64px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.ornament-divider span { color: var(--gold); font-size: 1rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 164, 80, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(15, 26, 58, 0.97);
  border-bottom: 1px solid rgba(200, 164, 80, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(200, 164, 80, 0.55);
  text-transform: uppercase;
}

/* Nav links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.main-nav a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius);
  transition: color 0.2s;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); }
.nav-members {
  margin-left: 0.75rem !important;
  padding: 0.45rem 0.9rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: var(--radius) !important;
  transition: all 0.2s !important;
}
.nav-members:hover {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (Home Page)
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--navy-dark) 0%, #1A2754 55%, #243070 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(200,164,80,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,164,80,0.05) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 3rem 1.5rem;
}
.hero-seal {
  width: 170px;
  height: 170px;
  object-fit: contain;
  margin: 0 auto 2.25rem;
  filter: drop-shadow(0 6px 28px rgba(200,164,80,0.28));
}
.hero-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.hero-title .lodge-no {
  color: var(--gold);
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 0;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.75rem 0;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  width: 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: 0.6;
}
.hero-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.hero-divider-sym { color: var(--gold); font-size: 1rem; }
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-meta-item { text-align: center; }
.hero-meta-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.25rem;
}
.hero-meta-value {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   INFO BAND
   ============================================================ */
.info-band {
  background: var(--gold);
  padding: 1.4rem 0;
}
.info-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.info-band-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy-dark);
}
.info-band-icon { font-size: 1.2rem; opacity: 0.75; }
.info-band-text { display: flex; flex-direction: column; }
.info-band-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}
.info-band-value { font-weight: 700; font-size: 0.9rem; }

/* ============================================================
   ABOUT / WELCOME SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--text-muted); }
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--navy-dark);
  color: var(--gold);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}
.pillars-list {
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pillar-item::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   MEETING INFO CARDS
   ============================================================ */
.meeting-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.meeting-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.meeting-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.meeting-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.meeting-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.meeting-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================================
   OFFICERS
   ============================================================ */
.officers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.officer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.2s;
}
.officer-card:hover { box-shadow: var(--shadow); }
.officer-rank {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.officer-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.officer-degree {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.officer-card.wm {
  border-top-width: 4px;
  background: linear-gradient(180deg, rgba(200,164,80,0.06) 0%, var(--white) 40%);
}
.officer-card.wm .officer-rank { color: var(--gold); }

/* ============================================================
   EVENTS
   ============================================================ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.event-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}
.event-item:hover { box-shadow: var(--shadow); }
.event-date {
  min-width: 58px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.6rem 0.5rem;
  flex-shrink: 0;
}
.event-month {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.event-day {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.event-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--parchment);
  color: var(--gold-dark);
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
  margin-bottom: 0.4rem;
}
.event-info h4 { margin-bottom: 0.25rem; color: var(--navy); }
.event-info p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon { font-size: 1.2rem; color: var(--gold); margin-top: 0.15rem; }
.contact-detail-text { font-size: 0.93rem; color: var(--text-muted); }
.contact-detail-text strong { display: block; color: var(--navy); font-weight: 700; margin-bottom: 0.1rem; }
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
input, select, textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(29, 46, 94, 0.1);
  background: var(--white);
}
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-success h3 { color: var(--navy); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--parchment);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
  padding: 1rem;
}
.gallery-placeholder-icon { font-size: 2rem; opacity: 0.4; }

/* ============================================================
   MEMBERS PORTAL
   ============================================================ */
.portal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.portal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.portal-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}
.portal-card-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.portal-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.portal-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5.5rem 0 3rem;
  text-align: center;
  margin-top: var(--header-h);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero .lead {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { opacity: 0.4; }

/* ============================================================
   HISTORY PAGE
   ============================================================ */
.history-body {
  max-width: 760px;
  margin: 0 auto;
}
.history-body h2 { margin-bottom: 1rem; }
.history-body p { color: var(--text-muted); margin-bottom: 1.25rem; }
.history-quote {
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.history-quote p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  margin: 0;
}
.timeline {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}
.timeline-item:not(:last-child) .timeline-body::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-year {
  text-align: right;
  padding-top: 0.1rem;
}
.timeline-year span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.15rem 0.5rem;
  display: inline-block;
}
.timeline-body {
  position: relative;
  padding-left: 1rem;
}
.timeline-dot {
  position: absolute;
  left: -1.82rem;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-body h4 { margin-bottom: 0.25rem; }
.timeline-body p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--gold); }
.footer-address {
  font-size: 0.88rem;
  line-height: 1.85;
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom {
  border-top: 1px solid rgba(200, 164, 80, 0.12);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-masonic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 480px; margin: 0 auto; }
  .about-badge { bottom: 1rem; left: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: rgba(15, 26, 58, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1rem; padding: 0.65rem 2rem; }
  .nav-members { border: 1px solid var(--gold) !important; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .hero-seal { width: 130px; height: 130px; }
  .hero-meta { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .info-band-inner { gap: 1.5rem; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 1rem; }
  .event-item { flex-direction: column; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
