/* ============================================
   ECFESA — Elk Creek Firefighters & EMS Association
   Design: Industrial utility meets mountain warmth
   Fonts: Bebas Neue (display) + Barlow Condensed + Barlow
   Palette: Deep charcoal, fire red, ember orange, ash white
   ============================================ */

:root {
  --fire: #C8390A;
  --fire-bright: #E8451A;
  --ember: #E87A2A;
  --coal: #1A1A18;
  --charcoal: #2C2C29;
  --ash: #F5F2EC;
  --ash-dark: #E8E4DC;
  --slate: #4A4A45;
  --steel: #7A7A72;
  --surface: #F0EDE6;
  --white: #FFFFFF;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Arial', sans-serif;
  --nav-h: 72px;
  --radius: 4px;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.03em; line-height: 1.05; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); color: var(--white); }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--coal); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--coal); }
h4 { font-size: 1.1rem; color: var(--fire); letter-spacing: 0.08em; text-transform: uppercase; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--fire); text-decoration: none; }
a:hover { color: var(--fire-bright); }

.lead {
  font-size: 1.2rem;
  font-family: var(--font-cond);
  font-weight: 300;
  color: var(--slate);
  line-height: 1.5;
}

.section-label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 0.75rem;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-fire {
  background: var(--fire);
  color: var(--white);
  border-color: var(--fire);
}
.btn-fire:hover {
  background: var(--fire-bright);
  border-color: var(--fire-bright);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,57,10,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--coal);
  border-color: var(--coal);
}
.btn-outline:hover {
  background: var(--coal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-block { width: 100%; text-align: center; display: block; }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--coal);
  border-bottom: 3px solid var(--fire);
  height: var(--nav-h);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  background: var(--fire);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.6rem;
  border-radius: 2px;
  line-height: 1;
  white-space: nowrap;
}
.logo-badge.small { font-size: 0.9rem; }

.logo-text {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ash);
  line-height: 1.3;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.nav-links li a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.15s;
  text-decoration: none;
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links li a.nav-cta {
  background: var(--fire);
  color: var(--white);
  padding: 0.5rem 1.1rem;
}
.nav-links li a.nav-cta:hover, .nav-links li a.nav-cta.active {
  background: var(--fire-bright);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--coal);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,57,10,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(232,122,42,0.10) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 41px
    );
}

.hero-flames {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
}
.flame-svg { width: 100%; height: auto; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  animation: heroIn 0.9s ease both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
}

.hero-headline {
  margin-bottom: 1.5rem;
  line-height: 0.95;
}
.hero-headline em {
  color: var(--fire-bright);
  font-style: normal;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,242,236,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- DISCLAIMER BAR ---- */
.disclaimer-bar {
  background: var(--coal);
  color: rgba(245,242,236,0.6);
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.6rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.disclaimer-bar span { color: var(--ember); font-size: 1rem; }

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--fire);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.stat {
  flex: 1;
  min-width: 200px;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
}

/* ---- WHAT WE DO SECTION ---- */
.what-we-do h2 {
  margin-bottom: 2.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  border: 1.5px solid var(--ash-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.card {
  padding: 2.5rem 2rem;
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-3px); }
.card-red {
  background: var(--fire);
  color: var(--white);
}
.card-red h3 { color: var(--white); }
.card-red p { color: rgba(255,255,255,0.85); }
.card-dark {
  background: var(--coal);
  color: var(--ash);
}
.card-dark h3 { color: var(--white); }
.card-dark p { color: rgba(245,242,236,0.75); }

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* ---- EVENTS PREVIEW ---- */
.events-preview {
  background: var(--coal);
}
.events-preview h2, .events-preview .section-label { /* inherit from hero */ }
.events-preview h2 { color: var(--white); }
.events-preview p { color: rgba(245,242,236,0.7); }
.events-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.event-cards-stack { display: flex; flex-direction: column; gap: 1rem; }
.event-card-preview {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--fire);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.event-card-preview:hover {
  border-left-color: var(--ember);
  background: rgba(255,255,255,0.08);
}
.event-card-preview h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.event-card-preview p {
  font-size: 0.9rem;
  color: rgba(245,242,236,0.65);
  margin: 0;
}
.event-badge {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
  margin-bottom: 0.3rem;
}

/* ---- IMPACT TEASER ---- */
.impact-list { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0 2.5rem; }
.impact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--ash);
  border-radius: var(--radius);
  border-left: 4px solid var(--fire);
}
.impact-icon { font-size: 2rem; flex-shrink: 0; }
.impact-item strong { display: block; font-family: var(--font-cond); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.impact-item p { color: var(--slate); margin: 0; font-size: 0.95rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--fire);
  padding: 5rem 2rem;
}
.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }

/* ---- FOOTER ---- */
.footer {
  background: var(--coal);
  padding: 3rem 0 0;
  border-top: 3px solid var(--fire);
}
.footer-inner {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}
.footer-brand { flex: 1; min-width: 260px; }
.footer-brand p { color: rgba(245,242,236,0.55); font-size: 0.88rem; line-height: 1.6; margin-top: 0.75rem; }
.footer-disclaimer { color: rgba(245,242,236,0.35) !important; font-size: 0.78rem !important; margin-top: 0.75rem !important; font-style: italic; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-links a {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1rem 2rem;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(245,242,236,0.25);
}

/* ---- PAGE HERO SM (inner pages) ---- */
.page-hero-sm {
  background: var(--coal);
  border-bottom: 3px solid var(--fire);
  padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero-sm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,57,10,0.18) 0%, transparent 60%);
}
.page-hero-sm-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* ---- PROSE LAYOUT (mission page) ---- */
.prose-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}
.prose-main h2 { margin: 2.5rem 0 0.75rem; font-size: 1.8rem; }
.prose-main h2:first-child { margin-top: 0; }
.prose-main p { color: var(--slate); }

.styled-list {
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
  color: var(--slate);
}
.styled-list li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.styled-list li::marker { color: var(--fire); }

.prose-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
  background: var(--ash);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 3px solid var(--fire);
}
.sidebar-card h4 { margin-bottom: 0.75rem; }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--ash-dark);
  font-size: 0.9rem;
  color: var(--slate);
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card p { font-size: 0.9rem; color: var(--slate); }
.sidebar-card-fire {
  background: var(--coal);
  border-top-color: var(--fire);
}
.sidebar-card-fire h4 { color: var(--ember); }
.sidebar-card-fire p { color: rgba(245,242,236,0.65); }
.sidebar-card-fire ul li { color: rgba(245,242,236,0.7); border-color: rgba(255,255,255,0.08); }

/* ---- EVENTS FULL PAGE ---- */
.event-full {
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ash-dark);
}
.event-full-header {
  padding: 2rem 2.5rem;
}
.event-full-header h2 { color: var(--white); margin: 0; font-size: 2.5rem; }
.event-full-season {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.35rem;
}
.event-color-1 { background: var(--coal); border-left: 6px solid var(--fire); }
.event-color-2 { background: var(--fire); }
.event-color-3 { background: var(--charcoal); border-left: 6px solid var(--ember); }

.event-full-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
}
.event-full-desc h4 { margin: 1.5rem 0 0.5rem; }
.event-full-desc p { color: var(--slate); }
.event-full-desc .styled-list { color: var(--slate); }

.event-detail-box {
  background: var(--ash);
  border-radius: var(--radius);
  overflow: hidden;
}
.event-detail-item {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--ash-dark);
}
.event-detail-item:last-child { border-bottom: none; }
.ed-label {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 0.2rem;
}
.event-detail-item span:not(.ed-label) {
  font-size: 0.88rem;
  color: var(--slate);
}

/* ---- IMPACT TIMELINE ---- */
.impact-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--ash-dark);
  align-items: flex-start;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  margin-top: 0.25rem;
}
.timeline-content h3 { margin-bottom: 0.5rem; font-size: 1.6rem; }
.timeline-content p { color: var(--slate); }

/* ---- BYLAWS PAGE ---- */
.bylaws-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

.bylaws-toc {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  background: var(--ash);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-top: 3px solid var(--fire);
}
.toc-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.75rem;
}
.bylaws-toc a {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  padding: 0.4rem 0.5rem;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.15s;
  border-left: 3px solid transparent;
}
.bylaws-toc a:hover {
  color: var(--fire);
  border-left-color: var(--fire);
  background: var(--ash-dark);
}

.bylaws-body { max-width: none; }
.bylaws-meta {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 0.75rem 1rem;
  background: var(--ash);
  border-radius: var(--radius);
  margin-bottom: 2rem;
  border-left: 4px solid var(--fire);
}

.bylaws-body section {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--ash-dark);
  margin-bottom: 2.5rem;
}
.bylaws-body section:last-of-type { border-bottom: none; }
.bylaws-body section h2 {
  font-size: 2rem;
  color: var(--fire);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ash-dark);
}
.bylaws-body section h3 {
  font-size: 1.1rem;
  color: var(--coal);
  letter-spacing: 0.04em;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  margin: 1.5rem 0 0.5rem;
}
.bylaws-body section p { color: var(--slate); margin-bottom: 0.85rem; }

.bylaws-list {
  color: var(--slate);
  padding-left: 1.75rem;
  margin: 0.75rem 0 1rem;
}
.bylaws-list li { margin-bottom: 0.5rem; }
.bylaws-list-ul { list-style: disc; }
.bylaws-list-ul li::marker { color: var(--fire); }

.bylaws-approval {
  padding: 2rem;
  background: var(--ash);
  border-radius: var(--radius);
  font-family: var(--font-cond);
  color: var(--slate);
}

/* ---- GET INVOLVED PAGE ---- */
.involvement-block {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--ash-dark);
}
.involvement-block:last-child { border-bottom: none; }
.involvement-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}
.involvement-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--ash-dark);
  line-height: 1;
}
.involvement-header h2 { font-size: 2.8rem; }

.involvement-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}

/* Donation amounts */
.donation-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.amount-btn {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--ash-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.15s;
}
.amount-btn:hover, .amount-btn.active {
  background: var(--fire);
  border-color: var(--fire);
  color: var(--white);
}

/* Forms */
.form-card {
  background: var(--ash);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--fire);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.form-group input,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--ash-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--coal);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--fire); }
.form-group textarea { resize: vertical; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--slate);
  cursor: pointer;
  padding: 0.25rem 0;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.checkbox-group { display: flex; flex-direction: column; gap: 0.1rem; }
.form-disclaimer {
  margin-top: 1rem !important;
  font-size: 0.78rem !important;
  color: var(--steel) !important;
  line-height: 1.5;
  font-style: italic;
}

/* List tabs */
.list-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.tab-btn {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--ash-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--slate);
  cursor: pointer;
  transition: all 0.15s;
}
.tab-btn.active {
  background: var(--coal);
  border-color: var(--coal);
  color: var(--white);
}

/* Success states */
.hidden { display: none !important; }
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--ash);
  border-radius: var(--radius);
  border-top: 3px solid #2a7a2a;
}
.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #2a7a2a;
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.form-success h3 { color: #1a5a1a; margin-bottom: 0.5rem; font-size: 1.6rem; }
.form-success p { color: var(--slate); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .prose-layout,
  .bylaws-layout,
  .involvement-body { grid-template-columns: 1fr; }
  .bylaws-toc { position: static; }
  .events-preview-inner { grid-template-columns: 1fr; }
  .event-full-body { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--coal);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; }

  .hero-headline { font-size: 2.8rem; }
  .stats-strip { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat:last-child { border-bottom: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .involvement-header { flex-direction: column; gap: 0.25rem; }
  .involvement-number { font-size: 2rem; }
}

/* ============================================
   LIGHTER FIREHOUSE REFRESH
   Warmer, brighter palette while keeping red/ember cues
   ============================================ */

:root {
  --fire: #c94a1f;
  --fire-bright: #e16637;
  --ember: #f2a14a;
  --coal: #362a24;
  --charcoal: #56453d;
  --ash: #fff4ec;
  --ash-dark: #f0dfd2;
  --slate: #6e5d53;
  --steel: #9a877b;
  --surface: #fffaf5;
  --white: #fffdfb;
  --shadow: 0 10px 28px rgba(73, 38, 24, 0.08);
  --shadow-lg: 0 20px 50px rgba(73, 38, 24, 0.12);
}

body {
  background: linear-gradient(180deg, #fffdfb 0%, var(--surface) 100%);
  color: var(--charcoal);
}

h1 { color: var(--coal); }

.btn-fire {
  background: linear-gradient(180deg, var(--fire-bright) 0%, var(--fire) 100%);
  border-color: var(--fire);
  box-shadow: 0 8px 22px rgba(201, 74, 31, 0.18);
}

.btn-fire:hover {
  background: linear-gradient(180deg, #eb7548 0%, var(--fire-bright) 100%);
  box-shadow: 0 10px 24px rgba(201, 74, 31, 0.24);
}

.btn-outline,
.btn-outline-light {
  background: rgba(255,255,255,0.78);
  color: var(--fire);
  border-color: rgba(201, 74, 31, 0.45);
}

.btn-outline:hover,
.btn-outline-light:hover {
  background: var(--fire);
  color: var(--white);
  border-color: var(--fire);
}

.nav {
  background: rgba(255, 250, 245, 0.94);
  border-bottom: 3px solid var(--fire);
  box-shadow: 0 6px 22px rgba(73, 38, 24, 0.07);
  backdrop-filter: blur(12px);
}

.nav.scrolled { box-shadow: 0 10px 30px rgba(73, 38, 24, 0.12); }

.logo-text,
.nav-links li a {
  color: var(--coal);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--fire);
  background: rgba(201, 74, 31, 0.08);
}

.nav-links li a.nav-cta {
  background: var(--fire);
  color: var(--white);
}

.nav-toggle span { background: var(--coal); }

.hero {
  background: linear-gradient(135deg, #fffaf5 0%, #fde9dc 48%, #fff6ef 100%);
}

.hero-bg {
  background:
    radial-gradient(ellipse at 72% 42%, rgba(201,74,31,0.16) 0%, transparent 58%),
    radial-gradient(ellipse at 20% 78%, rgba(242,161,74,0.15) 0%, transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(201,74,31,0.035) 40px,
      rgba(201,74,31,0.035) 41px
    );
}

.hero-eyebrow {
  color: var(--fire);
}

.hero-headline,
.page-hero-sm h1 {
  color: var(--coal);
  text-shadow: none;
}

.hero-headline em {
  color: var(--fire);
}

.hero-sub {
  color: rgba(54, 42, 36, 0.78);
}

.hero-scroll-hint {
  color: rgba(201, 74, 31, 0.55);
}

.disclaimer-bar {
  background: #fce9df;
  color: var(--slate);
  border-top: 1px solid rgba(201,74,31,0.08);
  border-bottom: 1px solid rgba(201,74,31,0.12);
}

.disclaimer-bar span { color: var(--fire); }

.stats-strip {
  background: linear-gradient(180deg, #fff3ea 0%, #fde8dc 100%);
  border-top: 1px solid rgba(201,74,31,0.14);
  border-bottom: 1px solid rgba(201,74,31,0.12);
}

.stat {
  border-right: 1px solid rgba(201,74,31,0.14);
}

.stat-num { color: var(--fire); }
.stat-label { color: var(--slate); }

.cards-grid {
  gap: 1rem;
  border: none;
  overflow: visible;
}

.card {
  background: var(--white);
  border: 1px solid var(--ash-dark);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.card-red {
  background: linear-gradient(180deg, #fff4ed 0%, #ffe8dd 100%);
  color: var(--coal);
  border-top: 4px solid var(--fire);
}

.card-red h3,
.card-dark h3 {
  color: var(--coal);
}

.card-red p,
.card-dark p {
  color: var(--slate);
}

.card-dark {
  background: linear-gradient(180deg, #fffdfb 0%, #fff5ee 100%);
  color: var(--coal);
  border-top: 4px solid var(--charcoal);
}

.events-preview {
  background: linear-gradient(180deg, #fff9f4 0%, #fff0e6 100%);
  border-top: 1px solid var(--ash-dark);
  border-bottom: 1px solid var(--ash-dark);
}

.events-preview h2 { color: var(--coal); }
.events-preview p { color: var(--slate); }

.event-card-preview {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(201,74,31,0.14);
  border-left: 4px solid var(--fire);
  box-shadow: var(--shadow);
}

.event-card-preview:hover {
  border-left-color: var(--ember);
  background: #fffaf6;
}

.event-card-preview h4 { color: var(--coal); }
.event-card-preview p { color: var(--slate); }
.event-badge { color: var(--fire); }

.impact-item,
.sidebar-card,
.event-detail-box,
.bylaws-toc,
.bylaws-meta,
.form-card,
.form-success {
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
}

.impact-item {
  border: 1px solid var(--ash-dark);
}

.cta-banner {
  background: linear-gradient(135deg, #f9dfd0 0%, #fdebe1 55%, #fff4ec 100%);
  border-top: 1px solid rgba(201,74,31,0.14);
  border-bottom: 1px solid rgba(201,74,31,0.12);
}

.cta-banner h2 { color: var(--coal); }
.cta-banner p { color: var(--slate); }

.footer {
  background: #fff9f4;
  border-top: 3px solid var(--fire);
}

.footer-brand p,
.footer-links a,
.footer-bottom,
.footer-disclaimer {
  color: var(--slate) !important;
}

.footer-bottom {
  border-top: 1px solid var(--ash-dark);
}

.page-hero-sm {
  background: linear-gradient(135deg, #fff9f4 0%, #fde9dc 100%);
  border-bottom: 3px solid var(--fire);
}

.page-hero-sm::before {
  background:
    radial-gradient(ellipse at 80% 45%, rgba(201,57,10,0.14) 0%, transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
}

.sidebar-card {
  border: 1px solid var(--ash-dark);
}

.sidebar-card-fire {
  background: linear-gradient(180deg, #fff1e8 0%, #ffe6d9 100%);
  border-top-color: var(--fire);
}

.sidebar-card-fire h4 { color: var(--fire); }
.sidebar-card-fire p,
.sidebar-card-fire ul li {
  color: var(--slate);
  border-color: rgba(201,74,31,0.12);
}

.event-full {
  border: 1px solid var(--ash-dark);
  box-shadow: var(--shadow);
}

.event-full-header {
  background: linear-gradient(135deg, #fff1e8 0%, #ffe5d7 100%);
  border-bottom: 1px solid rgba(201,74,31,0.10);
}

.event-full-header h2 {
  color: var(--coal);
}

.event-full-season {
  color: rgba(54,42,36,0.62);
}

.event-color-1,
.event-color-2,
.event-color-3 {
  border-left: 6px solid var(--fire);
}

.event-color-2 {
  background: linear-gradient(135deg, #ffd8c6 0%, #ffeadf 100%);
}

.event-color-3 {
  background: linear-gradient(135deg, #fff3e7 0%, #ffe7d3 100%);
}

.event-full-body {
  background: rgba(255,255,255,0.9);
}

.timeline-item,
.bylaws-body section,
.involvement-block {
  border-bottom: 1px solid var(--ash-dark);
}

.bylaws-toc a:hover {
  background: #fff1e6;
}

.bylaws-body section h2 {
  border-bottom: 2px solid var(--ash-dark);
}

.involvement-number {
  color: #eed6c6;
}

.amount-btn,
.tab-btn {
  border-color: var(--ash-dark);
  background: rgba(255,255,255,0.9);
}

.amount-btn:hover,
.amount-btn.active,
.tab-btn.active {
  background: var(--fire);
  border-color: var(--fire);
  color: var(--white);
}

.form-group input,
.form-group textarea {
  background: #fffdfb;
}

@media (max-width: 700px) {
  .nav-links {
    background: rgba(255, 250, 245, 0.98);
    border-top: 1px solid rgba(201,74,31,0.12);
    box-shadow: 0 16px 32px rgba(73, 38, 24, 0.10);
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(201,74,31,0.14);
  }
}
