/* ============================================
   NEW BADEN FIRE PROTECTION DISTRICT
   Light theme · Navy + Red + Gold · Mobile-first
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@400;600;700;800;900&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Libre+Franklin:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  /* Brand — matched to department logo and apparatus */
  --navy: #1D3E78;
  --navy-dark: #142A52;
  --navy-deep: #0E1E3B;
  --navy-light: #2C5AA0;
  --red: #CE2027;
  --red-dark: #9B1820;
  --red-bright: #E23B42;
  --gold: #E8B923;
  --gold-dark: #B8902A;

  /* Neutrals */
  --paper: #FAFAF7;
  --paper-warm: #F5F2EC;
  --paper-dim: #EBE7DD;
  --ink: #1A1A2E;
  --ink-soft: #2D2D44;
  --smoke: #5F6572;
  --smoke-light: #9098A3;
  --rule: #DDD8CC;
  --rule-soft: #EDE9DF;

  /* Type */
  --font-display: 'Big Shoulders Display', 'Oswald', 'Arial Narrow', sans-serif;
  --font-serif: 'Fraunces', 'Georgia', serif;
  --font-body: 'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Space */
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }

img { max-width: 100%; height: auto; display: block; }

button { font: inherit; cursor: pointer; }

/* ============ EMERGENCY BAR ============ */
.emergency-bar {
  background: var(--ink);
  color: var(--paper);
  padding: .55rem 0;
  font-size: .82rem;
  border-bottom: 3px solid var(--red);
  position: relative;
  z-index: 100;
}

.emergency-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
}

.emergency-bar__alert {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.emergency-bar__alert .pulse {
  width: 10px;
  height: 10px;
  background: var(--red-bright);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(226, 59, 66, .6); }
  50% { opacity: .7; box-shadow: 0 0 0 8px rgba(226, 59, 66, 0); }
}

.emergency-bar__meta {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: #C8CCD4;
  letter-spacing: .03em;
}

@media (max-width: 640px) {
  .emergency-bar__meta { gap: .8rem; font-size: .68rem; }
  .emergency-bar__meta span:last-child { display: none; }
}

/* ============ HEADER / NAV ============ */
.site-header {
  background: rgba(250, 250, 247, .96);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: .9rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  color: var(--ink);
}

.brand__logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

.brand__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .78rem;
  color: var(--smoke);
  margin-top: 3px;
}

@media (max-width: 420px) {
  .brand__sub { display: none; }
  .brand__logo { width: 44px; height: 44px; }
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .5rem 0;
  position: relative;
  transition: color .2s;
}

.nav__link:hover { color: var(--navy); }

.nav__link.is-active { color: var(--red); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.35rem;
  height: 3px;
  background: var(--red);
}

.nav__cta {
  background: var(--red);
  color: var(--paper) !important;
  padding: .65rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  transition: all .2s;
}

.nav__cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: .55rem .85rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
  min-height: 44px;
}

.nav-close {
  display: none;
}

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85%, 340px);
    background: var(--navy-deep);
    flex-direction: column;
    padding: 4.5rem 1.75rem 2rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    align-items: stretch;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,.25);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav__list li {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav__link {
    color: var(--paper);
    padding: 1rem 0;
    display: block;
    font-size: 1.05rem;
    min-height: 44px;
  }
  .nav__link:hover { color: var(--gold); }
  .nav__link.is-active { color: var(--gold); }
  .nav__link.is-active::after { display: none; }
  .nav__cta { margin-top: 1.25rem; text-align: center; }
  .nav-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--paper);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    width: 44px;
    height: 44px;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-ladder-4119.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(14, 30, 59, .3) 0%, rgba(14, 30, 59, .6) 60%, rgba(14, 30, 59, .92) 100%),
    linear-gradient(90deg, rgba(14, 30, 59, .75) 0%, rgba(14, 30, 59, .2) 50%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem var(--gutter) 8rem;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: .55rem;
  border-bottom: 2px solid var(--gold);
}

.hero__eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.75rem);
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--paper);
  text-transform: uppercase;
  max-width: 920px;
}

.hero__title .accent {
  color: #FFB9BD;
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -.02em;
}

.hero__lede {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #E6E3DC;
  margin-top: 1.75rem;
  max-width: 620px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: .75rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .95rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  min-height: 48px;
  justify-content: center;
  text-align: center;
}

.btn--primary {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--paper);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

.btn--ghost:hover {
  background: var(--paper);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--paper);
}

.btn__arrow {
  width: 16px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform .2s;
  flex-shrink: 0;
}

.btn__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.btn:hover .btn__arrow { transform: translateX(3px); }

/* Hero stats */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--paper);
  border-top: 4px solid var(--red);
}

.hero__stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--rule);
}

.stat-card:last-child { border-right: none; }

.stat-card__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -.01em;
}

.stat-card__label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: .45rem;
}

@media (max-width: 720px) {
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card {
    border-bottom: 1px solid var(--rule);
    padding: 1.15rem .9rem;
  }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3), .stat-card:nth-child(4) { border-bottom: none; }
}

/* ============ SECTIONS ============ */
section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: baseline;
  margin-bottom: 3rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--rule);
}

@media (max-width: 720px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: .75rem;
    margin-bottom: 2rem;
  }
}

.section-head__num {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .2em;
  color: var(--red);
  text-transform: uppercase;
  padding-top: .4rem;
}

.section-head__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3.25rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--navy);
}

.section-head__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--red);
  text-transform: none;
  letter-spacing: -.01em;
}

.section-head__desc {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--smoke);
  margin-top: .85rem;
  max-width: 640px;
  line-height: 1.6;
}

/* ============ MISSION ROW ============ */
.mission {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.mission__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 860px) {
  .mission__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.mission__text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.45;
  color: var(--ink);
}

.mission__text .drop {
  float: left;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4.5rem;
  line-height: .85;
  margin: .2rem .75rem 0 0;
  color: var(--red);
}

.mission__logo {
  max-width: 360px;
  margin: 0 auto;
}

.mission__logo img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.08) brightness(1.03) drop-shadow(0 10px 30px rgba(29, 62, 120, .15));
}

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: all .25s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -16px rgba(29, 62, 120, .2);
  border-color: var(--navy-light);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--red);
  margin-bottom: 1.1rem;
}

.service-card__num {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  color: var(--smoke-light);
  margin-bottom: .35rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: .6rem;
  color: var(--navy);
  line-height: 1.1;
}

.service-card__text {
  color: var(--smoke);
  font-size: .93rem;
  line-height: 1.6;
}

.service-card__text a { color: var(--red); }
.service-card__text a:hover { color: var(--red-dark); }

/* ============ TIMELINE ============ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--rule);
}

.timeline__item {
  position: relative;
  padding-bottom: 2.25rem;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: .5rem;
  width: 16px;
  height: 16px;
  background: var(--paper);
  border: 3px solid var(--red);
  border-radius: 50%;
}

.timeline__year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--navy);
  letter-spacing: .02em;
}

.timeline__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin: .2rem 0 .45rem;
  color: var(--ink);
}

.timeline__text {
  color: var(--smoke);
  font-size: .95rem;
  max-width: 640px;
  line-height: 1.6;
}

/* ============ PULL QUOTE ============ */
.pullquote {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.pullquote::before {
  content: '"';
  position: absolute;
  top: -50px;
  left: 5%;
  font-family: var(--font-serif);
  font-size: clamp(14rem, 24vw, 26rem);
  line-height: 1;
  color: var(--red);
  opacity: .22;
  font-weight: 600;
  pointer-events: none;
}

.pullquote__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
  text-align: center;
}

.pullquote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.8vw, 2.1rem);
  line-height: 1.35;
  color: var(--paper);
}

.pullquote__cite {
  display: block;
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-size: .88rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ CTA BLOCK ============ */
.cta-block {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: min(500px, 80vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232, 185, 35, .2) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-block--red { background: var(--red); }
.cta-block--red::before {
  background: radial-gradient(circle, rgba(232, 185, 35, .3) 0%, transparent 60%);
}

.cta-block__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.25rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 820px) {
  .cta-block__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

.cta-block__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.cta-block__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  color: var(--gold);
}

.cta-block--red .cta-block__title em { color: #FFD09B; }

.cta-block__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-top: .9rem;
  color: rgba(250, 250, 247, .88);
  max-width: 540px;
  line-height: 1.55;
}

/* ============ PAGE BANNER (subpages) ============ */
.page-banner {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(206, 32, 39, .25) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--paper); }

.page-banner__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.25rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.page-banner__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: #FFB9BD;
  text-transform: none;
}

.page-banner__lede {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: #E6E3DC;
  margin-top: 1.25rem;
  max-width: 680px;
  line-height: 1.55;
}

/* ============ PROSE ============ */
.prose {
  max-width: 760px;
}

.prose p {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.35rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin: 2.5rem 0 .9rem;
  color: var(--navy);
  line-height: 1.1;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 1.75rem 0 .6rem;
  color: var(--red);
  letter-spacing: .02em;
}

.prose ul {
  margin: .75rem 0 1.35rem 1.25rem;
}

.prose li {
  font-family: var(--font-serif);
  font-size: clamp(.98rem, 1.15vw, 1.05rem);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: .45rem;
}

.prose strong { color: var(--navy); font-weight: 600; }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--red-dark); }

/* ============ PERSONNEL CARDS ============ */
.person-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.person-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all .3s ease;
}

.person-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -14px rgba(29, 62, 120, .2);
  border-color: var(--navy-light);
}

.person-card__avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--paper);
  letter-spacing: -.02em;
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 2px var(--navy);
}

.person-card__avatar--red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 0 0 2px var(--red);
}

.person-card__avatar--placeholder {
  background: linear-gradient(135deg, var(--smoke), var(--smoke-light));
  box-shadow: 0 0 0 2px var(--smoke);
}

.person-card__avatar--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 0 0 2px var(--gold-dark);
  color: var(--navy-deep);
}

.person-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--navy);
  line-height: 1.1;
}

.person-card__role {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: .4rem;
}

.person-card__bio {
  font-size: .9rem;
  color: var(--smoke);
  margin-top: .9rem;
  line-height: 1.55;
}

/* ============ APPARATUS ============ */
.apparatus-list {
  display: grid;
  gap: 1.75rem;
}

.apparatus {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 6px solid var(--red);
  overflow: hidden;
}

@media (max-width: 820px) {
  .apparatus { grid-template-columns: 1fr; }
}

.apparatus__visual {
  aspect-ratio: 16 / 10;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.apparatus__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apparatus__body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apparatus__id {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .35rem;
}

.apparatus__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: .65rem;
  color: var(--navy);
}

.apparatus__text {
  color: var(--smoke);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: .95rem;
}

.apparatus__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem 1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--rule);
}

@media (max-width: 420px) {
  .apparatus__specs { grid-template-columns: repeat(2, 1fr); }
}

.spec__label {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--smoke-light);
}

.spec__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: .25rem;
  line-height: 1.1;
}

/* ============ SAFETY TIPS ============ */
.tip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.tip {
  padding: 1.75rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  position: relative;
  transition: all .25s ease;
}

.tip:hover {
  border-color: var(--navy-light);
  box-shadow: 0 12px 28px -14px rgba(29, 62, 120, .18);
}

.tip__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--red);
  opacity: .18;
  position: absolute;
  top: .75rem;
  right: 1.15rem;
}

.tip__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: .65rem;
  color: var(--navy);
  position: relative;
  z-index: 1;
  line-height: 1.15;
}

.tip__text {
  color: var(--smoke);
  line-height: 1.6;
  font-size: .94rem;
  position: relative;
  z-index: 1;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.contact-item {
  padding: 1.25rem 1.35rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--red);
}

.contact-item__label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: .35rem;
}

.contact-item__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.3;
}

.contact-item__value a { color: var(--navy); }
.contact-item__value a:hover { color: var(--red); }

.contact-form {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--navy-dark);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}

.form-field {
  margin-bottom: 1.15rem;
}

.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,.3);
  color: var(--paper);
  padding: .7rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s;
  min-height: 44px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea { min-height: 100px; resize: vertical; }

.form-field select option {
  background: var(--navy-dark);
  color: var(--paper);
}

/* ============ NEWS ============ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.news-card {
  border-top: 2px solid var(--navy);
  padding-top: 1.25rem;
}

.news-card__date {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .65rem;
}

.news-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: .6rem;
  color: var(--navy);
}

.news-card__title a { color: inherit; }
.news-card__title a:hover { color: var(--red); }

.news-card__excerpt {
  color: var(--smoke);
  font-size: .93rem;
  line-height: 1.55;
}

/* ============ PHOTO STRIP ============ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.photo-strip__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-dim);
  position: relative;
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.photo-strip__item:hover img { transform: scale(1.04); }

.photo-strip__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(14,30,59,.9) 0%, rgba(14,30,59,0) 100%);
  color: var(--paper);
  padding: 2rem 1rem 1rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ============ ALERT BOX ============ */
.alert {
  background: var(--paper-warm);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.alert--warn {
  border-color: var(--red);
  background: rgba(206, 32, 39, .05);
}

.alert__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  margin-bottom: .35rem;
}

.alert p {
  font-family: var(--font-serif);
  font-size: .98rem;
  margin: 0;
  line-height: 1.6;
  color: var(--ink-soft);
}

.alert a { color: var(--red); font-weight: 600; text-decoration: underline; }

/* ============ MOBILE NAV LOGO ============ */
.nav__logo { display: none; }

@media (max-width: 1000px) {
  .nav__logo {
    display: block;
    width: 88px;
    height: 88px;
    margin: 0 auto 1.75rem;
    background: var(--paper);
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,.3);
  }
  .nav__logo img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* ============ RESOURCES STRIP ============ */
.resources {
  background: var(--navy-dark);
  padding: 1.1rem var(--gutter);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
}

.resources__label {
  display: block;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .55rem;
}

.resources__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  font-family: var(--font-body);
  font-size: .9rem;
}

.resources__links a {
  color: #D6DCE5;
  transition: color .2s;
}

.resources__links a:hover {
  color: var(--gold);
}

.resources__sep {
  color: var(--smoke-light);
  user-select: none;
}

/* ============ FOOTER RESOURCES ROW ============ */
.footer-resources {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem var(--gutter);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 1.25rem;
}

.footer-resources__label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: .25rem;
}

.footer-resources a {
  color: #D6DCE5;
  font-size: .85rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
  padding: .25rem 0;
}

.footer-resources a:hover { color: var(--red-bright); }

.footer-resources a:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -.85rem;
  color: rgba(255,255,255,.2);
}

/* ============ DEDICATION STRIP ============ */
.dedication {
  background: rgba(232, 185, 35, .08);
  border-top: 1px solid rgba(232, 185, 35, .22);
  padding: 1rem var(--gutter);
  text-align: center;
}

.dedication p {
  max-width: none;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .88rem;
  color: var(--gold);
  line-height: 1.5;
}

.dedication .star {
  color: var(--red-bright);
  font-style: normal;
  margin: 0 .4rem;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-deep);
  color: var(--paper);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  border-top: 6px solid var(--red);
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand {
  max-width: 340px;
}

.footer-brand .brand__name { color: var(--paper); }
.footer-brand .brand__sub { color: var(--gold); }
.footer-brand .brand__logo {
  background: var(--paper);
  padding: 4px;
  border-radius: 6px;
  mix-blend-mode: normal;
}

.footer-brand p {
  color: #C8CCD4;
  font-size: .9rem;
  margin-top: .9rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.15rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(232, 185, 35, .3);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-col a {
  color: #D6DCE5;
  font-size: .93rem;
  transition: color .2s;
}

.footer-col a:hover { color: var(--red-bright); }

.footer-emergency {
  color: var(--red-bright) !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .14em;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--smoke-light);
  letter-spacing: .04em;
  flex-wrap: wrap;
  gap: .75rem;
}

/* ============ UTILITIES ============ */
.bg-warm { background: var(--paper-warm); }
.bg-dim { background: var(--paper-dim); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.full-width-img {
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

@media print {
  .emergency-bar, .site-header, .nav, .hero, .cta-block, .site-footer { display: none !important; }
  body { background: white; color: black; }
}
