:root {
  --bg: #171a14;
  --bg-elevated: #1c2018;
  --panel: #20241b;
  --line: #383d30;
  --line-soft: #2b2f24;
  --brass: #c1903f;
  --brass-dim: #8a6a34;
  --sage: #8a9a72;
  --cream: #eee7d6;
  --muted: #9b9686;
  --safety: #d3572c;
  --nav-h: 68px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* faint target-ring backdrop */
.rings {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(140vh, 1600px);
  height: min(140vh, 1600px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.045;
  z-index: 0;
}
.rings svg { width: 100%; height: 100%; }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(23, 26, 20, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark-link {
  text-decoration: none;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.wordmark-link:hover { color: var(--brass); }

.sigil {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--brass);
}

.nav {
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-item > a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 14px;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  display: inline-flex;
  align-items: center;
}
.nav-item > a:hover { color: var(--cream); }
.nav-item > a.active {
  color: var(--brass);
  border-bottom-color: var(--brass-dim);
}

.nav-item.has-submenu > a { padding-right: 4px; }

.submenu-toggle {
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 10px 12px 10px 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.submenu-toggle svg {
  width: 10px;
  height: 6px;
  display: block;
  transition: transform 0.2s;
}
.nav-item.has-submenu:hover > a,
.nav-item.has-submenu:focus-within > a,
.nav-item.has-submenu.open > a { color: var(--cream); }
.nav-item.has-submenu:hover .submenu-toggle,
.nav-item.has-submenu:focus-within .submenu-toggle,
.nav-item.has-submenu.open .submenu-toggle { color: var(--cream); }
.nav-item.has-submenu:hover .submenu-toggle svg,
.nav-item.has-submenu:focus-within .submenu-toggle svg,
.nav-item.has-submenu.open .submenu-toggle svg { transform: rotate(180deg); }
.nav-item.has-submenu > a.active + .submenu-toggle { color: var(--brass); }

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 3px;
  list-style: none;
  padding: 6px 0;
  margin: 8px 0 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 30;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* invisible hover bridge covering the gap between parent and submenu,
   so the mouse can traverse without losing :hover */
.submenu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.nav-item.has-submenu:hover .submenu,
.nav-item.has-submenu:focus-within .submenu,
.nav-item.has-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.submenu li { margin: 0; padding: 0; }
.submenu a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  color: var(--cream);
  text-decoration: none;
  font-weight: 400;
  border-left: 2px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.submenu a:hover,
.submenu a:focus-visible {
  color: var(--brass);
  background: rgba(193, 144, 63, 0.08);
  border-left-color: var(--brass-dim);
  outline: none;
}
.submenu a.active {
  color: var(--brass);
  border-left-color: var(--brass);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  border-radius: 3px;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--brass-dim); color: var(--brass); }
.nav-toggle .bar {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  margin-right: 8px;
  position: relative;
}
.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}
.nav-toggle .bar::before { top: -5px; }
.nav-toggle .bar::after  { top: 5px; }

@media (max-width: 860px) {
  .header-inner { padding: 0 20px; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 20px;
    display: none;
  }
  .nav.open { display: flex; }

  .nav-item {
    display: block;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
  }
  .nav-item:last-child { border-bottom: none; }

  .nav-item > a {
    padding: 14px 4px;
    display: block;
    letter-spacing: 0.12em;
    border-bottom: none;
  }
  .nav-item > a.active { border-bottom-color: transparent; }

  .nav-item.has-submenu {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .nav-item.has-submenu > a { padding-right: 4px; }
  .submenu-toggle { padding: 14px 12px; align-self: stretch; }

  .submenu {
    position: static;
    grid-column: 1 / -1;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 12px 20px;
    margin: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    display: none;
    min-width: 0;
  }
  .submenu::before { display: none; }
  /* on mobile, only .open shows the submenu — override desktop hover */
  .nav-item.has-submenu:hover .submenu,
  .nav-item.has-submenu:focus-within .submenu {
    display: none;
  }
  .nav-item.has-submenu.open .submenu { display: block; }

  .submenu a {
    padding: 10px 4px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    border-left: none;
  }
  .submenu a:hover,
  .submenu a.active {
    color: var(--brass);
    background: transparent;
    border-left: none;
  }
}

/* main content wrapper */
.main {
  flex: 1;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 32px 72px;
}
@media (max-width: 720px) {
  .main { padding: 36px 20px 56px; }
}

/* homepage grid */
.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) {
  .home-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* hero (index) */
.hero { margin-bottom: 44px; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin: 0 0 18px;
}
.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--cream);
}
.hero h1 em {
  font-style: normal;
  color: var(--brass);
}
.hero .lede {
  font-size: 17px;
  line-height: 1.65;
  color: #cfc9b8;
  margin: 0;
  max-width: 60ch;
}

/* section eyebrow / rule */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

/* announcements */
.announcements { margin-bottom: 40px; }

.announcement {
  border-left: 2px solid var(--brass-dim);
  padding: 4px 0 4px 20px;
  margin: 0 0 32px;
}
.announcement:last-child { margin-bottom: 0; }
.announcement .date {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 6px;
  font-weight: 600;
}
.announcement h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--cream);
}
.announcement h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.announcement h2 a:hover { color: var(--brass); }

.announcement h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--cream);
}

.announcement p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #cfc9b8;
  margin: 0 0 8px;
}
.announcement p:last-child { margin-bottom: 0; }

.announcement-body p:last-child { margin-bottom: 0; }

/* excerpt clip on the home page — approx 5 rendered lines,
   with a soft fade-out so the truncation reads intentionally */
.announcement-body.excerpt {
  --line-h: calc(15.5px * 1.65);
  max-height: calc(var(--line-h) * 5);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
}

.announcement .read-more {
  margin: 14px 0 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.announcement .read-more a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid var(--brass-dim);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.announcement .read-more a:hover { color: var(--cream); border-color: var(--cream); }

/* dedicated announcement page */
.announcement-single {
  max-width: 780px;
  padding-left: 24px;
}
.announcement-single .announcement-body p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}

/* Long-form narrative content used by info-membership, info-rules, etc. */
.prose { max-width: 820px; }
.prose h2,
.prose h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--cream);
  margin: 36px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  scroll-margin-top: 96px;
}
.prose h2 { font-size: 26px; }
.prose h3 { font-size: 22px; }
.prose > :first-child { margin-top: 0; }
.prose p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #cfc9b8;
  margin: 0 0 14px;
}
.prose ul {
  margin: 0 0 22px;
  padding-left: 22px;
  color: #cfc9b8;
}
.prose li {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 10px;
}
.prose li::marker { color: var(--brass-dim); }
.prose a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid var(--brass-dim);
}
.prose a:hover { color: var(--cream); border-color: var(--cream); }
.prose .signoff {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 8px;
}
.prose .fine-print {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* Compact key/value list used on the youth programs page */
.program-facts {
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px 24px;
  max-width: 780px;
}
.program-facts dt {
  color: var(--sage);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 4px;
}
.program-facts dd {
  margin: 0;
  color: #cfc9b8;
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .program-facts { grid-template-columns: 1fr; gap: 2px 0; }
  .program-facts dt { padding-top: 14px; }
  .program-facts dt:first-of-type { padding-top: 0; }
}

/* Small logo strip used at the top of some discipline pages */
.logo-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 0 32px;
  flex-wrap: wrap;
}
.logo-header img {
  height: auto;
  max-width: 140px;
  border-radius: 3px;
  background: rgba(238, 231, 214, 0.04);
  padding: 6px;
}

/* Directors info panel used at the top of some discipline pages */
.directors {
  margin: 0 0 32px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(32, 36, 27, 0.4);
}
.directors dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin: 0 0 4px;
}
.directors dd {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--cream);
  line-height: 1.5;
}
.directors dd:last-child { margin-bottom: 0; }
.directors a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid var(--brass-dim);
}
.directors a:hover { color: var(--cream); border-color: var(--cream); }

/* Rules page — callout for the "responsibility" statements */
.callout {
  border-left: 3px solid var(--safety);
  padding: 14px 0 14px 22px;
  margin: 0 0 32px;
  background: rgba(211, 87, 44, 0.05);
}
.callout p {
  margin: 0 0 10px;
  color: var(--cream);
  font-size: 16px;
  line-height: 1.55;
}
.callout p:last-child { margin-bottom: 0; }
.callout em { font-style: italic; }
.callout .date {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--safety);
  font-weight: 700;
  margin: 0 0 10px;
}

/* Rules page — table of contents */
.rules-toc {
  background: rgba(32, 36, 27, 0.5);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 22px 24px;
  margin: 0 0 44px;
}
.rules-toc .toc-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 14px;
}
.rules-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 4px 24px;
}
.rules-toc li { margin: 0; padding: 0; font-size: inherit; line-height: inherit; }
.rules-toc a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  font-size: 13.5px;
  padding: 4px 0;
  display: inline-block;
  transition: color 0.15s, border-color 0.15s;
}
.rules-toc a:hover {
  color: var(--brass);
  border-bottom-color: var(--brass-dim);
}
.rules-toc a::before {
  content: '›';
  color: var(--brass-dim);
  margin-right: 8px;
}

.dues-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  max-width: 500px;
}
.dues-list li {
  padding: 12px 0;
  font-size: 15.5px;
  color: #cfc9b8;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.dues-list li:last-child { border-bottom: none; }
.dues-list li strong {
  color: var(--brass);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 700;
}

.top-link { font-size: 13px; margin: 0 0 24px; }

/* FAQ page */
.faq-intro {
  max-width: 780px;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.65;
  color: #cfc9b8;
}
.faq-intro a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid var(--brass-dim);
}
.faq-intro a:hover { color: var(--cream); border-color: var(--cream); }

.faq-list {
  max-width: 780px;
  border-top: 1px solid var(--line);
}
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-q {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.35;
  color: var(--cream);
  margin: 0 0 12px;
  font-weight: 700;
}
.faq-marker {
  color: var(--brass);
  font-weight: 700;
  margin-right: 8px;
  letter-spacing: 0.02em;
}
.faq-marker-a { color: var(--sage); }

.faq-a p, .faq-a div {
  font-size: 15.5px;
  line-height: 1.7;
  color: #cfc9b8;
  margin: 0 0 10px;
}
.faq-a p:last-child, .faq-a div:last-child { margin-bottom: 0; }
.faq-a a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid var(--brass-dim);
}
.faq-a a:hover { color: var(--cream); border-color: var(--cream); }

/* board of directors page */
.board-intro {
  max-width: 780px;
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.65;
  color: #cfc9b8;
}
.board-intro a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid var(--brass-dim);
}
.board-intro a:hover { color: var(--cream); border-color: var(--cream); }

.board-section {
  max-width: 820px;
  margin: 0 0 48px;
}
.board-section > h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  color: var(--cream);
  margin: 0 0 18px;
  font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.board-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.board-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding: 8px 12px 12px 0;
  border-bottom: 1px solid var(--line);
}
.board-table td {
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--cream);
  vertical-align: top;
  line-height: 1.4;
}
.board-table tr:last-child td { border-bottom: none; }
.board-table td.role {
  color: var(--sage);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 34%;
}
.board-table td.name { width: 30%; }
.board-table td.contact {
  color: var(--muted);
  font-size: 14px;
}
.board-table td a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid var(--brass-dim);
}
.board-table td a:hover { color: var(--cream); border-color: var(--cream); }

@media (max-width: 640px) {
  .board-table, .board-table thead, .board-table tbody, .board-table tr, .board-table th, .board-table td {
    display: block;
  }
  .board-table thead { display: none; }
  .board-table tr {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .board-table tr:last-child { border-bottom: none; }
  .board-table td {
    padding: 2px 0;
    border: none;
    width: auto !important;
  }
  .board-table td.role {
    font-size: 11px;
    margin-bottom: 4px;
  }
  .board-table td.name {
    color: var(--cream);
    font-size: 15px;
    margin-bottom: 2px;
  }
}

/* sidebar (calendar on index) */
.sidebar { position: relative; }
@media (min-width: 981px) {
  .sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 32px);
  }
}

.calendar-frame {
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: #f4f1ea;
  position: relative;
}
.calendar-frame iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}
@media (max-width: 480px) {
  .calendar-frame iframe { height: 460px; }
}

/* corner bolts (reusable) */
.framed {
  position: relative;
}
.framed .bolt {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #6b6350, #33301f 70%);
  box-shadow: 0 0 0 1px var(--line);
  z-index: 2;
  pointer-events: none;
}
.framed .bolt.tl { top: 8px; left: 8px; }
.framed .bolt.tr { top: 8px; right: 8px; }
.framed .bolt.bl { bottom: 8px; left: 8px; }
.framed .bolt.br { bottom: 8px; right: 8px; }

.calendar-more {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}
.calendar-more a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid var(--brass-dim);
}
.calendar-more a:hover { color: var(--cream); border-color: var(--cream); }

/* full-width calendar page */
.calendar-full {
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: #f4f1ea;
}
.calendar-full iframe {
  display: block;
  width: 100%;
  height: 820px;
  border: 0;
}
@media (max-width: 720px) {
  .calendar-full iframe { height: 620px; }
}

/* map page */
.range-address {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--cream);
  margin: 0 0 12px;
}
.map-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 32px;
}
.map-links a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid var(--brass-dim);
  padding-bottom: 1px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.map-links a:hover { color: var(--cream); border-color: var(--cream); }

.map-frame {
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--panel);
  max-width: 940px;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  filter: saturate(0.85);
}
@media (max-width: 640px) {
  .map-frame iframe { height: 400px; }
}

/* stub / content page */
.page-hero {
  max-width: 780px;
  margin-bottom: 40px;
}
.page-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--cream);
}
.page-hero .lede {
  font-size: 16.5px;
  line-height: 1.65;
  color: #cfc9b8;
  margin: 0;
}

.placeholder {
  margin-top: 24px;
  padding: 28px 28px;
  border: 1px dashed var(--line);
  border-radius: 3px;
  background: rgba(32, 36, 27, 0.4);
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 780px;
}
.placeholder strong {
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}

/* footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 28px 32px 40px;
  background: rgba(23, 26, 20, 0.6);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.footer-inner a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid var(--brass-dim);
}
.footer-inner a:hover { color: var(--cream); border-color: var(--cream); }
.footer-inner .footer-mark {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--cream);
}

@media (max-width: 720px) {
  .site-footer { padding: 24px 20px 32px; }
}

/* breadcrumbs on sub-pages */
.crumbs {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 600;
}
.crumbs a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.crumbs a:hover { color: var(--brass); border-bottom-color: var(--brass-dim); }
.crumbs .sep { color: var(--line); }
.crumbs .current { color: var(--cream); }

/* subpage grid (parent listing pages) */
.subpage-section {
  max-width: 940px;
}
.subpage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.subpage-card {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(32, 36, 27, 0.4);
  text-decoration: none;
  color: var(--cream);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.subpage-card:hover {
  border-color: var(--brass-dim);
  background: rgba(32, 36, 27, 0.75);
  transform: translateY(-1px);
}
.subpage-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--brass);
  font-weight: 700;
  line-height: 1.2;
}
.subpage-card .meta {
  font-size: 11px;
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.subpage-card .snippet {
  font-size: 14.5px;
  margin: 0;
  color: #cfc9b8;
  line-height: 1.55;
  font-weight: 400;
}

/* single-column stacked variant of the subpage grid */
.subpage-grid.stack {
  grid-template-columns: 1fr;
  gap: 12px;
}
.subpage-grid.stack .subpage-card {
  padding: 20px 24px;
}
.subpage-grid.stack .subpage-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
