/* ===== CSS Variables / Theme ===== */
:root {
  --color-primary: #b71c1c;       /* Fire-engine red */
  --color-primary-dark: #7f0000;
  --color-primary-light: #e53935;
  --color-accent: #fbc02d;        /* Gold / yellow */
  --color-accent-dark: #c49000;
  --color-dark: #1a1a2e;          /* Navy-black */
  --color-dark-light: #2c2c44;
  --color-light: #f5f5f5;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
}

/* Offset anchor jumps so headings clear the fixed navbar */
section[id] {
  scroll-margin-top: 80px;
}

/* Same for the skip-link target on draft pages, where the banner adds height */
main[id] {
  scroll-margin-top: 80px;
}

.is-draft main[id] {
  scroll-margin-top: 122px;
}

/* Accessible skip-to-content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 10px 16px;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  z-index: 2000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Visible focus for keyboard users across all interactive elements */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Suppress the focus ring when <main> receives focus from the skip link
   (it's a programmatic focus target, not a real interactive element) */
main:focus {
  outline: none;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-dark);
  padding: 0 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.97);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-white);
}

.nav-brand img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-links .btn-donate {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-links .btn-donate:hover {
  background: var(--color-primary-light);
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-white);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(127, 0, 0, 0.78) 50%, rgba(183, 28, 28, 0.78) 100%),
    url('../assets/images/background.jpg') center/cover no-repeat;
  background-color: var(--color-dark); /* fallback while image loads */
  color: var(--color-white);
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(251, 192, 45, 0.1) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 30px;
  border: 4px solid var(--color-accent);
  box-shadow: 0 0 40px rgba(251, 192, 45, 0.3);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  line-height: 1.7;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-dark);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ===== Section Styles ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--color-light);
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.section-dark .section-header h2 {
  color: var(--color-white);
}

.section-header .accent-line {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== About Section ===== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--color-text);
}

.about-highlight {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
  padding: 30px 35px;
  border-radius: 12px;
  margin-top: 30px;
  font-size: 1.1rem;
  line-height: 1.7;
  box-shadow: var(--shadow-md);
}

/* ===== Mission Cards ===== */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.mission-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 35px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mission-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.mission-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.mission-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== Board Section ===== */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.board-card {
  background: var(--color-dark-light);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.board-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(251, 192, 45, 0.15);
}

.board-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

.board-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-white);
}

.board-card .role {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Advisory Board */
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.advisory-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}

.advisory-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary-light);
}

.advisory-card .company-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.advisory-card h4 {
  font-size: 0.95rem;
  color: var(--color-white);
  font-weight: 500;
}

/* Attorney Card */
.attorney-card {
  background: rgba(251, 192, 45, 0.1);
  border: 1px solid rgba(251, 192, 45, 0.3);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  max-width: 320px;
  margin: 30px auto 0;
}

.attorney-card h4 {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 4px;
}

.attorney-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 70px 0;
  text-align: center;
  color: var(--color-white);
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  font-size: 1.1rem;
  padding: 16px 40px;
}

.cta-tax {
  margin-top: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding: 22px 26px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}
.cta-tax h3 {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color-accent, #fbc02d);
}
.cta-tax p {
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.92;
  max-width: none;
  margin: 0 0 10px 0;
}
.cta-tax p:last-child { margin-bottom: 0; }

/* ===== Footer ===== */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand span {
  font-weight: 600;
  color: var(--color-white);
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-social svg {
  display: block;
}.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom .nonprofit {
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 6px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-dark);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }

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

  .nav-links a {
    padding: 12px 16px;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 120px 20px 60px;
    background:
      linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(127, 0, 0, 0.78) 50%, rgba(183, 28, 28, 0.78) 100%),
      url('../assets/images/background-mobile.jpg') center/cover no-repeat;
    background-color: var(--color-dark);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1.05rem;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .board-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .board-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

/* ===== Utility / extracted inline styles ===== */
.link-primary {
  color: var(--color-primary);
  font-weight: 600;
}

.subsection-title {
  text-align: center;
  color: var(--color-accent);
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.subsection-title--spaced {
  margin: 50px 0 20px;
}

.contact-line {
  margin-top: 10px;
}

.contact-social { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.contact-social__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}
.contact-social__link:hover,
.contact-social__link:focus-visible { color: var(--color-primary-dark); text-decoration: underline; }
.contact-social__link svg { vertical-align: middle; }
.contact-social__link--facebook { color: #1877F2; }
.contact-social__link--facebook:hover,
.contact-social__link--facebook:focus-visible { color: #0b5fc1; }

.contact-address {
  margin-top: 10px;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ===== 404 / Error Page ===== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary-dark) 50%, var(--color-primary) 100%);
  color: var(--color-white);
  padding: 60px 20px;
}

.error-page__content {
  max-width: 560px;
}

.error-page__logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  border: 3px solid var(--color-accent);
  box-shadow: 0 0 30px rgba(251, 192, 45, 0.25);
}

.error-page__code {
  font-size: 5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.error-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.error-page__message {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.error-page__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-outline--dark {
  border-color: rgba(255, 255, 255, 0.5);
}

.error-page__footer {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.link-accent {
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 480px) {
  .error-page__code {
    font-size: 4rem;
  }
  .error-page h1 {
    font-size: 1.5rem;
  }
}

/* ===== Legal pages (privacy, terms) ===== */
.container--narrow {
  max-width: 760px;
}

.legal-page {
  padding: 130px 0 80px;
  background: var(--color-white);
}

.legal-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-light);
}

.legal-header h1 {
  font-size: 2.2rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.legal-page h2 {
  font-size: 1.35rem;
  color: var(--color-dark);
  margin: 36px 0 12px;
  padding-top: 8px;
}

.legal-page h3 {
  font-size: 1.05rem;
  color: var(--color-dark);
  margin: 24px 0 8px;
  font-weight: 600;
}

.legal-page p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--color-text);
}

.legal-page ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
  list-style: disc;
}

.legal-page li {
  margin-bottom: 6px;
  line-height: 1.7;
  color: var(--color-text);
}

.legal-footer-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--color-light);
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* ===== News & Events page ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

.empty-state {
  text-align: center;
  color: var(--color-text-light);
  font-style: italic;
  padding: 24px 0;
}

/* Event cards */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.event-card__date {
  flex: 0 0 90px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 8px;
  text-align: center;
}

.event-card__date-month {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.event-card__date-day {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 4px;
}

.event-card__body {
  flex: 1;
  padding: 22px 26px;
}

.event-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.event-card__meta {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.event-card__meta strong {
  color: var(--color-text);
  font-weight: 600;
  margin-right: 4px;
}

.event-card__address {
  color: var(--color-text-light);
}

.event-card__desc {
  margin-top: 12px;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--color-text);
}

.event-card__rsvp {
  margin-top: 16px;
  font-size: 0.92rem;
  padding: 10px 22px;
}

/* News cards */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.news-card {
  background: var(--color-white);
  padding: 22px 26px;
  border-radius: 10px;
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.news-card:hover {
  box-shadow: var(--shadow-md);
}

.news-card__date {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  font-weight: 600;
  margin-bottom: 6px;
}

.news-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.news-card__body {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--color-text);
}

@media (max-width: 480px) {
  .page-hero {
    padding: 120px 0 40px;
  }
  .page-hero h1 {
    font-size: 1.8rem;
  }
  .event-card {
    flex-direction: column;
  }
  .event-card__date {
    flex: 0 0 auto;
    flex-direction: row;
    gap: 8px;
    padding: 12px 20px;
    justify-content: flex-start;
  }
  .event-card__date-day {
    font-size: 1.4rem;
    margin-top: 0;
  }
}

/* ===== Draft watermark (privacy/terms in review) ===== */

/* Top-of-page draft notice banner (sticks to viewport) */
.draft-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--color-accent);
  color: var(--color-dark);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 2px solid var(--color-accent-dark);
}

.draft-banner strong {
  letter-spacing: 0.1em;
  margin-right: 6px;
}

/* On draft pages, pin the skip-link to the viewport just below the banner
   so it can't be lost behind it when the page is scrolled. Hide further off
   screen when unfocused so its high z-index doesn't poke through the banner. */
.is-draft .skip-link {
  position: fixed;
  top: -80px;
}

.is-draft .skip-link:focus {
  top: 42px;
  z-index: 1200;
}

/* Push the navbar (and main content) down so the banner is visible */
.is-draft .navbar {
  top: 42px;
}

.is-draft main {
  padding-top: 42px;
}

/* Big rotated "DRAFT" text overlay */
.is-draft::after {
  content: "DRAFT \00B7 DRAFT \00B7 DRAFT \00B7 DRAFT \00B7 DRAFT";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(183, 28, 28, 0.07);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1050;
  user-select: none;
}

@media (max-width: 480px) {
  .draft-banner {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
  .is-draft .navbar {
    top: 36px;
  }
  .is-draft main {
    padding-top: 36px;
  }
}

@media print {
  .draft-banner {
    background: #fff;
    color: #000;
    border-bottom: 1px solid #000;
  }
}


