:root {
    --navy: #1B2A4A;
    --red: #C8202F;
    --white: #FFFFFF;
    --offwhite: #F5F4F0;
    --text-dark: #1a1a2e;
    --text-mid: #444;
    --border: rgba(27,42,74,0.12);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; color: var(--text-dark); background: var(--offwhite); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--navy);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; height: 64px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  .nav-logo img { height: 48px; width: auto; border-radius: 3px; }
  .nav-logo span { color: var(--red); }
  .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
  .nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--white); }
  .nav-donate { background: var(--red); color: var(--white) !important; padding: 9px 20px; border-radius: 3px; font-weight: 700 !important; transition: background 0.2s !important; }
  .nav-donate:hover { background: #a8181f !important; }
  .nav-social { display: flex; gap: 14px; align-items: center; margin-left: 8px; }
  .nav-social a { display: flex; align-items: center; color: rgba(255,255,255,0.55); transition: color 0.2s; }
  .nav-social a:hover { color: var(--white); }
  .nav-social svg { width: 18px; height: 18px; }

  /* HERO */
  .hero {
    min-height: 100vh; background: var(--navy);
    position: relative; display: flex; align-items: center; justify-content: center;
    overflow: visible; padding-top: 64px; padding-bottom: 200px;
  }
  /* SCROLL INDICATOR */
  .scroll-indicator {
    position: absolute; bottom: 24px; left: 0; right: 0;
    display: flex; flex-direction: column; align-items: center;
    z-index: 5; animation: fadeUp 0.6s ease 0.8s both;
  }
  .scroll-chevron {
    width: 20px; height: 20px; border-right: 2px solid var(--red); border-bottom: 2px solid var(--red);
    transform: rotate(45deg); opacity: 0.6;
    animation: scrollbounce 2s ease-in-out infinite;
  }
  @keyframes scrollbounce {
    0%, 100% { transform: rotate(45deg) translateY(-3px); opacity: 0.3; }
    50% { transform: rotate(45deg) translateY(3px); opacity: 0.8; }
  }
  /* Fire photo as subtle dark hero background */
  .hero-fire-bg {
    position: absolute; inset: 0;
    background-image: url('../images/hero-fire-bg.jpg');
    background-size: cover; background-position: center 40%;
    opacity: 0.18;
  }
  .hero-bg-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(to right, rgba(27,42,74,0.97) 40%, rgba(27,42,74,0.75) 70%, rgba(27,42,74,0.5) 100%),
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200,32,47,0.12) 0%, transparent 70%);
  }
  .hero-bg-overlay::after {
    content: ''; position: absolute; top: 0; right: 30%;
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(200,32,47,0.35), transparent);
    transform: rotate(8deg) scaleY(1.3);
  }
  .hero-inner {
    position: relative; z-index: 2;
    max-width: 800px; width: 100%; padding: 60px 40px;
    text-align: center;
  }
  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
    color: var(--red); margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    animation: fadeUp 0.6s ease 0.1s both;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 30px; height: 2px; background: var(--red); }
  .hero-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 7rem); line-height: 0.92; color: var(--white); letter-spacing: 2px;
    margin-bottom: 8px; animation: fadeUp 0.6s ease 0.2s both;
  }
  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
    color: var(--red); margin-bottom: 32px; animation: fadeUp 0.6s ease 0.3s both;
  }
  .hero-headline {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 500; color: rgba(255,255,255,0.82); line-height: 1.5;
    max-width: 550px; margin: 0 auto 0; animation: fadeUp 0.6s ease 0.4s both;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.6s ease 0.5s both; }
  .btn-primary {
    background: var(--red); color: var(--white); text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px; border-radius: 3px;
    transition: background 0.2s, transform 0.15s; display: inline-block;
  }
  .btn-primary:hover { background: #a8181f; transform: translateY(-2px); }
  .btn-outline {
    background: transparent; color: var(--white); text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; padding: 15px 36px;
    border: 2px solid rgba(255,255,255,0.4); border-radius: 3px;
    transition: border-color 0.2s, transform 0.15s; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

  /* HERO ACTION COLUMNS */
  .hero-actions {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
    background: var(--white);
    position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
    z-index: 10; width: 90%; max-width: 1000px;
    border-radius: 6px; box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    border-top: 3px solid var(--red);
  }
  .hero-action-col {
    padding: 28px 28px; text-align: center;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .hero-action-col:last-child { border-right: none; }
  .hero-action-col h3 {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--navy);
    letter-spacing: 1px; margin: 0;
  }
  .hero-action-col p {
    font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; margin-bottom: 4px;
  }
  .hero-action-col .action-btn {
    display: inline-block; padding: 10px 28px; border-radius: 3px;
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .action-btn-red { background: var(--red); color: var(--white); }
  .action-btn-red:hover { background: #a8181f; transform: translateY(-2px); }
  .action-btn-navy { background: var(--navy); color: var(--white); }
  .action-btn-navy:hover { background: #142240; transform: translateY(-2px); }
  .hero-action-col .volunteer-form { display: flex; gap: 6px; width: 100%; max-width: 280px; }
  .hero-action-col .volunteer-form input {
    flex: 1; border: 1.5px solid rgba(27,42,74,0.18); border-radius: 3px; padding: 9px 12px;
    font-family: 'Barlow', sans-serif; font-size: 0.85rem; color: var(--navy);
    outline: none; transition: border-color 0.2s;
  }
  .hero-action-col .volunteer-form input:focus { border-color: var(--red); }
  .hero-action-col .volunteer-form button {
    background: var(--navy); color: var(--white); border: none; border-radius: 3px;
    padding: 9px 16px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem;
    font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
    transition: background 0.2s;
  }
  .hero-action-col .volunteer-form button:hover { background: #142240; }

  .hero-logo-wrap { display: none; }

  /* SECTIONS */
  section { padding: 110px 40px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase; color: var(--red);
    margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
  }
  .section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
  .section-label.center { justify-content: center; }
  .section-label.center::before { display: none; }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: var(--navy);
    margin-bottom: 20px; letter-spacing: 1px;
  }

  /* FIRE IMPACT SECTION — full-bleed photo with text overlay */
  .fire-section {
    position: relative; overflow: hidden; padding: 0;
    min-height: 460px; display: flex; align-items: center;
  }
  .fire-section-bg {
    position: absolute; inset: 0;
    background-image: url('../images/fire-section-bg.jpg');
    background-size: cover; background-position: center 35%;
  }
  .fire-section-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(27,42,74,0.95) 40%, rgba(27,42,74,0.7) 70%, rgba(27,42,74,0.3) 100%);
  }
  .fire-section-inner {
    position: relative; z-index: 2;
    max-width: 1100px; margin: 0 auto; padding: 80px 40px;
    max-width: 620px;
  }
  .fire-section-inner .section-label { color: rgba(255,255,255,0.55); }
  .fire-section-inner .section-label::before { background: rgba(255,255,255,0.4); }
  .fire-section-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1; color: white;
    margin-bottom: 20px; letter-spacing: 1px;
  }
  .fire-section-inner h2 span { color: var(--red); }
  .fire-section-inner p {
    font-size: 1.08rem; line-height: 1.75; color: rgba(255,255,255,0.78); margin-bottom: 16px;
  }
  .fire-section-inner p strong { color: white; font-weight: 700; }

  /* STORY / ABOUT */
  #story { background: var(--offwhite); }
  .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .story-text p { font-size: 1.05rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 20px; }
  .story-text p strong { color: var(--navy); font-weight: 700; }

  /* Photo gallery in about */
  .about-headshot {
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    margin-bottom: 24px;
  }
  .about-headshot img { width: 100%; height: auto; display: block; }

  .credentials { display: flex; flex-direction: column; gap: 16px; }
  .cred-item {
    display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px;
    background: var(--white); border-radius: 6px; border-left: 3px solid var(--red);
    box-shadow: 0 3px 14px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s;
  }
  .cred-item:hover { transform: translateX(4px); box-shadow: 0 6px 22px rgba(0,0,0,0.1); }
  .cred-icon {
    flex-shrink: 0; width: 38px; height: 38px;
    background: rgba(27,42,74,0.07); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .cred-icon svg { width: 18px; height: 18px; }
  .cred-text strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
  .cred-text span { font-size: 0.83rem; color: var(--text-mid); }

  /* ISSUES */
  #issues { background: var(--navy); position: relative; overflow: hidden; }
  #issues::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 60% at 80% 20%, rgba(200,32,47,0.15) 0%, transparent 65%);
    pointer-events: none;
  }
  #issues .section-title { color: var(--white); }
  .issues-intro { font-size: 1.1rem; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 640px; margin-bottom: 60px; }
  .issues-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .issues-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .issues-grid-5 .issue-card:nth-child(4),
  .issues-grid-5 .issue-card:nth-child(5) { /* bottom row stays in the 3-col grid */ }
  .issue-number { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: rgba(200,32,47,0.3); position: absolute; top: 16px; right: 20px; line-height: 1; }
  .issue-link { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 18px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); text-decoration: none; transition: color 0.2s, gap 0.2s; }
  .issue-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
  .issue-card:hover .issue-link svg { transform: translateX(3px); }
  .issue-link:hover { color: var(--white); }
  .issue-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; padding: 36px 30px; position: relative; overflow: hidden;
    transition: background 0.25s, transform 0.2s;
    display: flex; flex-direction: column;
  }
  .issue-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
  .issue-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
  .issue-icon {
    width: 44px; height: 44px; margin-bottom: 20px;
    background: rgba(200,32,47,0.15); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .issue-icon svg { width: 22px; height: 22px; }
  .issue-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
  .issue-card p { font-size: 0.93rem; color: rgba(255,255,255,0.68); line-height: 1.7; }
  .issue-tag { display: inline-block; margin-top: 18px; background: var(--red); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; }

  /* CAL SPOTLIGHT */
  .cal-spotlight {
    margin-top: 60px; background: rgba(200,32,47,0.12); border: 1px solid rgba(200,32,47,0.35);
    border-radius: 10px; padding: 48px 52px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .cal-spotlight h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--white); letter-spacing: 2px; margin-bottom: 6px; }
  .cal-spotlight h3 span { color: var(--red); }
  .cal-spotlight .sub { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
  .cal-spotlight p { font-size: 0.98rem; color: rgba(255,255,255,0.72); line-height: 1.7; }
  .cal-outcomes { display: flex; flex-direction: column; gap: 12px; }
  .cal-outcome {
    display: flex; align-items: center; gap: 14px; padding: 13px 18px;
    background: rgba(255,255,255,0.06); border-radius: 6px;
    font-size: 0.93rem; color: rgba(255,255,255,0.82); font-weight: 500;
  }
  .cal-check {
    width: 22px; height: 22px; background: var(--red); border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .cal-check svg { width: 11px; height: 11px; }

  /* NEWS */
  #news { background: var(--white); }
  .news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
  .news-card {
    border: 1px solid var(--border); border-radius: 8px; padding: 30px 32px;
    text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.2s;
    display: block; position: relative; overflow: hidden;
  }
  .news-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--red); transform: scaleX(0); transition: transform 0.25s; transform-origin: left;
  }
  .news-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
  .news-card:hover::after { transform: scaleX(1); }
  .news-source { font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
  .news-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 12px; }
  .news-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
  .news-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); }
  .news-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
  .news-card:hover .news-link svg { transform: translateX(3px); }

  /* CONTACT */
  #contact { background: var(--offwhite); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-info p { font-size: 1.05rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 32px; }
  .contact-ways { display: flex; flex-direction: column; gap: 14px; }
  .contact-way {
    display: flex; gap: 16px; align-items: center; padding: 18px 20px;
    background: var(--white); border-radius: 6px; border-left: 3px solid var(--red);
    box-shadow: 0 3px 14px rgba(0,0,0,0.06); transition: transform 0.2s;
  }
  .contact-way:hover { transform: translateX(4px); }
  .contact-way-icon {
    width: 38px; height: 38px; background: rgba(27,42,74,0.07); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .contact-way-icon svg { width: 18px; height: 18px; }
  .contact-way-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
  .contact-way-text span { font-size: 0.83rem; color: var(--text-mid); }

  .contact-form-wrap {
    background: var(--white); border-radius: 8px; padding: 44px 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08); position: relative; overflow: hidden;
  }
  .contact-form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); }
  .contact-form-wrap h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--navy); letter-spacing: 2px; margin-bottom: 6px; }
  .contact-form-wrap > p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 28px; line-height: 1.5; }
  .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .cf-group { display: flex; flex-direction: column; gap: 6px; }
  .cf-group label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); opacity: 0.65; }
  .cf-group input, .cf-group select, .cf-group textarea {
    border: 1.5px solid rgba(27,42,74,0.18); border-radius: 4px; padding: 11px 14px;
    font-family: 'Barlow', sans-serif; font-size: 0.95rem; color: var(--navy);
    transition: border-color 0.2s; outline: none; background: white; width: 100%;
  }
  .cf-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
  .cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color: var(--red); }
  .cf-full { grid-column: 1 / -1; }
  .cf-submit {
    width: 100%; background: var(--navy); color: white; border: none;
    font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 3px;
    padding: 16px; border-radius: 4px; cursor: pointer; margin-top: 8px;
    transition: background 0.2s, transform 0.15s;
  }
  .cf-submit:hover { background: var(--red); transform: translateY(-1px); }

  /* DONATE */
  #donate { background: var(--red); text-align: center; padding: 100px 40px; position: relative; overflow: hidden; }
  #donate::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  #donate .section-title { color: var(--white); font-size: clamp(2.5rem, 6vw, 4.5rem); }
  #donate p { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 44px; line-height: 1.65; }
  .btn-donate {
    display: inline-block; background: var(--white); color: var(--red);
    text-decoration: none; font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem; letter-spacing: 3px; padding: 20px 60px; border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 30px rgba(0,0,0,0.2);
  }
  .btn-donate:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }

  /* FOOTER */
  footer {
    background: var(--text-dark); color: rgba(255,255,255,0.5);
    padding: 32px 40px; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px; font-size: 0.82rem; line-height: 1.7;
  }
  footer strong { color: rgba(255,255,255,0.8); }
  .fppc-disclaimer { font-size: 14pt; font-weight: 700; font-family: 'Barlow', sans-serif; color: rgba(255,255,255,0.8); }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: rgba(255,255,255,0.82); }

  /* HAMBURGER MENU */
  .hamburger {
    display: none; background: none; border: none; cursor: pointer;
    padding: 6px; z-index: 201; position: relative;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 32px; height: 32px;
  }
  .hamburger span {
    display: block; width: 22px; height: 2px; background: var(--white);
    border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--navy); z-index: 99;
    flex-direction: column; align-items: center; justify-content: center; gap: 32px;
    opacity: 0; transition: opacity 0.3s;
  }
  .mobile-menu.open { display: flex; opacity: 1; }
  .mobile-menu-links {
    list-style: none; display: flex; flex-direction: column;
    align-items: center; gap: 24px;
  }
  .mobile-menu-links a {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem;
    font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    transition: color 0.2s;
  }
  .mobile-menu-links a:hover { color: var(--white); }
  .mobile-menu-links .mobile-donate {
    background: var(--red); color: var(--white); padding: 12px 36px;
    border-radius: 3px; display: inline-block;
  }
  .mobile-menu-social {
    display: flex; gap: 20px; align-items: center;
  }
  .mobile-menu-social a {
    color: rgba(255,255,255,0.55); transition: color 0.2s; display: flex;
  }
  .mobile-menu-social a:hover { color: var(--white); }
  .mobile-menu-social svg { width: 22px; height: 22px; }

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

  @media (max-width: 960px) {
    nav { padding: 0 20px; }
    .hero-inner { padding: 40px 24px; }
    .story-grid, .issues-grid, .issues-grid-5, .news-grid, .cal-spotlight, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .cal-spotlight { padding: 32px 28px; }
    section { padding: 70px 24px; }
    .cf-row { grid-template-columns: 1fr; }
    .fire-section-inner { padding: 60px 24px; }
    .hero { padding-bottom: 60px; flex-direction: column; }
    .hero-actions { position: relative; bottom: auto; left: auto; transform: none; width: 100%; max-width: 100%; grid-template-columns: 1fr; margin: 20px auto 0; border-radius: 0; }
    .hero-action-col { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
    .hero-action-col:last-child { border-bottom: none; }
    .scroll-indicator { display: none; }
  }
  @media (max-width: 580px) {
    .nav-links { display: none; }
    .nav-social { display: none; }
    .hamburger { display: flex; }
    .hero-name { font-size: 3.5rem; }
  }

  /* COOKIE CONSENT BANNER */
  .cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--navy); border-top: 2px solid var(--red);
    padding: 18px 32px; display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    animation: cookieSlideUp 0.4s ease both;
  }
  .cookie-banner.hidden { display: none; }
  .cookie-banner p {
    font-family: 'Barlow', sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.85);
    margin: 0; line-height: 1.5;
  }
  .cookie-banner a { color: var(--red); text-decoration: underline; }
  .cookie-banner a:hover { color: var(--white); }
  .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
  .cookie-btn {
    font-family: 'Barlow', sans-serif; font-size: 0.82rem; font-weight: 600;
    padding: 8px 22px; border-radius: 4px; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.2s;
    border: none;
  }
  .cookie-btn-accept { background: var(--red); color: var(--white); }
  .cookie-btn-accept:hover { background: #a01a25; }
  .cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
  .cookie-btn-decline:hover { color: var(--white); border-color: var(--white); }
  @keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  @media (max-width: 580px) {
    .cookie-banner { padding: 16px 20px; flex-direction: column; text-align: center; gap: 14px; }
    .cookie-banner p { font-size: 0.82rem; }
  }
