/* ============================================
   BBFRA.org — "Forge & Flame" Design System
   Baldwin Borough Firefighters Relief Association
   ============================================ */

/* --- Variables --- */
:root {
  --bg-deep: #080808;
  --bg-elevated: #141416;
  --surface: #1C1C20;
  --surface-hover: #24242a;

  --fire: #D42B2B;
  --amber: #F59E0B;
  --warm-white: #FFF5E6;

  --text: #FAFAFA;
  --text-secondary: #A0A0A0;
  --text-dim: #6B6B6B;

  --glow-warm: 0 0 30px rgba(245, 158, 11, 0.08);
  --glow-warm-hover: 0 0 40px rgba(245, 158, 11, 0.16), 0 0 80px rgba(212, 43, 43, 0.08);
  --glow-fire: 0 0 20px rgba(212, 43, 43, 0.25);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  --max-width: 1200px;
  --header-height: 72px;

  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.1; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }

/* --- Icon Utilities --- */
.header__nav i,
.footer__links i {
  width: 1.1em;
  text-align: center;
  margin-right: 0.25em;
  opacity: 0.7;
}

.header__nav .btn i {
  opacity: 1;
}

/* Section heading icons */
h2 > i.fas,
h2 > i.far,
h3 > i.fas,
h3 > i.far {
  color: var(--amber);
  margin-right: 0.35em;
  font-size: 0.85em;
}

/* Card title icons */
.card__title > i.fas {
  color: var(--fire);
  margin-right: 0.3em;
  font-size: 0.9em;
}

/* List icons — use .icon-list on <ul> for fire-chevron bullets */
.icon-list {
  list-style: none;
  padding-left: 0;
}

.icon-list li {
  padding-left: 1.8em;
  position: relative;
  margin-bottom: 0.5em;
}

.icon-list li::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--fire);
  font-size: 0.7em;
  top: 0.45em;
}

/* Callout icons */
.callout--warning::before,
.callout--info::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.4rem;
  margin-right: 0.5em;
  float: left;
  margin-top: 0.1em;
}

.callout--warning::before {
  content: '\f071';
  color: var(--amber);
}

.callout--info::before {
  content: '\f05a';
  color: var(--amber);
}

/* --- Typography --- */
.font-display {
  font-family: 'Barlow Condensed', ui-sans-serif, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1, .h1 {
  font-family: 'Barlow Condensed', ui-sans-serif, sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

h2, .h2 {
  font-family: 'Barlow Condensed', ui-sans-serif, sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h3, .h3 {
  font-family: 'Barlow Condensed', ui-sans-serif, sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 600px;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-elevated);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.header--scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header__brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__brand-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--fire), var(--amber));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  transition: color 0.25s var(--ease);
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.header__link:hover,
.header__link--active {
  color: var(--text);
}

.header__link:hover::after,
.header__link--active::after {
  transform: scaleX(1);
}

/* Mobile menu toggle */
.header__menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 6px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.header__menu-btn--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.header__menu-btn--open span:nth-child(2) {
  opacity: 0;
}
.header__menu-btn--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn--fire {
  background: var(--fire);
  color: #fff;
  box-shadow: var(--glow-fire);
}

.btn--fire:hover {
  background: #e03333;
  box-shadow: 0 0 30px rgba(212, 43, 43, 0.4);
}

.btn--amber {
  background: var(--amber);
  color: #080808;
}

.btn--amber:hover {
  background: #f7ab22;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.btn--sm {
  font-size: 0.875rem;
  padding: 10px 20px;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(245, 158, 11, 0.4) 0%, rgba(212, 43, 43, 0.28) 30%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 30% 90%, rgba(212, 43, 43, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 70% 95%, rgba(245, 158, 11, 0.18) 0%, transparent 50%),
    var(--bg-deep);
  background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
  animation: firelight 20s ease-in-out infinite alternate;
}

@keyframes firelight {
  0% { background-position: 50% 50%, 40% 50%, 60% 50%, 0 0; }
  33% { background-position: 45% 48%, 35% 52%, 65% 48%, 0 0; }
  66% { background-position: 55% 52%, 45% 48%, 55% 52%, 0 0; }
  100% { background-position: 50% 50%, 40% 50%, 60% 50%, 0 0; }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 40%, transparent 0%, transparent 40%, rgba(8, 8, 8, 0.6) 80%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero__title {
  margin-bottom: 24px;
  background: linear-gradient(180deg, var(--text) 40%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Ember particles (CSS-only) */
.hero__embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.ember {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 6px 2px rgba(245, 158, 11, 0.6), 0 0 12px 4px rgba(212, 43, 43, 0.3);
  animation: ember-rise 6s ease-out infinite;
}

/* Large embers */
.ember:nth-child(1)  { left: 20%; width: 5px; height: 5px; animation-delay: 0s; animation-duration: 7s; }
.ember:nth-child(2)  { left: 40%; animation-delay: 1.5s; animation-duration: 5s; }
.ember:nth-child(3)  { left: 60%; width: 6px; height: 6px; animation-delay: 3s; animation-duration: 8s; }
.ember:nth-child(4)  { left: 75%; animation-delay: 0.8s; animation-duration: 6s; }
.ember:nth-child(5)  { left: 35%; width: 5px; height: 5px; animation-delay: 4s; animation-duration: 7.5s; }
.ember:nth-child(6)  { left: 55%; animation-delay: 2s; animation-duration: 6.5s; }
.ember:nth-child(7)  { left: 80%; animation-delay: 3.5s; animation-duration: 5.5s; }
.ember:nth-child(8)  { left: 15%; width: 5px; height: 5px; animation-delay: 1s; animation-duration: 8.5s; }
/* Extra embers */
.ember:nth-child(9)  { left: 10%; animation-delay: 0.5s; animation-duration: 6.8s; }
.ember:nth-child(10) { left: 45%; width: 5px; height: 5px; animation-delay: 2.5s; animation-duration: 7.2s; }
.ember:nth-child(11) { left: 68%; animation-delay: 4.5s; animation-duration: 5.8s; }
.ember:nth-child(12) { left: 88%; width: 3px; height: 3px; animation-delay: 1.8s; animation-duration: 8s; }
.ember:nth-child(13) { left: 28%; animation-delay: 3.2s; animation-duration: 6.2s; }
.ember:nth-child(14) { left: 50%; width: 6px; height: 6px; animation-delay: 0.3s; animation-duration: 9s; }
.ember:nth-child(15) { left: 72%; animation-delay: 5s; animation-duration: 5.5s; }
.ember:nth-child(16) { left: 5%;  width: 3px; height: 3px; animation-delay: 2.8s; animation-duration: 7.8s; }

@keyframes ember-rise {
  0% {
    bottom: 0;
    opacity: 0;
    transform: translateX(0) scale(1);
  }
  8% {
    opacity: 1;
  }
  30% {
    opacity: 0.8;
    transform: translateX(15px) scale(0.9);
  }
  60% {
    opacity: 0.5;
    transform: translateX(-12px) scale(0.7);
  }
  100% {
    bottom: 100%;
    opacity: 0;
    transform: translateX(8px) scale(0.2);
  }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 60px) 24px 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(212, 43, 43, 0.12) 0%, transparent 60%),
    var(--bg-deep);
}

.page-hero__kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 16px;
}

.page-hero__title {
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Quick Info Bar --- */
.quick-info {
  background: var(--bg-elevated);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 24px;
}

.quick-info__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.quick-info__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.quick-info__icon {
  color: var(--amber);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.quick-info__label {
  color: var(--text-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}

.quick-info__value {
  color: var(--text);
  font-weight: 600;
}

.quick-info__value a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quick-info__value a:hover {
  color: var(--warm-white);
}

/* --- Cards --- */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-warm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--amber));
}

.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--glow-warm-hover);
}

.card__watermark {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
}

.card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  color: var(--text);
}

.card__badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--amber);
  margin-bottom: 12px;
}

.card__badge--vacant {
  color: var(--text-dim);
  font-style: italic;
}

.card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.card__link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}

.card__link:hover {
  gap: 10px;
  color: var(--warm-white);
}

.card__link::after {
  content: '→';
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* --- Info Card (physicals callout, etc.) --- */
.info-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(245, 158, 11, 0.1);
  padding: 32px;
}

.info-card__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 8px;
}

.info-card__value {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
}

.info-card__detail {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* --- Download Card --- */
.download-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
}

.download-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: var(--glow-warm);
}

.download-card:active {
  transform: scale(0.97);
}

.download-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--fire), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  flex-shrink: 0;
}

.download-card__info {
  flex: 1;
}

.download-card__name {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.download-card__meta {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.download-card__arrow {
  color: var(--text-dim);
  font-size: 1.2rem;
  transition: color 0.25s, transform 0.25s;
}

.download-card:hover .download-card__arrow {
  color: var(--amber);
  transform: translateX(4px);
}

/* --- Meeting Card --- */
.meeting-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.meeting-card__date {
  text-align: center;
  flex-shrink: 0;
  min-width: 80px;
}

.meeting-card__month {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
}

.meeting-card__day {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--text);
  line-height: 1;
}

.meeting-card__year {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.meeting-card__details h3 {
  margin-bottom: 8px;
}

.meeting-card__location {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.meeting-card__time {
  color: var(--amber);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Featured meeting card (next meeting, hero-sized) */
.meeting-card--featured {
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: var(--glow-warm), 0 0 60px rgba(212, 43, 43, 0.06);
  padding: 40px;
}

.meeting-card--featured .meeting-card__day {
  font-size: 3.5rem;
}

.meeting-card--featured .meeting-card__month {
  font-size: 1rem;
}

.meeting-card--featured h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.meeting-card--featured .meeting-card__location,
.meeting-card--featured .meeting-card__time {
  font-size: 1rem;
}

.meeting-card--featured .meeting-card__location i,
.meeting-card--featured .meeting-card__time i {
  width: 1.2em;
  text-align: center;
  color: var(--text-dim);
  margin-right: 0.3em;
}

/* Compact meeting cards (schedule list) */
.meeting-card--compact {
  padding: 20px 24px;
  margin-bottom: 12px;
}

.meeting-card--compact .meeting-card__date {
  min-width: 64px;
}

.meeting-card--compact .meeting-card__day {
  font-size: 1.8rem;
}

.meeting-card--compact .meeting-card__details h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

/* Past meeting dimming */
.meeting-card--past {
  opacity: 0.5;
  border-color: rgba(255, 255, 255, 0.04);
}

/* Collapsible meetings section */
.meetings-collapsible {
  max-width: 700px;
  margin: 0 auto;
}

.meetings-collapsible__summary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  user-select: none;
}

.meetings-collapsible__summary::-webkit-details-marker {
  display: none;
}

.meetings-collapsible__summary:hover {
  color: var(--text);
}

.meetings-collapsible__chevron {
  margin-left: auto;
  font-size: 0.8em;
  transition: transform 0.3s var(--ease);
}

details[open] .meetings-collapsible__chevron {
  transform: rotate(180deg);
}

.meetings-collapsible__content {
  padding-bottom: 24px;
}

/* --- FAQ Accordion --- */
.faq-group {
  margin-bottom: 2.5em;
}
.faq-group__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 1em;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0;
}
.faq-item summary {
  padding: 1em 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--amber);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-item summary:hover {
  color: var(--amber);
}
.faq-item__answer {
  padding: 0 0 1.25em 0;
  color: var(--text-dim);
  line-height: 1.7;
}
.faq-item__answer a {
  color: var(--amber);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header__kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-header__title {
  margin-bottom: 16px;
}

.section-header__text {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Content (for text-heavy pages) --- */
.content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.content h2 {
  color: var(--text);
  margin: 48px 0 16px;
}

.content h3 {
  color: var(--text);
  margin: 32px 0 12px;
}

.content p {
  margin-bottom: 1.25em;
}

.content strong {
  color: var(--text);
  font-weight: 600;
}

.content ul, .content ol {
  padding-left: 24px;
  margin-bottom: 1.25em;
}

.content li {
  margin-bottom: 0.5em;
}

.content a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.content a:hover {
  color: var(--warm-white);
}

.content .callout {
  background: var(--surface);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.content .callout strong {
  color: var(--amber);
}

/* --- Table --- */
.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  color: var(--amber);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid rgba(245, 158, 11, 0.2);
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

tr:hover td {
  background: rgba(245, 158, 11, 0.03);
}

/* --- Footer --- */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 24px 32px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 12px;
}

.footer__tagline {
  color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer__text {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--amber);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 99;
  }

  .header__nav--open {
    display: flex;
  }

  .header__nav .header__link {
    font-size: 1.3rem;
  }

  .header__nav .btn {
    font-size: 1.1rem;
    padding: 16px 36px;
  }

  .header__menu-btn {
    display: block;
  }

  .hero {
    min-height: 85vh;
    padding-top: calc(var(--header-height) + 24px);
  }

  .quick-info__inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .meeting-card {
    flex-direction: column;
    text-align: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__bg {
    animation: none;
  }
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  background: var(--amber);
  color: #080808;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

/* --- Focus Visible --- */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* Remove default outline when not focus-visible */
:focus:not(:focus-visible) {
  outline: none;
}

/* Card-specific focus */
.card:focus-visible,
.download-card:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
  box-shadow: var(--glow-warm-hover);
}

/* Button focus matches hover glow */
.btn--fire:focus-visible {
  box-shadow: 0 0 30px rgba(212, 43, 43, 0.4);
}

.btn--amber:focus-visible {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.btn--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Nav link focus matches hover underline */
.header__link:focus-visible::after {
  transform: scaleX(1);
}

.text-amber { color: var(--amber); }
.text-fire { color: var(--fire); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
