/* Shared page shell — used by /about, /board, /chief-letter, /contact,
   plus existing /volunteer, /sponsor, /legacy-circle (compatible). */
:root {
  --bg: hsl(0, 0%, 4%);
  --bg-elev: hsl(0, 0%, 7%);
  --card: hsl(0, 0%, 9%);
  --card-2: hsl(0, 0%, 11%);
  --text: hsl(40, 20%, 95%);
  --text-muted: hsl(40, 10%, 70%);
  --text-dim: hsl(40, 8%, 55%);
  --gold: hsl(43, 75%, 55%);
  --gold-hi: hsl(43, 80%, 62%);
  --gold-hover: hsl(43, 75%, 65%);
  --border: hsl(0, 0%, 18%);
  --border-soft: hsl(0, 0%, 14%);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--gold-hover); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }

/* SHARED HEADER (mirrors React app nav) */
.rrff-nav { position: sticky; top: 0; left: 0; right: 0; z-index: 50;
  background: hsla(0, 0%, 4%, 0.95); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); }
.rrff-nav-inner { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .rrff-nav-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .rrff-nav-inner { padding: 0 2rem; } }
.rrff-nav-row { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 1024px) { .rrff-nav-row { height: 5rem; } }
.rrff-brand { display: grid; grid-template-columns: 40px auto; align-items: center; column-gap: 12px; line-height: 1.1; text-decoration: none; }
.rrff-brand::before {
  content: '';
  grid-row: 1 / span 2;
  width: 40px; height: 40px;
  background-image: url('/images/rrff-icon-transparent.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.rrff-brand-1 { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; color: #fff; }
.rrff-brand-2 { font-size: 10px; letter-spacing: 0.25em; color: hsl(43, 75%, 55%); text-transform: uppercase; font-weight: 500; }
.rrff-nav-links { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .rrff-nav-links { display: flex; } }
.rrff-nav-links > a, .rrff-nav-links > .rrff-dropdown > button {
  font-size: 14px; color: rgba(255,255,255,0.8); text-decoration: none;
  transition: color 0.18s; background: none; border: 0; font-family: inherit;
  cursor: pointer; padding: 0; display: inline-flex; align-items: center; gap: 4px;
}
.rrff-nav-links a:hover, .rrff-nav-links > .rrff-dropdown > button:hover { color: hsl(43, 75%, 55%); }
.rrff-nav-links > a.rrff-donate,
.rrff-donate { background: hsl(43, 75%, 55%) !important; color: hsl(220, 15%, 8%) !important;
  padding: 0.5rem 1.25rem !important; border-radius: 9999px !important; font-size: 14px !important;
  font-weight: 600 !important; transition: background 0.18s; display: inline-flex !important; align-items: center !important; }
.rrff-nav-links > a.rrff-donate:hover,
.rrff-donate:hover { background: hsl(43, 75%, 65%) !important; color: hsl(220, 15%, 8%) !important; }
/* Dropdown */
.rrff-dropdown { position: relative; }
.rrff-dropdown > button::after {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-bottom: 3px; margin-left: 2px; opacity: 0.7;
}
.rrff-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  min-width: 220px; background: hsl(0,0%,7%); border: 1px solid hsla(0,0%,100%,0.08);
  border-radius: 12px; padding: 8px; opacity: 0; pointer-events: none;
  transition: opacity 0.15s, transform 0.15s; box-shadow: 0 18px 40px -16px hsla(0,0%,0%,0.7);
  z-index: 60;
}
.rrff-dropdown:hover .rrff-dropdown-menu,
.rrff-dropdown:focus-within .rrff-dropdown-menu,
.rrff-dropdown.is-open .rrff-dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.rrff-dropdown-menu a {
  display: block; padding: 10px 12px; font-size: 14px; color: rgba(255,255,255,0.85);
  border-radius: 8px; line-height: 1.3;
}
.rrff-dropdown-menu a:hover { background: hsla(43,75%,55%,0.10); color: hsl(43, 75%, 60%); }
.rrff-dropdown-menu a.sub { font-size: 12.5px; color: var(--text-dim); padding: 4px 12px 8px; pointer-events: none; }

.rrff-menu-btn { display: block; background: none; border: none; color: #fff; padding: 0.5rem; cursor: pointer; }
@media (min-width: 1024px) { .rrff-menu-btn { display: none; } }

/* Mobile-only cluster that pairs Donate + hamburger together on the right */
.rrff-mobile-right { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 1024px) { .rrff-mobile-right { display: contents; } }

/* Mobile-only Donate pill that sits next to the hamburger so the primary
   CTA stays visible even when the rest of the nav is collapsed. */
.rrff-donate-mobile {
  display: inline-flex;
  align-items: center;
  background: hsl(43, 75%, 55%);
  color: hsl(220, 15%, 8%);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s;
  white-space: nowrap;
}
.rrff-donate-mobile:hover { background: hsl(43, 75%, 65%); color: hsl(220, 15%, 8%); }
@media (min-width: 1024px) { .rrff-donate-mobile { display: none; } }
.rrff-menu-btn svg { width: 24px; height: 24px; }
.rrff-mobile-menu { display: none; flex-direction: column; padding: 0.5rem 0 1rem; border-top: 1px solid rgba(255,255,255,0.06); max-height: 70vh; overflow-y: auto; }
.rrff-mobile-menu.is-open { display: flex; }
@media (min-width: 1024px) { .rrff-mobile-menu.is-open { display: none; } }
.rrff-mobile-menu a { padding: 0.875rem 0; font-size: 16px; color: rgba(255,255,255,0.85); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.04); }
.rrff-mobile-menu a:hover { color: hsl(43, 75%, 55%); }
.rrff-mobile-menu a.sub { padding: 0.6rem 0 0.6rem 1rem; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.03); }
.rrff-mobile-menu .group-label { padding: 1.1rem 0 0.3rem; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.rrff-mobile-menu a.rrff-donate { margin-top: 1rem; text-align: center; border-bottom: none; }

/* HERO */
.hero { padding: 80px 0 56px; background:
  radial-gradient(ellipse at top right, hsla(43, 75%, 55%, 0.08), transparent 50%),
  var(--bg); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px hsla(43, 75%, 55%, 0.18); }
.hero h1 { font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 64px); line-height: 1.05;
  font-weight: 700; margin: 0 0 24px; letter-spacing: -0.5px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lede { font-size: clamp(16px, 1.4vw, 19px);
  max-width: 720px; color: var(--text-muted); margin: 0; }

section.band { padding: 64px 0; }
section.band-tight { padding: 40px 0; }

h2.section-title { font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.2vw, 38px); font-weight: 700; margin: 0 0 16px;
  letter-spacing: -0.3px; }
.section-eyebrow { display: inline-block; font-size: 11px;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin: 0 0 12px; }
.section-lede { font-size: 16px; color: var(--text-muted); max-width: 680px; margin: 0 0 32px; }

.info-card { background: var(--card); border: 1px solid var(--border-soft);
  border-radius: 14px; padding: 28px; }
.info-card h3 { font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; margin: 0 0 12px; }
.info-card p { color: var(--text-muted); margin: 0 0 14px; font-size: 15px; }
.info-card p:last-child { margin-bottom: 0; }
.info-card ul { color: var(--text-muted); margin: 12px 0 0; padding-left: 20px; font-size: 14.5px; }
.info-card li { margin-bottom: 8px; }

.btn { display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700;
  font-size: 15px; font-family: inherit; cursor: pointer;
  border: 1px solid transparent; transition: all 0.18s ease;
  text-decoration: none; }
.btn-primary { background: var(--gold); color: hsl(0, 0%, 4%); }
.btn-primary:hover { background: var(--gold-hover); text-decoration: none; transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px hsla(43, 75%, 55%, 0.5); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; justify-content: center; }

footer.site-footer { padding: 32px; text-align: center;
  color: var(--text-dim); font-size: 14px; border-top: 1px solid var(--border-soft); }
footer.site-footer a { color: var(--text-muted); }
