:root {
  --bg: #faf8f3;
  --bg-deep: #f0ece0;
  --ink: #14120f;
  --ink-soft: #3a3530;
  --rule: #b8ad92;
  --brass: #6b5520;
  --brass-deep: #4d3d16;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 20px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1000;
}

a { color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ---------- HEADER + NAV ---------- */
header.site {
  padding: 2.5rem 0 0;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.topbar .mark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.topbar .mark:hover { opacity: 0.7; }
.topbar .mark img {
  width: 56px;
  height: 56px;
  display: block;
}
.topbar .right { color: var(--ink-soft); font-weight: 400; }

nav.primary {
  margin-top: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
nav.primary a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s ease;
}
nav.primary a:hover,
nav.primary a.active {
  color: var(--ink);
}
nav.primary a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1.75rem;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
}

/* ---------- HERO (index) ---------- */
.hero {
  min-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 0 6rem;
  position: relative;
}
.lodge-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeUp 1.2s ease-out 0.1s both;
}
.lodge-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--brass);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  animation: fadeUp 1.2s ease-out 0.25s both;
}

.emblem {
  width: 90px;
  height: 90px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  animation: fadeUp 1.2s ease-out 0.4s both;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--ink-soft);
  max-width: 16ch;
  animation: fadeUp 1.4s ease-out 0.55s both;
}

.meeting-info {
  margin-top: 4.5rem;
  font-family: 'EB Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  color: var(--ink);
  letter-spacing: 0.05em;
  animation: fadeUp 1.2s ease-out 0.85s both;
}
.meeting-info .label {
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85em;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 0.6rem;
}
.meeting-info .when { font-style: italic; font-weight: 400; }

/* ---------- INTERIOR PAGE HEADER ---------- */
.page-head {
  text-align: center;
  padding: 5rem 0 3rem;
}
.page-head .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}
.page-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.page-head .lede {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- SECTION RULES ---------- */
.rule-section {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin: 5rem 0 3rem;
}
.rule-section::before, .rule-section::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.rule-section span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------- PROSE ---------- */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}
.prose p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.prose p.italic { font-style: italic; color: var(--ink-soft); }
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 3rem 0 1.5rem;
  letter-spacing: 0.04em;
}
.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
  letter-spacing: 0.05em;
}
.prose ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.prose ul li {
  font-size: 1.15rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}
.prose ul li::before {
  content: '•';
  color: var(--brass);
  position: absolute;
  left: 0.3rem;
  font-size: 1.2rem;
}

/* ---------- ABOUT (homepage) ---------- */
.about {
  padding: 2rem 0 4rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.about p:last-child {
  color: var(--ink-soft);
  font-style: italic;
  font-size: 1.15rem;
}

/* ---------- PHOTO ---------- */
.photo-frame {
  margin: 5rem auto;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: var(--bg-deep);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--rule);
  pointer-events: none;
}
.photo-frame .placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- VISIT ---------- */
.visit {
  padding: 4rem 0;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.visit h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  margin-bottom: 1.5rem;
}
.visit p { color: var(--ink); font-size: 1.2rem; margin-bottom: 1rem; }
.address {
  font-style: italic;
  color: var(--ink);
  margin-top: 1.5rem;
  font-size: 1.25rem !important;
  line-height: 1.6;
}

/* ---------- EVENTS ---------- */
.event-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 0 3rem;
}
.event {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.event:last-child { border-bottom: none; }
.event .date {
  font-family: 'Cormorant Garamond', serif;
  text-align: right;
}
.event .date .month {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.3rem;
}
.event .date .day {
  display: block;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.event .date .year {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 0.4rem;
}
.event h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.event .meta {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.event p { font-size: 1.1rem; line-height: 1.6; }

/* ---------- RESOURCES ---------- */
.resource-group {
  max-width: 760px;
  margin: 0 auto 3rem;
}
.resource-group h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule);
}
.resource-list { list-style: none; }
.resource-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(184, 173, 146, 0.4);
}
.resource-list li:last-child { border-bottom: none; }
.resource-list a {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
}
.resource-list a:hover { color: var(--brass); }
.resource-list .desc {
  display: block;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 0.25rem;
  font-weight: normal;
}
.resource-list .arrow {
  color: var(--brass);
  font-family: 'Cormorant Garamond', serif;
  flex-shrink: 0;
}

/* ---------- FORM ---------- */
.contact {
  padding: 3rem 0 6rem;
  max-width: 600px;
  margin: 0 auto;
}
.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.8rem;
}
.contact .preface {
  text-align: center;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}
.field { margin-bottom: 1.8rem; position: relative; }
.field label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.6rem 0;
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  color: var(--ink);
  transition: border-color 0.3s ease;
  resize: none;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--brass);
}
.field textarea { min-height: 120px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.submit {
  display: inline-block;
  margin-top: 1rem;
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 1rem 2.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
}
.submit:hover {
  background: var(--ink);
  color: var(--bg);
  letter-spacing: 0.36em;
}
.form-status {
  margin-top: 1.5rem;
  text-align: center;
  font-style: italic;
  color: var(--brass-deep);
  min-height: 1.5em;
  font-size: 1.05rem;
}

/* ---------- FEATURED EVENT (homepage) ---------- */
.featured-event {
  max-width: 820px;
  margin: 4rem auto;
  background: var(--bg-deep);
  border: 1px solid var(--rule);
  position: relative;
  padding: 2.5rem 2.5rem 2rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: center;
}
.featured-event::before {
  content: 'Upcoming';
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brass);
}
.featured-event .fe-thumb {
  display: block;
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.featured-event .fe-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.featured-event .fe-thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.featured-event .fe-body {
  text-align: left;
}
.featured-event .fe-date {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brass-deep);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.featured-event h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}
.featured-event .fe-summary {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  font-style: italic;
  line-height: 1.5;
}
.featured-event .fe-link {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 0.35rem;
  transition: all 0.3s ease;
}
.featured-event .fe-link:hover {
  color: var(--brass);
  letter-spacing: 0.36em;
}

/* ---------- EVENT FLYER (events page) ---------- */
.event-flyer {
  margin: 1.5rem 0;
  text-align: center;
}
.event-flyer img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--rule);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.event-flyer .caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

/* ---------- QR CODE (contact page) ---------- */
.qr-block {
  max-width: 380px;
  margin: 3rem auto 1rem;
  text-align: center;
}
.qr-block .qr-frame {
  display: inline-block;
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--rule);
}
.qr-block .qr-frame img {
  display: block;
  width: 220px;
  height: 220px;
}
.qr-block .qr-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* ---------- ARCHIVE ---------- */
.archive-intro {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.archive-intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-style: italic;
}

.archive-toc {
  max-width: 760px;
  margin: 0 auto 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.archive-toc a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}
.archive-toc a:hover { color: var(--brass); }
.archive-toc .count {
  color: var(--brass);
  font-weight: 400;
  margin-left: 0.4rem;
}

.archive-category {
  max-width: 820px;
  margin: 0 auto 5rem;
}
.archive-category h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 0.5rem;
}
.archive-category .cat-blurb {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.archive-category .empty-state {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-deep);
  border: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.archived-event {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--rule);
}
.archived-event:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.archived-event .ae-date {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--brass);
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
  text-align: center;
}
.archived-event .ae-date.approximate {
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.archived-event .ae-date.approximate::before { content: '— '; opacity: 0.6; }
.archived-event .ae-date.approximate::after { content: ' —'; opacity: 0.6; }
.archived-event h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.archived-event .ae-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.archived-event .ae-photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--rule);
}
.archived-event .ae-photos.single img {
  height: auto;
  max-height: 480px;
  object-fit: contain;
}
.archived-event .ae-recap p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.archived-event .ae-recap p:last-child { margin-bottom: 0; }

/* ---------- MAP EMBED ---------- */
.map-frame {
  max-width: 760px;
  margin: 0 auto 2rem;
  border: 1px solid var(--rule);
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(0.3) sepia(0.05);
}
.map-link {
  text-align: center;
  margin: 1.5rem auto 0;
}
.map-link a {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 0.4rem;
  transition: all 0.3s ease;
}
.map-link a:hover {
  color: var(--brass);
  letter-spacing: 0.36em;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--rule);
  padding: 3rem 0 2.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  margin-top: 4rem;
}
footer .gl {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
footer .motto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brass);
  letter-spacing: 0.15em;
  margin-top: 1.5rem;
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 700px) {
  .container { padding: 0 1.5rem; }
  body { font-size: 18px; }
  .topbar { font-size: 0.85rem; letter-spacing: 0.15em; }
  .topbar .right { display: none; }
  .topbar .mark img { width: 44px; height: 44px; }
  nav.primary { gap: 1.5rem; margin-top: 2rem; }
  nav.primary a { font-size: 0.85rem; letter-spacing: 0.22em; }
  .lodge-name { letter-spacing: 0.12em; }
  .rule-section { margin: 4rem 0 2rem; gap: 1rem; }
  .photo-frame { margin: 3rem auto; }
  .event { grid-template-columns: 90px 1fr; gap: 1.5rem; }
  .event .date .day { font-size: 2rem; }
  .featured-event {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem 1.75rem;
  }
  .featured-event .fe-thumb {
    max-width: 240px;
    margin: 0 auto;
  }
  .featured-event .fe-body { text-align: center; }
}

/* ---------- LEADERSHIP STRIP (index, top of page) ---------- */
.leadership-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  padding: 1.75rem 0 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.leader {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.leader img,
.leader .portrait-pending {
  width: 88px;
  height: 158px;
  flex-shrink: 0;
  border: 1px solid var(--rule);
  display: block;
  object-fit: cover;
}
.leader .portrait-pending {
  border: 1px dashed var(--rule);
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.leader .portrait-pending span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  line-height: 1.5;
  opacity: 0.75;
}
.leader-text {
  text-align: left;
  min-width: 0;
}
.leader-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.leader-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.leader-note {
  margin-top: 0.55rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--brass);
  letter-spacing: 0.05em;
  opacity: 0.85;
}
.leader-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 0.15rem;
  transition: letter-spacing 0.3s ease;
}
.leader-link:hover { letter-spacing: 0.2em; opacity: 1; }
@media (max-width: 700px) {
  .leadership-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.4rem 0 1.2rem;
  }
  .leader { gap: 1rem; }
  .leader img,
  .leader .portrait-pending { width: 72px; height: 130px; }
  .leader-name { font-size: 0.98rem; }
  .leader-title { font-size: 0.8rem; }
  .leader-note { font-size: 0.72rem; }
}

/* ---------- TAGLINE SUBTITLE (year reference) ---------- */
.tagline-sub {
  margin-top: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--brass);
  letter-spacing: 0.18em;
  animation: fadeUp 1.4s ease-out 0.7s both;
}

/* ---------- CANDIDATES HOOK (cross-page link strip) ---------- */
.cc-hook {
  text-align: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.cc-hook-inline {
  margin: 4rem auto;
  max-width: 720px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2rem 0;
}
.cc-hook-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.cc-hook-line a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 0.3rem;
  transition: letter-spacing 0.3s ease, color 0.3s ease;
}
.cc-hook-line a:hover {
  color: var(--brass);
  letter-spacing: 0.2em;
}
@media (max-width: 700px) {
  .cc-hook-line a { font-size: 1rem; letter-spacing: 0.12em; }
}

/* ---------- FOOTER SOCIAL ---------- */
.footer-social { margin: 1rem 0 0.5rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink-soft);
  transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--brass); }

/* ---------- ARCHIVE GRID (Through the Years thumbnails) ---------- */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
}
.archive-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--bg-deep);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.archive-grid a:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(20, 18, 15, 0.15);
}
.archive-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.archive-category .cat-note {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 1rem auto 1.5rem;
  max-width: 640px;
  opacity: 0.8;
}
@media (max-width: 700px) {
  .archive-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
  }
}

/* ---------- WM MESSAGE PAGE ---------- */
.wm-letter {
  max-width: 720px;
  margin: 3rem auto 5rem;
  padding: 0 1rem;
}
.wm-head {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}
.wm-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--brass);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.wm-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.15;
}
.wm-body p {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.wm-sign {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.wm-fraternally {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.wm-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.wm-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}
.wm-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.wm-action {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--brass);
  padding: 0.85rem 1.8rem;
  min-width: 280px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease, letter-spacing 0.3s ease;
}
.wm-action:hover {
  background: var(--brass);
  color: var(--bg);
  letter-spacing: 0.22em;
}

/* ---------- CANDIDATES PAGE ---------- */
.page-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--brass);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}
.cc-block {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}
.cc-block p {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.cc-lead {
  font-size: 1.3rem !important;
  font-style: italic;
  color: var(--ink) !important;
  margin-bottom: 1.8rem !important;
}
.cc-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}
.cc-path {
  padding: 2rem;
  border: 1px solid var(--rule);
  background: var(--bg-deep);
}
.cc-path-primary {
  background: var(--bg);
  border: 1px solid var(--brass);
}
.cc-path-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--brass);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cc-path p {
  font-size: 1rem !important;
  margin-bottom: 1.5rem !important;
}
.cc-cta {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 0.3rem;
  transition: letter-spacing 0.3s ease, color 0.3s ease;
}
.cc-cta:hover {
  color: var(--brass);
  letter-spacing: 0.22em;
}
.cc-cta-alt { color: var(--ink-soft); }
.cc-cta-letter {
  font-size: 1.05rem;
  margin-top: 0.5rem;
}
.cc-note {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem !important;
  margin-top: 2rem !important;
}
.cc-letter {
  text-align: center;
}
@media (max-width: 700px) {
  .cc-paths { grid-template-columns: 1fr; gap: 1.5rem; }
  .cc-path { padding: 1.5rem; }
  .wm-action { min-width: 240px; padding: 0.75rem 1.4rem; font-size: 0.85rem; }
}

/* ---------- HISTORY TIMELINE (about page) ---------- */
.history-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
  text-align: center;
}
.history-intro p {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
}
.att-history {
  position: relative;
  max-width: 1000px;
  margin: 2rem auto 5rem;
  padding: 1rem;
}
.history-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
}

/* SVG primitives */
.ah-axis { stroke: var(--brass); stroke-width: 1; opacity: 0.4; }
.ah-tick { stroke: var(--brass); stroke-width: 1.2; opacity: 0.6; }
.ah-yr { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: 14px; fill: var(--brass); letter-spacing: 0.12em; text-anchor: middle; }
.ah-name { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 13px; fill: var(--ink); letter-spacing: 0.05em; text-anchor: middle; }
.ah-meta { font-family: 'EB Garamond', serif; font-style: italic; font-size: 11px; fill: var(--ink-soft); text-anchor: middle; }
.ah-yron { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-style: italic; font-size: 12px; fill: var(--brass); letter-spacing: 0.08em; text-anchor: middle; }
.ah-conn-cons { stroke: var(--brass); stroke-width: 1.3; fill: none; opacity: 0.7; }
.ah-label-cons { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 10.5px; fill: var(--brass); letter-spacing: 0.22em; text-transform: uppercase; }
.ah-conn-merge { stroke: var(--ink-soft); stroke-width: 1.3; fill: none; opacity: 0.7; }
.ah-label-merge { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 10.5px; fill: var(--ink-soft); letter-spacing: 0.22em; text-transform: uppercase; }
.ah-name-final { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 15px; letter-spacing: 0.12em; fill: var(--bg); text-anchor: middle; }
.ah-meta-final { font-family: 'EB Garamond', serif; font-style: italic; font-size: 12px; fill: var(--bg-deep); text-anchor: middle; }
.ah-yr-final { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-style: italic; font-size: 14px; fill: var(--bg-deep); letter-spacing: 0.1em; text-anchor: middle; }

/* Hit area for click/tap (invisible) */
.ah-hit {
  fill: transparent;
  cursor: pointer;
}
.ah-node { transition: opacity 0.6s ease, transform 0.6s ease; outline: none; }
.ah-node:focus-visible .ah-hit { stroke: var(--brass); stroke-width: 2; stroke-dasharray: 4 3; }

/* Hover/active highlight */
.ah-node:hover use,
.ah-node.ah-active use { filter: drop-shadow(0 2px 6px rgba(107, 85, 32, 0.35)); }
.ah-node:hover .ah-name,
.ah-node.ah-active .ah-name { fill: var(--brass-deep); }

/* Scroll-reveal: nodes start invisible, fade up when revealed */
.ah-node { opacity: 0; transform: translateY(12px); }
.ah-node.ah-revealed { opacity: 1; transform: translateY(0); }
.ah-conn-group { opacity: 0; transition: opacity 1s ease 0.2s; }
.ah-conn-group.ah-revealed { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .ah-node, .ah-conn-group { opacity: 1; transform: none; transition: none; }
}

/* Floating tooltip — absolute-positioned by JS relative to .att-history */
.ah-tip {
  position: absolute;
  z-index: 100;
  width: 320px;
  max-width: calc(100vw - 24px);
  padding: 1.25rem 1.5rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--brass);
  box-shadow: 0 8px 24px rgba(20, 18, 15, 0.18), 0 2px 6px rgba(20, 18, 15, 0.08);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: auto;
}
.ah-tip.ah-tip-open { opacity: 1; transform: translateY(0); }
.ah-tip-close {
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  cursor: pointer;
  padding: 0.15rem 0.45rem;
  line-height: 1;
  transition: color 0.2s ease;
}
.ah-tip-close:hover { color: var(--brass); }
.ah-tip-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.72rem;
  color: var(--brass);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.ah-tip-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
  line-height: 1.25;
  padding-right: 1.5rem;
}
.ah-tip-meta {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}
.ah-tip-text {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
}
/* Arrow pointing at the stone */
.ah-tip-arrow {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--bg);
  border-right: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  transform: translateX(-50%) rotate(45deg);
  pointer-events: none;
}
.ah-tip[data-arrow="bottom"] .ah-tip-arrow {
  bottom: -8px;
  /* rotated square; bottom-right corner of square peeks below */
}
.ah-tip[data-arrow="top"] .ah-tip-arrow {
  top: -8px;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid var(--brass);
  border-top: 1px solid var(--brass);
}

@media (max-width: 700px) {
  .att-history { margin: 1.5rem auto 3rem; padding: 0.5rem; }
  .ah-tip { width: 280px; padding: 1rem 1.2rem 0.95rem; }
  .ah-tip-name { font-size: 1rem; }
  .ah-tip-text { font-size: 0.9rem; }
}
