    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --white:       #f4f4ff;
      --surface:     #ffffff;
      --blue:        #3d3aed;
      --blue-light:  #eeeefd;
      --blue-mid:    #b0b0f5;
      --blue-dark:   #2825c2;
      --green:       #2db87a;
      --green-light: #e6f8f1;
      --green-mid:   #7ecfb0;
      --red:         #c0392b;
      --red-bright:  #e63946;
      --red-light:   #fdeef0;
      --red-dark:    #7a1a12;
      --amber:       #c06000;
      --amber-light: #fff3e0;
      --purple:      #6c3aed;
      --purple-light:#f0eeff;
      --ink:         #0f0e2e;
      --ink-soft:    #3a3860;
      --ink-muted:   #8585aa;
      --border:      #d4d4f0;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }

    /* NAV */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 4rem; background: rgba(244,244,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
    .nav-brand { display: flex; align-items: center; gap: 1rem; }
    .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; letter-spacing: 0.05em; color: var(--ink); text-decoration: none; }
    .nav-logo span { color: var(--green); }
    .nav-divider { width: 1px; height: 1.4rem; background: var(--border); }
    .nav-section { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-bright); }
    .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
    .nav-links a { font-size: 0.8rem; font-weight: 400; text-decoration: none; color: var(--ink-soft); transition: color 0.2s; }
    .nav-links a:hover { color: var(--blue); }
    .nav-links a.active { color: var(--red-bright); font-weight: 500; }
    .nav-emergency-pill { display: flex; align-items: center; gap: 0.5rem; background: var(--red-bright); color: white; padding: 0.5rem 1.1rem; border-radius: 100px; font-size: 0.78rem; font-weight: 500; text-decoration: none; animation: nav-pulse 2s ease-in-out infinite; }
    @keyframes nav-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(230,57,70,0.4)} 50%{box-shadow:0 0 0 6px rgba(230,57,70,0)} }
    .pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: white; animation: pulse 2s ease-in-out infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

    /* CRITICAL BANNER — always visible at top */
    .critical-banner {
      position: fixed; top: 69px; left: 0; right: 0; z-index: 90;
      background: var(--red-bright);
      padding: 0.6rem 4rem;
      display: flex; align-items: center; justify-content: center;
      gap: 2.5rem; flex-wrap: wrap;
    }
    .critical-banner-label { font-size: 0.72rem; font-weight: 600; color: white; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
    .critical-numbers { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
    .critical-num { display: flex; align-items: center; gap: 0.5rem; }
    .critical-num-label { font-size: 0.65rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }
    .critical-num-val { font-family: 'IBM Plex Mono', monospace; font-size: 1rem; font-weight: 500; color: white; text-decoration: none; transition: opacity 0.2s; }
    .critical-num-val:hover { opacity: 0.8; }
    .critical-sep { width: 1px; height: 1.5rem; background: rgba(255,255,255,0.25); }

    /* HERO */
    .hero {
      padding-top: calc(69px + 44px);
      background: linear-gradient(160deg, var(--red-dark) 0%, var(--red) 50%, #e63946 100%);
      padding-bottom: 5rem; padding-left: 4rem; padding-right: 4rem;
      position: relative; overflow: hidden;
    }
    .hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
    .hero::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); right: -100px; top: -100px; }
    .hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
    .hero-tag { font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.8rem; display: block; }
    .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 300; color: white; line-height: 1.1; margin-bottom: 1rem; }
    .hero-title em { font-style: italic; color: #ffc8c8; }
    .hero-sub { font-size: 0.95rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.7; max-width: 56ch; margin-bottom: 2.5rem; }
    .hero-save-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.9rem 2rem; background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.3); border-radius: 100px; font-size: 0.88rem; font-weight: 500; text-decoration: none; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; }
    .hero-save-btn:hover { background: rgba(255,255,255,0.22); }

    /* BREADCRUMB */
    .breadcrumb-bar { background: rgba(122,26,18,0.95); padding: 0.8rem 4rem; }
    .breadcrumb { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
    .breadcrumb a { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
    .breadcrumb-sep { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
    .breadcrumb-current { font-size: 0.75rem; color: rgba(255,255,255,0.85); }

    /* PAGE NAV TABS */
    .page-tabs { background: var(--surface); border-bottom: 2px solid var(--border); position: sticky; top: 113px; z-index: 80; }
    .page-tabs-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; gap: 0; overflow-x: auto; }
    .page-tab { padding: 1rem 1.5rem; font-size: 0.82rem; font-weight: 400; color: var(--ink-muted); text-decoration: none; white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s; display: flex; align-items: center; gap: 0.4rem; }
    .page-tab:hover { color: var(--ink); }
    .page-tab.active { color: var(--red-bright); border-bottom-color: var(--red-bright); font-weight: 500; }

    /* MAIN WRAP */
    .main-wrap { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 6rem; }

    /* SECTION HEADERS */
    .section-header { margin-bottom: 2rem; }
    .section-tag { font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red-bright); font-weight: 500; margin-bottom: 0.4rem; display: block; }
    .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 300; color: var(--ink); line-height: 1.2; }
    .section-title em { font-style: italic; color: var(--red-bright); }
    .section-sub { font-size: 0.88rem; color: var(--ink-muted); font-weight: 300; margin-top: 0.4rem; }

    /* EMERGENCY NUMBER CARDS */
    .emergency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 4rem; }
    .emergency-card { border-radius: 1.2rem; padding: 2rem; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 1rem; }
    .emergency-card.critical { background: var(--red-bright); }
    .emergency-card.urgent   { background: var(--red); }
    .emergency-card.support  { background: var(--ink); }
    .emergency-card.health   { background: var(--blue); }
    .emergency-card.mental   { background: var(--purple); }
    .emergency-card.poison   { background: #2d6a0a; }
    .emergency-card::after { content: ''; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,0.05); right: -40px; bottom: -40px; }
    .ec-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500; color: rgba(255,255,255,0.6); }
    .ec-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; color: white; line-height: 1.2; }
    .ec-number { font-family: 'IBM Plex Mono', monospace; font-size: 2rem; font-weight: 500; color: white; text-decoration: none; line-height: 1; display: block; transition: opacity 0.2s; }
    .ec-number:hover { opacity: 0.85; }
    .ec-number.small { font-size: 1.3rem; }
    .ec-note { font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.5; }
    .ec-call-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem; background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.25); border-radius: 0.65rem; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; text-decoration: none; transition: background 0.2s; margin-top: auto; }
    .ec-call-btn:hover { background: rgba(255,255,255,0.25); }
    .ec-alt-numbers { display: flex; flex-direction: column; gap: 0.4rem; }
    .ec-alt { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0.7rem; background: rgba(255,255,255,0.08); border-radius: 0.5rem; }
    .ec-alt-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
    .ec-alt-num { font-family: 'IBM Plex Mono', monospace; font-size: 0.85rem; color: white; text-decoration: none; font-weight: 400; }

    /* A&E SECTION */
    .ae-section { margin-bottom: 4rem; scroll-margin-top: 160px; }
    .ae-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .ae-card { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; position: relative; overflow: hidden; transition: box-shadow 0.2s, border-color 0.2s; }
    .ae-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red-bright); }
    .ae-card:hover { box-shadow: 0 6px 24px rgba(192,57,43,0.1); border-color: #f5b0b5; }
    .ae-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }
    .ae-badge { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.18rem 0.55rem; border-radius: 100px; background: var(--red-light); color: var(--red); border: 1px solid #f5b0b5; }
    .ae-24 { background: #fff0f0; color: var(--red-bright); border-color: #ffb0b5; font-weight: 600; }
    .ae-open { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.65rem; color: var(--green); font-weight: 500; }
    .ae-open-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
    .ae-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 300; color: var(--ink); line-height: 1.3; }
    .ae-lga { font-size: 0.72rem; font-family: 'IBM Plex Mono', monospace; color: var(--ink-muted); }
    .ae-address { font-size: 0.78rem; color: var(--ink-muted); font-weight: 300; }
    .ae-phone { font-family: 'IBM Plex Mono', monospace; font-size: 0.88rem; color: var(--red-bright); text-decoration: none; font-weight: 400; transition: color 0.2s; }
    .ae-phone:hover { color: var(--red); }
    .ae-features { display: flex; gap: 0.4rem; flex-wrap: wrap; }
    .ae-feat { font-size: 0.65rem; padding: 0.12rem 0.5rem; border-radius: 100px; border: 1px solid var(--border); color: var(--ink-muted); font-weight: 300; }
    .ae-actions { display: flex; gap: 0.5rem; padding-top: 0.7rem; border-top: 1px solid var(--border); }
    .ae-btn { flex: 1; padding: 0.55rem 0.8rem; border-radius: 0.5rem; font-family: 'DM Sans', sans-serif; font-size: 0.76rem; font-weight: 500; text-align: center; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.3rem; }
    .ae-btn.call { background: var(--red-bright); color: white; }
    .ae-btn.call:hover { background: var(--red); }
    .ae-btn.map { background: var(--white); color: var(--ink-soft); border: 1px solid var(--border); }
    .ae-btn.map:hover { border-color: var(--red-bright); color: var(--red-bright); }

    /* FIRST AID SECTION */
    .firstaid-section { margin-bottom: 4rem; scroll-margin-top: 160px; }
    .firstaid-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .firstaid-card { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; }
    .firstaid-header { padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 0.8rem; cursor: pointer; transition: background 0.15s; user-select: none; }
    .firstaid-header:hover { background: var(--white); }
    .firstaid-icon { width: 2.4rem; height: 2.4rem; border-radius: 0.6rem; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .fi-red    { background: var(--red-light); }
    .fi-amber  { background: var(--amber-light); }
    .fi-blue   { background: var(--blue-light); }
    .fi-green  { background: var(--green-light); }
    .fi-purple { background: var(--purple-light); }
    .firstaid-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: var(--ink); flex: 1; }
    .firstaid-chevron { font-size: 0.75rem; color: var(--ink-muted); transition: transform 0.25s; flex-shrink: 0; }
    .firstaid-card.open .firstaid-chevron { transform: rotate(180deg); }
    .firstaid-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .firstaid-card.open .firstaid-body { max-height: 600px; }
    .firstaid-content { padding: 0 1.5rem 1.5rem; }
    .firstaid-steps { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .firstaid-step { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.85rem; color: var(--ink-soft); font-weight: 300; line-height: 1.6; }
    .step-num { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--red-bright); color: white; font-size: 0.65rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem; }
    .step-num.amber  { background: var(--amber); }
    .step-num.blue   { background: var(--blue); }
    .step-num.green  { background: var(--green); }
    .step-num.purple { background: var(--purple); }
    .firstaid-warning { background: var(--red-light); border: 1px solid #f5b0b5; border-radius: 0.5rem; padding: 0.8rem 1rem; font-size: 0.78rem; color: var(--red); font-weight: 400; line-height: 1.6; margin-top: 1rem; }
    .firstaid-tip { background: var(--green-light); border: 1px solid var(--green-mid); border-radius: 0.5rem; padding: 0.8rem 1rem; font-size: 0.78rem; color: #1a6644; font-weight: 400; line-height: 1.6; margin-top: 1rem; }

    /* MENTAL HEALTH SECTION */
    .mental-section { margin-bottom: 4rem; scroll-margin-top: 160px; }
    .mental-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.5rem; }
    .mental-card { background: var(--purple-light); border: 1px solid #c0b8f8; border-radius: 1rem; padding: 1.8rem; display: flex; flex-direction: column; gap: 0.8rem; }
    .mental-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: var(--ink); }
    .mental-card-org { font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; color: var(--ink-muted); letter-spacing: 0.08em; }
    .mental-card-num { font-family: 'IBM Plex Mono', monospace; font-size: 1.4rem; font-weight: 500; color: var(--purple); text-decoration: none; display: block; transition: opacity 0.2s; }
    .mental-card-num:hover { opacity: 0.8; }
    .mental-card-hours { font-size: 0.75rem; color: var(--ink-muted); font-weight: 300; }
    .mental-card-note { font-size: 0.78rem; color: var(--ink-soft); font-weight: 300; line-height: 1.5; }
    .mental-call-btn { display: flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.65rem; background: var(--purple); color: white; border-radius: 0.6rem; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500; text-decoration: none; transition: opacity 0.2s; margin-top: auto; }
    .mental-call-btn:hover { opacity: 0.85; }
    .mental-info-box { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--purple); border-radius: 0 0.75rem 0.75rem 0; padding: 1.2rem 1.5rem; font-size: 0.85rem; color: var(--ink-soft); font-weight: 300; line-height: 1.7; }
    .mental-info-box strong { font-weight: 500; color: var(--ink); display: block; margin-bottom: 0.4rem; }

    /* POISON CONTROL */
    .poison-section { margin-bottom: 4rem; scroll-margin-top: 160px; }
    .poison-hero { background: linear-gradient(135deg, #1a4a06, #2d6a0a); border-radius: 1.2rem; padding: 2.5rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
    .poison-hero-text { flex: 1; }
    .poison-hero-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: white; margin-bottom: 0.3rem; }
    .poison-hero-title em { font-style: italic; color: #b8f0a8; }
    .poison-hero-sub { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.6; max-width: 50ch; }
    .poison-hero-num { text-align: right; flex-shrink: 0; }
    .poison-hero-num a { font-family: 'IBM Plex Mono', monospace; font-size: 2.2rem; font-weight: 500; color: white; text-decoration: none; display: block; margin-bottom: 0.3rem; }
    .poison-hero-num p { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
    .poison-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .poison-card { background: var(--surface); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.3rem; display: flex; flex-direction: column; gap: 0.6rem; }
    .poison-card-icon { font-size: 1.5rem; }
    .poison-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; color: var(--ink); }
    .poison-card-steps { font-size: 0.78rem; color: var(--ink-soft); font-weight: 300; line-height: 1.6; }
    .poison-card-warning { font-size: 0.72rem; color: var(--red); font-weight: 500; background: var(--red-light); padding: 0.4rem 0.6rem; border-radius: 0.4rem; margin-top: 0.3rem; }

    /* WHAT TO DO SECTION */
    .guide-section { margin-bottom: 4rem; scroll-margin-top: 160px; }
    .guide-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
    .guide-card { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; }
    .guide-card-num { font-family: 'IBM Plex Mono', monospace; font-size: 0.65rem; color: var(--ink-muted); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
    .guide-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: var(--ink); margin-bottom: 0.8rem; }
    .guide-card-body { font-size: 0.82rem; color: var(--ink-soft); font-weight: 300; line-height: 1.7; }
    .guide-card-body strong { font-weight: 500; color: var(--ink); }

    /* SAVE NUMBERS SECTION */
    .save-section { margin-bottom: 4rem; scroll-margin-top: 160px; }
    .save-box { background: linear-gradient(135deg, var(--red-dark), var(--red)); border-radius: 1.2rem; padding: 3rem; text-align: center; }
    .save-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: white; margin-bottom: 0.5rem; }
    .save-title em { font-style: italic; color: #ffc8c8; }
    .save-sub { font-size: 0.9rem; color: rgba(255,255,255,0.55); font-weight: 300; margin-bottom: 2rem; }
    .save-numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-bottom: 2rem; }
    .save-num-item { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 0.75rem; padding: 1rem; text-align: center; }
    .save-num-label { font-size: 0.65rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
    .save-num-val { font-family: 'IBM Plex Mono', monospace; font-size: 1.1rem; font-weight: 500; color: white; }
    .save-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .save-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: all 0.2s; text-decoration: none; border: none; }
    .save-btn.primary { background: rgba(255,255,255,0.95); color: var(--red); }
    .save-btn.primary:hover { background: white; }
    .save-btn.ghost { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.25); }
    .save-btn.ghost:hover { background: rgba(255,255,255,0.22); }

    /* DISCLAIMER */
    .disclaimer { background: var(--amber-light); border: 1px solid #f0c070; border-radius: 0.75rem; padding: 1.2rem 1.5rem; margin-bottom: 3rem; font-size: 0.82rem; color: #5a3000; line-height: 1.7; font-weight: 300; }
    .disclaimer strong { font-weight: 500; }

    /* FOOTER */
    footer { background: #0f0e2e; padding: 2.5rem 4rem; }
    .footer-bottom { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: white; text-decoration: none; }
    .footer-brand span { color: var(--green-mid); }
    .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .footer-link { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
    .footer-link:hover { color: #ffc8c8; }

    /* MOBILE NAV */
    .mobile-nav { display: none; position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 200; background: rgba(15,14,46,0.95); backdrop-filter: blur(16px); border-radius: 100px; padding: 0.75rem 1.5rem; align-items: center; gap: 1.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.3); white-space: nowrap; }
    .mobile-nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; color: white; text-decoration: none; }
    .mobile-nav-logo span { color: #ffc8c8; }
    .mobile-nav-divider { width: 1px; height: 1.2rem; background: rgba(255,255,255,0.15); }
    .mobile-menu-btn { display: flex; align-items: center; gap: 0.5rem; background: none; border: none; color: rgba(255,255,255,0.8); font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; padding: 0; }
    .mobile-menu-icon { display: flex; flex-direction: column; gap: 3px; }
    .mobile-menu-icon span { display: block; width: 16px; height: 1.5px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.25s; }
    .mobile-menu-btn.open .mobile-menu-icon span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
    .mobile-menu-btn.open .mobile-menu-icon span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.open .mobile-menu-icon span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
    .mobile-menu-drawer { position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%); z-index: 199; background: rgba(15,14,46,0.98); backdrop-filter: blur(20px); border-radius: 1.2rem; padding: 1.2rem; min-width: 240px; display: none; flex-direction: column; gap: 0.3rem; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
    .mobile-menu-drawer.open { display: flex; }
    .drawer-link { display: flex; align-items: center; gap: 0.8rem; padding: 0.75rem 1rem; border-radius: 0.75rem; text-decoration: none; font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 300; transition: background 0.15s; }
    .drawer-link:hover { background: rgba(192,57,43,0.2); color: white; }
    .drawer-link-icon { font-size: 1rem; width: 1.5rem; text-align: center; }
    .drawer-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0.3rem 0; }
    .drawer-home-btn { display: flex; align-items: center; justify-content: center; padding: 0.85rem; border-radius: 100px; background: var(--blue); color: white; text-decoration: none; font-size: 0.85rem; font-weight: 500; margin-top: 0.3rem; }

    .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links, .nav-emergency-pill { display: none; }
      .mobile-nav { display: flex; }
      .critical-banner { top: 62px; padding: 0.6rem 1rem; gap: 0.8rem; }
      .hero { padding: 8rem 1.5rem 3.5rem; }
      .breadcrumb-bar { padding: 0.8rem 1.5rem; }
      .page-tabs { top: 106px; }
      .main-wrap { padding: 2rem 1.5rem 4rem; }
      .emergency-grid { grid-template-columns: 1fr 1fr; }
      .ae-grid { grid-template-columns: 1fr; }
      .firstaid-grid { grid-template-columns: 1fr; }
      .mental-grid { grid-template-columns: 1fr; }
      .poison-grid { grid-template-columns: 1fr; }
      .guide-grid { grid-template-columns: 1fr; }
      .save-numbers-grid { grid-template-columns: 1fr 1fr; }
      .poison-hero { flex-direction: column; }
      .poison-hero-num { text-align: left; }
      footer { padding: 2rem 1.5rem; }
    }
    @media (max-width: 500px) {
      .emergency-grid { grid-template-columns: 1fr; }
      .save-numbers-grid { grid-template-columns: 1fr 1fr; }
    }