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

:root {
  --navy: #0f1d35;
  --navy-mid: #1a2744;
  --navy-light: #243352;
  --red: #c0392b;
  --red-dark: #962d23;
  --red-glow: #e74c3c;
  --cream: #f0ece4;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-400: #999;
  --gray-600: #666;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 29, 53, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(15, 29, 53, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy) url('images/ambulance-fireworks.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15,29,53,0.7) 0%,
      rgba(15,29,53,0.4) 40%,
      rgba(15,29,53,0.6) 70%,
      rgba(15,29,53,0.95) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: fadeUp 1.2s ease-out 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: 120px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 0.95;
  margin-bottom: 0.5rem;
}

.hero-title .red { color: var(--red-glow); }

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.2s;
}

.hero-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite 2s;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
  stroke-width: 2;
}

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

/* ========== SECTIONS ========== */
.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 4rem);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.section-body {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 680px;
  color: inherit;
  opacity: 0.85;
}

.section-dark .section-body { color: rgba(255,255,255,0.75); }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--navy-light);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
  border-left: 3px solid var(--red);
}

.stat-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(192,57,43,0.08);
  border-radius: 50%;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ========== HISTORY TIMELINE ========== */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--red), var(--red), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 2rem);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 2rem);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0.5rem;
  width: 14px;
  height: 14px;
  background: var(--red);
  border: 3px solid var(--cream);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.timeline-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ========== CARDS ========== */
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15,29,53,0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red-glow);
  fill: none;
  stroke-width: 2;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.card a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ========== EMPLOYMENT ========== */
.employment-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.req-list {
  list-style: none;
  margin: 1.5rem 0;
}

.req-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0.8rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}

.req-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 6px;
  height: 6px;
  background: var(--red);
}

.submit-box {
  background: var(--navy-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 3px solid var(--red);
}

.submit-box h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: var(--white);
}

.submit-box p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.submit-box p a {
  color: var(--red-glow);
  text-decoration: none;
  font-weight: 600;
}

.submit-box p a:hover { text-decoration: underline; }

/* Defensive: ensure button-styled anchors keep their button colors regardless of context */
.submit-box .btn-download,
.submit-box a.btn-download { color: var(--white); }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  padding: 14px 28px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}

.btn-download:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-download svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ========== RECORDS ========== */
.records-intro {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.records-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.record-card {
  background: var(--navy-light);
  padding: 2rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
  display: block;
}

.record-card:hover {
  border-bottom-color: var(--red);
  transform: translateY(-3px);
}

.record-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.record-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.record-card .dl-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  color: var(--red-glow);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-card .dl-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.records-notes {
  background: rgba(192,57,43,0.08);
  border-left: 3px solid var(--red);
  padding: 1.5rem 2rem;
}

.records-notes h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.records-notes ul {
  list-style: none;
}

.records-notes li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.records-notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact-card {
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: border-color 0.3s;
}

.contact-card:hover { border-color: var(--red); }

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.contact-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.contact-card a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem clamp(1.5rem, 6vw, 4rem) 2rem;
  border-top: 3px solid var(--red);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 0.8rem;
  max-width: 320px;
}

.footer h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.footer-social a:hover { background: var(--red); }

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ========== DIVIDER ========== */
.red-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-glow), var(--red));
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .about-grid,
  .employment-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline::before { left: 1rem; }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-right: 0;
    padding-left: 3rem;
    text-align: left;
  }

  .timeline-dot {
    left: 1rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15, 29, 53, 0.98);
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 2rem;
    font-size: 0.85rem;
  }

  .nav-toggle { display: flex; }

  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .records-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
}

/* ========== SKIP TO CONTENT ========== */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 0;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* ========== 911 BANNER ========== */
.emergency-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
}

.emergency-banner strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* Push hero down to account for banner */
.hero { margin-top: 38px; }

@media (max-width: 900px) {
  .emergency-banner { font-size: 0.75rem; padding: 8px 1rem; }
  .hero { margin-top: 34px; }
}

/* ========== MAP ========== */
.map-wrap {
  margin-top: 2.5rem;
  border: 1px solid var(--gray-200);
  height: 300px;
  position: relative;
  background: var(--gray-200);
}

.map-wrap::before {
  content: 'Loading map\2026';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-600);
  z-index: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: relative;
  z-index: 1;
}

/* ========== DONATE ========== */
.donate-section {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 4rem);
  text-align: center;
}

.donate-section .container {
  max-width: 700px;
}

.donate-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
}

.donate-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--red-glow);
  fill: none;
  stroke-width: 2;
}

.donate-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 1rem;
}

.donate-section p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.donate-address {
  display: inline-block;
  background: var(--white);
  padding: 1.2rem 2rem;
  border-left: 3px solid var(--red);
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.7;
}

.donate-address strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

/* ========== HOURS ========== */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.8rem;
  padding: 6px 12px;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.15);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
}

.hours-badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ========== COOKIE CONSENT ========== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 1.2rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  border-top: 2px solid var(--red);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.visible { transform: translateY(0); }
.cookie-consent.hidden { display: none; }

.cookie-consent a {
  color: var(--red-glow);
  text-decoration: underline;
}

.cookie-consent-btn {
  flex-shrink: 0;
  padding: 10px 24px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-consent-btn:hover { background: var(--red-dark); }

@media (max-width: 600px) {
  .cookie-consent { flex-direction: column; text-align: center; }
}

/* ========== PRINT ========== */
@media print {
  .nav, .emergency-banner, .hero-scroll, .cookie-consent, .footer-social, .map-wrap { display: none; }
  .hero { height: auto; min-height: 0; margin-top: 0; padding: 2rem; }
  .hero-bg, .hero-overlay { display: none; }
  .hero-content { animation: none; color: #000; }
  .hero-title { color: #000; font-size: 2rem; }
  .hero-title .red { color: var(--red); }
  .hero-tagline { color: #333; }
  .section-dark { background: #fff; color: #000; }
  .section-dark .section-body { color: #333; }
  .stat-card { background: #f5f5f5; border-left-color: #000; }
  .stat-number { color: #000; }
  .stat-label { color: #555; }
  .reveal, .timeline-item { opacity: 1; transform: none; }
  body { font-size: 12pt; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
  .nav-logo a[href]::after, .footer-links a[href]::after { content: none; }
  .gallery { display: none; }
}

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

.service-card {
  background: var(--navy-light);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-top: 3px solid var(--red);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.service-card .s-icon {
  width: 48px;
  height: 48px;
  background: rgba(192,57,43,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 4px;
}

.service-card .s-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red-glow);
  fill: none;
  stroke-width: 2;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.standby-box {
  margin-top: 2.5rem;
  background: var(--navy-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  border-left: 3px solid var(--red);
}

.standby-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.standby-box p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.btn-inquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s;
}

.btn-inquire:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .standby-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ========== NEWS LAYOUT ========== */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  margin-top: 2.5rem;
}

.news-cards-col .news-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0;
}

@media (max-width: 1000px) {
  .news-layout {
    grid-template-columns: 1fr;
  }
}

/* ========== FACEBOOK FEED ========== */
.fb-feed-wrap {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  min-height: 300px;
}

/* ========== GALLERY ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(15,29,53,0.85));
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(15,29,53,0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid rgba(255,255,255,0.1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--red-glow); }

/* ========== NEWS ========== */
.news-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(15,29,53,0.08);
}

.news-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.news-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ========== RESOURCES ========== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.resource-link:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--red);
  transform: translateY(-2px);
}

.resource-link .r-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(192, 57, 43, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.resource-link .r-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red-glow);
  fill: none;
  stroke-width: 2;
}

.resource-link .r-text h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.resource-link .r-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

/* CONTACT TEASER (home page) */
.contact-teaser {
  max-width: 900px;
  margin: 0 auto;
}

.contact-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  background: var(--white);
  border-left: 4px solid var(--red);
  padding: 2rem clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(15, 29, 53, 0.06);
}

.contact-teaser-grid .ct-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 0.4rem;
}

.contact-teaser-grid p {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

.contact-teaser-grid a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.contact-teaser-grid a:hover { text-decoration: underline; }
