/* ═══════════════════════════════════════════════════════════════
   Alt Heidelberg Lodge No. 821 — Shared Stylesheet
   Single source of truth for all pages (EN + DE)
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Palette */
  --navy:       #0D1B2A;
  --navy-mid:   #162235;
  --navy-light: #1E3248;
  --gold:       #C9A84C;
  --gold-light: #E2C97A;
  --gold-pale:  #F5EDD3;
  --gold-faint: #FAF6EC;
  --cream:      #F8F4EE;
  --parchment:  #EDE4D0;
  --stone:      #D6CDB8;
  --ink:        #1A1410;
  --ink-mid:    #3A322A;
  --ink-soft:   #6A5E50;
  --ink-muted:  #9A8E80;
  --rule:       rgba(201,168,76,0.25);
  --rule-light: rgba(201,168,76,0.12);

  /* Typography */
  --display: 'Cormorant SC', 'Cormorant Garamond', serif;
  --serif:   'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans:    'Source Sans 3', 'Segoe UI', sans-serif;

  /* Spacing */
  --max:    1200px;
  --gutter: clamp(1.5rem, 5vw, 3rem);

  /* Motion */
  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--serif);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── UTILITY ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ─── ORNAMENTS ──────────────────────────────────────────────── */
.ornament { display: inline-block; color: var(--gold); opacity: 0.85; }
.rule-ornament {
  display: flex; align-items: center; gap: 1rem; margin-block: 1.5rem;
}
.rule-ornament::before,
.rule-ornament::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, transparent);
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.site-header {
  background: var(--navy); position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 2rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.9rem; flex-shrink: 0; }
.nav-crest  { width: 42px; height: 42px; flex-shrink: 0; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name {
  font-family: var(--display); font-size: 1.05rem; font-weight: 600;
  color: #fff; letter-spacing: 0.04em;
}
.nav-brand-sub {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 400;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.15rem;
}
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); padding: 0.4rem 0.75rem;
  border-radius: 2px; transition: color 0.2s; position: relative; display: block;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -1px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%; height: 1px; background: var(--gold);
  transition: transform 0.25s var(--ease);
}
.nav-links > li > a:hover { color: var(--gold-light); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: translateX(-50%) scaleX(1); }
.nav-links > li > a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 1px); left: 0;
  background: var(--navy); border: 1px solid rgba(201,168,76,0.25);
  border-top: 2px solid var(--gold); min-width: 210px;
  z-index: 200; box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.nav-links > li:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: color 0.2s, background 0.2s; display: block;
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { color: var(--gold-light); background: rgba(201,168,76,0.06); }
.nav-dropdown li a::after { display: none; }

/* Hamburger toggle */
.nav-toggle {
  display: none; background: none; border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold); padding: 0.4rem 0.6rem; border-radius: 3px;
  cursor: pointer; font-size: 1.1rem; line-height: 1;
}

/* ─── MOBILE NAV ─────────────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--navy);
  z-index: 200; flex-direction: column; padding: 5rem 2rem 3rem; gap: 0; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--display); font-size: 1.5rem; font-weight: 500;
  color: rgba(255,255,255,0.7); padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1); letter-spacing: 0.04em; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .mobile-sub a {
  font-size: 1.1rem; padding: 0.6rem 0 0.6rem 1.2rem;
  color: rgba(255,255,255,0.5); font-style: italic;
}
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem; background: none;
  border: 1px solid rgba(201,168,76,0.3); color: var(--gold);
  padding: 0.4rem 0.7rem; border-radius: 2px; cursor: pointer; font-size: 1.1rem;
}

/* ─── SECTION CHROME ─────────────────────────────────────────── */
.section-label {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600; color: var(--navy); line-height: 1.1; letter-spacing: 0.02em;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--gold); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.75rem 1.75rem; border-radius: 2px;
  transition: all 0.25s var(--ease); cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(201,168,76,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-1px); }
.btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── HERO (homepage) ────────────────────────────────────────── */
.hero {
  position: relative; background: var(--navy); overflow: hidden;
  min-height: 88vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.hero-texture {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(201,168,76,1) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2; max-width: 700px; padding-block: 6rem;
  animation: heroIn 1.2s var(--ease-out) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes craneIn {
  from { opacity: 0; transform: translateY(-50%) scale(0.9); }
  to   { opacity: 0.06; transform: translateY(-50%) scale(1); }
}
.hero-eyebrow {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.75rem;
  animation: heroIn 1.2s 0.1s var(--ease-out) both;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--display); font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600; color: #fff; line-height: 1.0; letter-spacing: 0.02em;
  margin-bottom: 0.3rem; animation: heroIn 1.2s 0.15s var(--ease-out) both;
}
.hero-title em { display: block; font-style: italic; font-weight: 300; color: var(--gold-light); font-size: 0.6em; letter-spacing: 0.06em; }
.hero-number {
  font-family: var(--display); font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1.8rem;
  animation: heroIn 1.2s 0.2s var(--ease-out) both;
}
.hero-rule { width: 60px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); margin-bottom: 1.8rem; animation: heroIn 1.2s 0.25s var(--ease-out) both; }
.hero-body {
  font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 300; color: rgba(255,255,255,0.72);
  line-height: 1.75; max-width: 540px; margin-bottom: 2.5rem; font-style: italic;
  animation: heroIn 1.2s 0.3s var(--ease-out) both;
}
.hero-quote {
  font-family: var(--display); font-size: 0.95rem; font-style: italic; font-weight: 300;
  color: rgba(201,168,76,0.8); letter-spacing: 0.04em; margin-bottom: 2.5rem;
  padding-left: 1.2rem; border-left: 1px solid rgba(201,168,76,0.35);
  animation: heroIn 1.2s 0.35s var(--ease-out) both;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; animation: heroIn 1.2s 0.4s var(--ease-out) both; }
.hero-crest-display {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: min(480px, 45vw); opacity: 0.06; pointer-events: none;
  animation: craneIn 1.8s 0.5s var(--ease-out) both;
}

/* ─── PILLARS STRIP ──────────────────────────────────────────── */
.pillars {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 2rem 0;
}
.pillars-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.pillar { padding: 1rem 1.5rem; border-right: 1px solid rgba(201,168,76,0.12); }
.pillar:last-child { border-right: none; }
.pillar-icon { width: 32px; height: 32px; margin: 0 auto 0.6rem; color: var(--gold); opacity: 0.8; }
.pillar-title { font-family: var(--display); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.pillar-desc { font-family: var(--sans); font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }

/* ─── NEXT MEETING BANNER ────────────────────────────────────── */
.next-meeting {
  background: linear-gradient(135deg, var(--gold-faint) 0%, var(--cream) 100%);
  border-top: 1px solid var(--parchment); border-bottom: 3px solid var(--gold); padding: 1.5rem 0;
}
.next-meeting-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.meeting-label {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  background: var(--navy); padding: 0.3rem 0.8rem; border-radius: 2px; flex-shrink: 0;
}
.meeting-detail { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; flex: 1; }
.meeting-item { display: flex; align-items: center; gap: 0.5rem; font-family: var(--sans); font-size: 0.82rem; color: var(--ink-mid); }
.meeting-item svg { color: var(--gold); flex-shrink: 0; }
.meeting-item strong { font-weight: 600; color: var(--ink); }
.meeting-cta {
  margin-left: auto; font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy);
  border-bottom: 1px solid var(--gold); padding-bottom: 1px; transition: color 0.2s;
}
.meeting-cta:hover { color: var(--gold); }

/* ─── LODGE HISTORY ────────────────────────────────────── */
.about { padding: 6rem 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text p { font-size: 1.05rem; line-height: 1.85; color: var(--ink-mid); margin-bottom: 1.25rem; }
.about-text p:first-of-type::first-letter { float: left; font-family: var(--display); font-size: 3.8rem; font-weight: 600; line-height: 0.75; color: var(--gold); margin-right: 0.15em; margin-top: 0.12em; }
.about-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 1px; margin-top: 0.75rem; transition: color 0.2s; }
.about-link:hover { color: var(--gold); }
.about-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.about-timeline::before { content: ''; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ─── FREEMASONRY DARK SECTION (homepage) ───────────────────── */
.masonry-section { background: var(--navy); padding: 6rem 0; position: relative; overflow: hidden; }
.masonry-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 90% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.masonry-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.masonry-intro .section-title { color: #fff; }
.masonry-intro p { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-top: 1.5rem; margin-bottom: 1rem; }
.facts-list { display: flex; flex-direction: column; gap: 1.2rem; }
.fact-item {
  display: flex; gap: 1.2rem; padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.1); border-radius: 2px;
  transition: border-color 0.25s, background 0.25s;
}
.fact-item:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); }
.fact-number { font-family: var(--display); font-size: 1.6rem; font-weight: 700; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 2.5rem; text-align: center; }
.fact-title { font-family: var(--display); font-size: 0.9rem; font-weight: 600; color: var(--gold-light); letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.fact-body { font-family: var(--sans); font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ─── NEWS SECTION ───────────────────────────────────────────── */
.news-section { padding: 6rem 0; background: var(--gold-faint); border-top: 1px solid var(--parchment); }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.news-all { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 1px; transition: color 0.2s; }
.news-all:hover { color: var(--gold); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-card {
  background: var(--cream); border: 1px solid var(--parchment); border-radius: 2px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,27,42,0.1); border-color: var(--gold); }
.news-card-img { height: 180px; background: var(--navy-light); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.news-card-img-placeholder { opacity: 0.15; }
.news-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-tag { font-family: var(--sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.news-date { font-family: var(--sans); font-size: 0.72rem; color: var(--ink-muted); margin-bottom: 0.75rem; }
.news-card-title { font-family: var(--display); font-size: 1.15rem; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 0.75rem; letter-spacing: 0.01em; }
.news-card-excerpt { font-family: var(--sans); font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.news-card-link { font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s, color 0.2s; margin-top: auto; }
.news-card:hover .news-card-link { color: var(--gold); gap: 0.7rem; }

/* ─── EVENTS SECTION ─────────────────────────────────────────── */
.events-section { padding: 6rem 0; background: var(--cream); }
.events-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.events-list { display: flex; flex-direction: column; gap: 0; }
.event-item { display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid var(--parchment); align-items: start; transition: background 0.2s; }
.event-item:last-child { border-bottom: none; }
.event-date-box { background: var(--navy); text-align: center; padding: 0.5rem 0.3rem; border-radius: 2px; line-height: 1.1; border-bottom: 2px solid var(--gold); }
.event-day { font-family: var(--display); font-size: 1.3rem; font-weight: 700; color: #fff; display: block; }
.event-mon { font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: block; }
.event-title { font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; letter-spacing: 0.01em; }
.event-meta { font-family: var(--sans); font-size: 0.78rem; color: var(--ink-soft); display: flex; gap: 1rem; flex-wrap: wrap; }
.event-meta span { display: flex; align-items: center; gap: 0.3rem; }
.officers-card { background: var(--navy); border-radius: 2px; overflow: hidden; border: 1px solid rgba(201,168,76,0.2); }
.officers-card-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(201,168,76,0.15); display: flex; align-items: center; gap: 0.75rem; }
.officers-card-header h3 { font-family: var(--display); font-size: 1rem; font-weight: 600; color: var(--gold); letter-spacing: 0.06em; }
.officers-list { padding: 1rem 0; }
.officer-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.15s; }
.officer-row:last-child { border-bottom: none; }
.officer-row:hover { background: rgba(201,168,76,0.05); }
.officer-role { font-family: var(--sans); font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.03em; }
.officer-name { font-family: var(--display); font-size: 0.95rem; font-weight: 500; color: #fff; letter-spacing: 0.02em; }

/* ─── GALLERY PREVIEW ────────────────────────────────────────── */
.gallery-section { padding: 6rem 0; background: var(--parchment); border-top: 1px solid var(--stone); }
.gallery-masonry {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 200px 200px;
  gap: 6px; margin-top: 3rem;
}
.gallery-item { background: var(--navy-light); border-radius: 2px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,0.7), transparent);
  opacity: 0; transition: opacity 0.3s var(--ease); display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-family: var(--sans); font-size: 0.75rem; color: #fff; font-weight: 600; letter-spacing: 0.06em; }
.gallery-item::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect x='15' y='15' width='30' height='30' fill='none' stroke='%23C9A84C' stroke-width='1'/%3E%3Cline x1='30' y1='0' x2='30' y2='60' stroke='%23C9A84C' stroke-width='0.5'/%3E%3Cline x1='0' y1='30' x2='60' y2='30' stroke='%23C9A84C' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px;
}
.gallery-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--gold); opacity: 0.12; }

/* ─── CHARITY SECTION ────────────────────────────────────────── */
.charity-section { padding: 6rem 0; background: var(--navy); position: relative; overflow: hidden; text-align: center; }
.charity-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%); }
.charity-inner { position: relative; max-width: 700px; margin: 0 auto; }
.charity-quote { font-family: var(--display); font-size: clamp(1.5rem, 4vw, 2.4rem); font-style: italic; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.4; margin-bottom: 1.5rem; letter-spacing: 0.02em; }
.charity-attr { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem; }
.charity-stats { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.charity-stat-num { font-family: var(--display); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.charity-stat-label { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ─── CONTACT / CTA BAND ─────────────────────────────────────── */
.contact-band { background: var(--gold-faint); border-top: 1px solid var(--parchment); border-bottom: 1px solid var(--parchment); padding: 4rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-block h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; letter-spacing: 0.02em; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; font-family: var(--sans); font-size: 0.88rem; color: var(--ink-mid); line-height: 1.5; }
.contact-detail svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.contact-map { height: 220px; background: var(--navy-light); border-radius: 2px; overflow: hidden; border: 1px solid var(--stone); position: relative; display: flex; align-items: center; justify-content: center; }
.contact-map-placeholder { font-family: var(--sans); font-size: 0.78rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; text-align: center; }

/* ─── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--navy); padding: 4.5rem 0 4rem; position: relative;
  overflow: hidden; border-bottom: 3px solid rgba(201,168,76,0.25);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.page-hero-inner { position: relative; }
.breadcrumb {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1rem; display: flex; gap: 0.5rem; align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(201,168,76,0.5); }
.page-eyebrow {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.75rem;
}
.page-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.page-title {
  font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600; color: #fff; line-height: 1.05; letter-spacing: 0.02em;
}
.page-title em { display: block; font-style: italic; font-weight: 300; color: var(--gold-light); font-size: 0.62em; letter-spacing: 0.06em; margin-top: 0.15em; }
.page-intro { font-family: var(--sans); font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 640px; margin-top: 1.2rem; }

/* ─── INTRO / CENTERED TEXT BLOCK ───────────────────────────── */
.intro-section { padding: 4rem 0 2rem; }
.intro-text { max-width: 680px; margin: 0 auto; text-align: center; }
.intro-text p { font-size: 1.05rem; color: var(--ink-mid); line-height: 1.8; margin-bottom: 1rem; }

/* ─── OFFICERS PAGE ──────────────────────────────────────────── */
.go-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.go-card { background: var(--navy); border: 1px solid rgba(201,168,76,0.2); border-radius: 2px; overflow: hidden; transition: border-color 0.25s, transform 0.25s; }
.go-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-3px); }
.go-card-accent { height: 3px; background: linear-gradient(to right, var(--gold), transparent); }
.go-card-body { padding: 1.75rem; }
.go-role { font-family: var(--sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.go-name { font-family: var(--display); font-size: 1.3rem; font-weight: 600; color: #fff; letter-spacing: 0.02em; margin-bottom: 0.3rem; }
.go-since { font-family: var(--sans); font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; }
.go-initial { width: 48px; height: 48px; border-radius: 50%; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.2rem; font-weight: 600; color: var(--gold); margin-bottom: 1rem; }
.officers-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.officers-table thead th { font-family: var(--sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--parchment); background: var(--navy); }
.officers-table thead th:first-child { padding-left: 1.5rem; }
.officers-table tbody tr { border-bottom: 1px solid var(--parchment); transition: background 0.15s; }
.officers-table tbody tr:hover { background: rgba(201,168,76,0.04); }
.officers-table tbody td { padding: 0.9rem 1rem; font-size: 0.95rem; color: var(--ink-mid); vertical-align: middle; }
.officers-table tbody td:first-child { padding-left: 1.5rem; font-family: var(--display); font-size: 1rem; font-weight: 500; color: var(--navy); }
.officers-table tbody td:last-child { font-family: var(--sans); font-size: 0.78rem; color: var(--ink-muted); }
.rank-badge { display: inline-flex; align-items: center; gap: 0.35rem; font-family: var(--sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 2px; }
.rank-elected { background: rgba(201,168,76,0.12); color: #7A6010; border: 1px solid rgba(201,168,76,0.25); }
.rank-appointed { background: rgba(30,50,72,0.08); color: var(--navy); border: 1px solid rgba(30,50,72,0.12); }
.pm-section { background: var(--navy); padding: 4rem 0; }
.pm-section .section-title { color: #fff; }
.pm-section .section-title em { color: var(--gold-light); }
.pm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.5rem; margin-top: 2.5rem; }
.pm-item { padding: 0.75rem 1rem; border: 1px solid rgba(201,168,76,0.08); border-radius: 2px; transition: background 0.15s, border-color 0.15s; }
.pm-item:hover { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.2); }
.pm-year { font-family: var(--sans); font-size: 0.65rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.pm-name { font-family: var(--display); font-size: 0.95rem; color: rgba(255,255,255,0.8); letter-spacing: 0.02em; }

/* ─── HISTORY PAGE ───────────────────────────────────────────── */
.history-section { padding: 5rem 0; }
.history-section + .history-section { border-top: 1px solid var(--parchment); }
.history-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.history-sidebar { position: sticky; top: 6rem; }
.history-year-badge { display: inline-flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 3.5rem; font-weight: 600; color: var(--gold); opacity: 0.15; line-height: 1; }
.history-body p { font-size: 1.05rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1.25rem; }
.history-body p:last-child { margin-bottom: 0; }
.fidelitas-section { background: var(--navy); padding: 5rem 0; }
.fidelitas-section .section-title { color: #fff; }
.fidelitas-section .section-title em { color: var(--gold-light); }
.fidelitas-section .history-body p { color: rgba(255,255,255,0.65); }
.sub-nav { padding: 4rem 0; background: var(--gold-faint); border-top: 1px solid var(--parchment); }
.sub-nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.sub-nav-card { background: #fff; border: 1px solid var(--parchment); border-radius: 2px; padding: 2rem; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; }
.sub-nav-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 12px 40px rgba(13,27,42,0.1); }
.sub-nav-label { font-family: var(--sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.sub-nav-title { font-family: var(--display); font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; letter-spacing: 0.02em; }
.sub-nav-desc { font-family: var(--sans); font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1.25rem; }
.sub-nav-link { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 1px; transition: color 0.2s; }
.sub-nav-card:hover .sub-nav-link { color: var(--gold); }

/* ─── ABOUT FREEMASONRY PAGE ─────────────────────────────────── */
/* Intro */
.intro-section{padding:5rem 0}
.intro-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}
.intro-body p{font-size:1.05rem;color:var(--ink-mid);line-height:1.85;margin-bottom:1.25rem}
/* Facts */
.facts-section{background:var(--navy);padding:5rem 0}
.facts-section .section-title{color:#fff}
.facts-section .section-title em{color:var(--gold-light)}
.facts-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;margin-top:3rem}
.fact-card{border:1px solid rgba(201,168,76,.15);border-radius:2px;padding:2rem;background:rgba(255,255,255,.03);transition:border-color .2s,background .2s}
.fact-card:hover{border-color:rgba(201,168,76,.35);background:rgba(201,168,76,.04)}
.fact-num{font-family:var(--display);font-size:2.5rem;font-weight:600;color:var(--gold);opacity:.4;line-height:1;margin-bottom:.75rem}
.fact-title{font-family:var(--display);font-size:1.2rem;font-weight:600;color:#fff;margin-bottom:.5rem;letter-spacing:.02em}
.fact-body{font-family:var(--sans);font-size:.88rem;color:rgba(255,255,255,.55);line-height:1.7}
/* Values */
.values-section{padding:5rem 0}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:3rem}
.value-item{text-align:center;padding:2rem 1.5rem;border-bottom:2px solid var(--parchment);transition:border-color .2s}
.value-item:hover{border-color:var(--gold)}
.value-icon{margin:0 auto 1.25rem;width:48px;height:48px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(201,168,76,.35);border-radius:50%;color:var(--gold)}
.value-name{font-family:var(--display);font-size:1.25rem;font-weight:600;color:var(--navy);margin-bottom:.5rem;letter-spacing:.02em}
.value-desc{font-family:var(--sans);font-size:.85rem;color:var(--ink-soft);line-height:1.6}
/* Degrees */
.degrees-section{background:var(--gold-faint);border-top:1px solid var(--parchment);padding:5rem 0}
.degree-list{display:flex;flex-direction:column;gap:0;margin-top:2.5rem;max-width:700px}
.degree-item{display:grid;grid-template-columns:60px 1fr;gap:1.5rem;padding:1.5rem 0;border-bottom:1px solid var(--parchment);align-items:start}
.degree-item:last-child{border-bottom:none}
.degree-num{font-family:var(--display);font-size:2rem;font-weight:600;color:var(--gold);opacity:.5;line-height:1}
.degree-name{font-family:var(--display);font-size:1.15rem;font-weight:600;color:var(--navy);margin-bottom:.35rem;letter-spacing:.02em}
.degree-desc{font-family:var(--sans);font-size:.88rem;color:var(--ink-soft);line-height:1.6}
/* Famous */
.famous-section{padding:5rem 0}
.famous-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1rem;margin-top:2.5rem}
.famous-card{background:var(--navy);border:1px solid rgba(201,168,76,.1);border-radius:2px;padding:1.5rem;transition:border-color .2s}
.famous-card:hover{border-color:rgba(201,168,76,.3)}
.famous-name{font-family:var(--display);font-size:1.05rem;font-weight:600;color:#fff;margin-bottom:.25rem;letter-spacing:.02em}
.famous-detail{font-family:var(--sans);font-size:.72rem;color:var(--gold);letter-spacing:.06em;text-transform:uppercase;margin-bottom:.35rem}
.famous-note{font-family:var(--sans);font-size:.78rem;color:rgba(255,255,255,.4);line-height:1.5}
/* Join */
.join-section{background:var(--navy);padding:5rem 0;text-align:center}
.join-section .section-title{color:#fff}
.join-section .section-title em{color:var(--gold-light)}
.join-body{font-family:var(--sans);font-size:1rem;color:rgba(255,255,255,.55);line-height:1.75;max-width:560px;margin:1.5rem auto 2.5rem}

/* ─── CONTENT PAGE (2-col: prose + sidebar) ──────────────────── */
.content-section { padding: 5rem 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.content-body p, .prose p { font-size: 1.05rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1.25rem; }
.content-body p:last-child, .prose p:last-child { margin-bottom: 0; }
.prose { max-width: 740px; }
.info-box { background: var(--navy); border: 1px solid rgba(201,168,76,0.2); border-radius: 2px; padding: 2rem; }
.info-box-title { font-family: var(--display); font-size: 1.1rem; font-weight: 600; color: var(--gold); margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(201,168,76,.2); letter-spacing: 0.04em; }
.info-box-item { display: flex; gap: 0.75rem; margin-bottom: 0.85rem; font-family: var(--sans); font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.info-box-item:last-child { margin-bottom: 0; }
.info-box-row { display: flex; gap: 1.25rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(201,168,76,0.12); font-family: var(--sans); font-size: 0.88rem; line-height: 1.65; align-items: baseline; }
.info-box-row:last-child { border-bottom: none; }
.info-box-key { color: var(--gold-light); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem; min-width: 90px; flex-shrink: 0; padding-top: .15rem; }
.info-box-val { color: rgba(255,255,255,0.88); }

/* ─── QUOTE BLOCK ────────────────────────────────────────────── */
.quote-block { background: var(--navy); padding: 2.5rem 3rem; border-left: 3px solid var(--gold); margin: 2.5rem 0; }
.quote-block blockquote { font-family: var(--display); font-size: 1.5rem; font-style: italic; font-weight: 300; color: #fff; line-height: 1.4; letter-spacing: 0.02em; }
.quote-block cite { display: block; font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 1rem; }

/* ─── FORGET-ME-NOT ICON ─────────────────────────────────────── */
.fmn-icon { display: flex; justify-content: center; padding: 2.5rem 0; margin: 2rem 0; background: var(--gold-faint); border: 1px solid var(--parchment); border-radius: 2px; }

/* ─── R5R DISPLAY ────────────────────────────────────────────── */
.r5r-display { background: var(--navy); border: 1px solid rgba(201,168,76,0.25); border-radius: 2px; padding: 2.5rem; text-align: center; }
.r5r-abbr { font-family: var(--display); font-size: 4rem; font-weight: 600; color: var(--gold); letter-spacing: 0.2em; line-height: 1; margin-bottom: 0.5rem; }
.r5r-full { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.4; margin-bottom: 1rem; }
.r5r-translation { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); opacity: 0.6; }
.r5r-roses { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.r5r-rose { color: var(--gold); font-size: 1.2rem; opacity: 0.7; }

/* ─── HONORARY PAGES ─────────────────────────────────────────── */
.hpm-section, .hm-section { background: var(--navy); padding: 4rem 0 5rem; }
.hpm-section .section-title, .hm-section .section-title { color: #fff; }
.hpm-section .section-title em, .hm-section .section-title em { color: var(--gold-light); }
.hpm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem; margin-top: 2.5rem; }
.hpm-card { background: #fff; border: 1px solid rgba(201,168,76,0.3); border-radius: 2px; padding: 1.25rem 1.5rem; transition: background 0.2s, border-color 0.2s; }
.hpm-card:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.55); }
.hpm-year { font-family: var(--sans); font-size: 0.65rem; font-weight: 700; color: var(--gold-dark, #a07828); letter-spacing: 0.12em; margin-bottom: 0.3rem; text-transform: uppercase; }
.hpm-name { font-family: var(--display); font-size: 1rem; color: var(--navy); letter-spacing: 0.02em; line-height: 1.3; }
.hpm-note { font-family: var(--sans); font-size: 0.72rem; color: var(--ink-soft); margin-top: 0.25rem; letter-spacing: 0.04em; }
.hm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.hm-card { background: #fff; border: 1px solid rgba(201,168,76,0.3); border-radius: 2px; padding: 1.5rem; transition: background 0.2s, border-color 0.2s; }
.hm-card:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.55); }
.hm-title { font-family: var(--sans); font-size: 0.6rem; font-weight: 700; color: var(--gold-dark, #a07828); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.4rem; }
.hm-name { font-family: var(--display); font-size: 1.1rem; color: var(--navy); letter-spacing: 0.02em; margin-bottom: 0.25rem; }
.hm-detail { font-family: var(--sans); font-size: 0.75rem; color: var(--ink-soft); letter-spacing: 0.04em; }
.hm-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }
.honour-star { font-size: 0.85rem; color: var(--gold-dark, #a07828); line-height: 1; flex-shrink: 0; margin-top: 1px; opacity: 0.85; }
.hm-memoriam { font-style: italic; color: var(--ink-muted) !important; }
.about-section { padding: 4rem 0; }
.about-text { max-width: 680px; }
.about-text p { font-size: 1.05rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1.25rem; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy); border-top: 1px solid rgba(201,168,76,0.2); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-family: var(--sans); font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-brand .nav-brand-name { font-size: 1rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-family: var(--sans); font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.2s; letter-spacing: 0.02em; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-family: var(--sans); font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
.footer-accreditation { display: flex; align-items: center; gap: 1rem; font-family: var(--sans); font-size: 0.68rem; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }
.footer-accreditation span::before { content: '·'; margin-right: 0.5rem; color: rgba(201,168,76,0.3); }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .masonry-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .intro-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand  { grid-column: span 2; }
}
@media (max-width: 900px) {
  .go-grid            { grid-template-columns: 1fr 1fr; }
  .history-grid,
  .history-grid.reverse { grid-template-columns: 1fr; }
  .history-sidebar    { position: static; }
  .sub-nav-grid       { grid-template-columns: 1fr; }
  .content-grid       { grid-template-columns: 1fr; }
  .facts-grid         { grid-template-columns: 1fr; }
  .famous-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand       { grid-column: span 2; }
}
@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }
  .nav-links    { display: none; }
  .nav-toggle   { display: flex; align-items: center; }
  .pillars-inner { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(3) { border-top: 1px solid rgba(201,168,76,0.12); }
  .pillar:nth-child(4) { border-top: 1px solid rgba(201,168,76,0.12); border-right: none; }
  .news-grid     { grid-template-columns: 1fr; }
  .events-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-brand  { grid-column: auto; }
  .hero-crest-display { display: none; }
  .next-meeting-inner { flex-direction: column; align-items: flex-start; }
  .meeting-cta   { margin-left: 0; }
  .charity-stats { gap: 2rem; }
  .values-grid   { grid-template-columns: 1fr; }
  .famous-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .go-grid { grid-template-columns: 1fr; }
  .officers-table tbody td:last-child { display: none; }
}
@media (max-width: 480px) {
  .news-grid    { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .pillars-inner { grid-template-columns: 1fr 1fr; }
}
