  :root {
    --blue:       #4AABDC;
    --blue-dark:  #2E87B8;
    --blue-light: #A8D8F0;
    --blue-pale:  #EAF6FD;
    --red:        #E03535;
    --red-dark:   #B82020;
    --red-light:  #F5AAAA;
    --red-pale:   #FEF0F0;
    --gold:       #F5C842;
    --gold-dark:  #C9A020;
    --gold-pale:  #FEF9E7;
    --white:      #FFFFFF;
    --off-white:  #F7FAFB;
    --ink:        #1A2733;
    --ink-mid:    #3D5166;
    --ink-soft:   #6B8499;
    --border:     #D8E8F0;
    --border-red: #F0CCCC;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Nunito', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }

  /* NAV / SINGLE ROW */
  nav {
    position: fixed; top: 56px; left: 0; right: 0; z-index: 100;
    background: #F7FAFB;
    border-bottom: 2px solid #D8E8F0;
    box-shadow: 0 3px 20px rgba(74,171,220,0.1);
  }
  .nav-single-row {
    display: flex; align-items: stretch;
    padding: 0 0.5rem 0 1rem;
    background: #fff;
    gap: 0;
    min-height: 44px;
  }
  .nav-logo { display: flex; align-items: center; gap: 0.5rem; border-radius: 8px; padding: 0.2rem 0.4rem; transition: background 0.2s; }
  .nav-logo:hover { background: var(--blue-pale); }
  .nav-logo-text { font-size: 1.1rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1; }
  .nav-logo-text .cool { color: var(--blue); }
  .nav-logo-text .kc   { color: var(--red); }
  .nav-divider-v { width: 1px; background: #E2EEF5; margin: 6px 6px; flex-shrink: 0; }
  .nav-hotline {
    display: flex; align-items: center; gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: var(--red); color: #fff;
    border-radius: 100px; font-weight: 800; font-size: 0.72rem;
    text-decoration: none; transition: background 0.2s;
    white-space: nowrap; align-self: center;
  }
  .nav-hotline:hover { background: var(--red-dark); }
  .nav-hotline.survey-btn { background: var(--blue); color: #fff; }
  .nav-hotline.survey-btn:hover { background: var(--blue-dark); }

  /* TABS — inline in single row */
  .group-row { display: none; }
  .g-tab {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0 0.95rem;
    font-size: 0.8rem; font-weight: 900;
    color: var(--ink-mid);
    border-bottom: 3px solid transparent;
    cursor: pointer; white-space: nowrap;
    position: relative;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
    user-select: none; text-decoration: none;
    align-self: stretch;
  }
  .g-tab:hover { color: var(--blue-dark); background: var(--blue-pale); border-bottom-color: var(--blue-light); }
  .g-tab.active     { color: var(--blue-dark); border-bottom-color: var(--blue); background: var(--blue-pale); }
  .g-tab.active-red { color: var(--red-dark);  border-bottom-color: var(--red);  background: var(--red-pale); }
  .g-tab.g-survey   { display: none; }

  .caret { font-size: 0.6rem; opacity: 0.55; margin-left: 2px; transition: transform 0.2s; }
  .g-tab.open .caret { transform: rotate(180deg); }

  /* DROPDOWN */
  .g-dropdown {
    display: none;
    position: absolute; top: calc(100% + 2px); left: 0;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(74,171,220,0.14);
    min-width: 200px;
    z-index: 200;
    overflow: hidden;
  }
  .g-tab.open .g-dropdown { display: block; }

  .drop-item {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.7rem 1rem;
    font-size: 0.85rem; font-weight: 700;
    color: var(--ink-mid);
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
  }
  .drop-item:last-child { border-bottom: none; }
  .drop-item:hover { background: var(--blue-pale); color: var(--blue-dark); }
  .drop-item.active-item { background: var(--blue-pale); color: var(--blue-dark); font-weight: 900; }
  .drop-item.active-item-red { background: var(--red-pale); color: var(--red-dark); font-weight: 900; }
  .drop-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
  .drop-dot.red { background: var(--red); }

  /* BREADCRUMB — hidden */
  .nav-breadcrumb { display: none; }

  @media (max-width: 768px) {
    .nav-top { padding: 0.5rem 1rem; }
    .group-row { padding: 0 0.25rem; gap: 0; }
    .g-tab { padding: 0.65rem 0.75rem; font-size: 0.78rem; }
    .g-tab .tab-icon-g { display: none; }
  }

  /* HERO */
  .hero {
    min-height: 85vh;
    background: linear-gradient(150deg, #EAF6FD 0%, #FFFFFF 40%, #FEF0F0 100%);
    display: flex; flex-direction: column; justify-content: flex-start; align-items: center;
    text-align: center; padding: 8rem 2rem 3rem; position: relative; overflow: hidden;
  }
  .hero::before {
    content: 'COOL KC';
    position: absolute; font-size: 22vw; font-weight: 900; letter-spacing: -0.03em;
    color: rgba(74,171,220,0.05); white-space: nowrap;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    pointer-events: none; user-select: none;
  }

  /* ── WORLD CUP BREAKING NEWS BAR ── */
  .wc-breaking {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 300;
    display: grid;
    grid-template-columns: auto 1px 1fr auto;
    align-items: center;
    gap: 0;
    background: #0A0A0A;
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--gold);
    cursor: pointer;
    transition: filter 0.2s;
    overflow: hidden;
  }
  .wc-breaking:hover { filter: brightness(1.15); }

  /* Gold left block */
  .wc-breaking-top {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px;
    background: var(--gold);
    padding: 0.6rem 1.25rem;
    flex-shrink: 0;
  }
  .wc-breaking-tag {
    font-size: 1rem; font-weight: 900; color: #0A0A0A;
    line-height: 1; letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 6px;
    animation: none;
  }
  .wc-breaking-ball { font-size: 1rem; }
  .wc-breaking-eyebrow {
    display: block;
    font-size: 0.6rem; font-weight: 700; color: rgba(10,10,10,0.55);
    text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap;
  }

  /* Red separator */
  .wc-breaking-sep {
    width: 3px; height: 100%;
    background: var(--red);
    align-self: stretch;
  }

  /* Message */
  .wc-breaking-text {
    font-size: 0.92rem; font-weight: 700; color: rgba(255,255,255,0.92);
    line-height: 1.4; padding: 0.6rem 1.25rem;
    white-space: normal;
  }
  .wc-breaking-text span { color: var(--gold); font-weight: 900; }

  /* Red flashing tag inside message */
  .wc-breaking-text .red-tag {
    display: inline-block;
    background: var(--red); color: #fff;
    font-size: 0.62rem; font-weight: 900;
    padding: 1px 6px; border-radius: 3px;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-right: 4px; vertical-align: middle;
    animation: flash-tag 1.8s ease-in-out infinite;
  }

  /* Arrow */
  .wc-breaking-arrow {
    font-size: 1rem; font-weight: 900; color: var(--gold);
    padding: 0.6rem 1.25rem; flex-shrink: 0;
    transition: transform 0.2s;
  }
  .wc-breaking.expanded .wc-breaking-arrow { transform: rotate(180deg); }

  @keyframes flash-tag { 0%,100%{opacity:1} 50%{opacity:0.55} }

  @media (max-width: 768px) {
    .wc-breaking { grid-template-columns: auto 1fr auto; }
    .wc-breaking-sep { display: none; }
    .wc-breaking-text { font-size: 0.8rem; }
  }

  /* Expand panel */
  .wc-expand-panel {
    position: fixed; top: 56px; left: 0; right: 0;
    z-index: 299;
    max-height: 0; overflow: hidden;
    transition: max-height 0.45s ease;
    background: var(--ink);
    border-bottom: 2px solid rgba(245,200,66,0.3);
  }
  .wc-expand-panel.open { max-height: 400px; }
  .wc-expand-inner {
    max-width: 1200px; margin: 0 auto; padding: 1.75rem 2rem;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; align-items: start;
  }
  .wc-stat-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 1.25rem; text-align: center;
  }
  .wc-stat-num { font-size: 2.25rem; font-weight: 900; color: var(--gold); line-height: 1; letter-spacing: -0.03em; }
  .wc-stat-lbl { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.7); margin-top: 0.4rem; line-height: 1.4; }
  .wc-expand-desc {
    grid-column: 1 / -1; font-size: 0.875rem; font-weight: 600;
    color: rgba(255,255,255,0.7); line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .wc-see-more {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 1.1rem; background: var(--gold); color: var(--ink);
    font-weight: 900; font-size: 0.82rem; border-radius: 100px;
    text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background 0.2s;
  }
  .wc-see-more:hover { background: var(--gold-dark); color: #fff; }
  @media (max-width: 768px) {
    .wc-breaking-text { white-space: normal; text-align: center; font-size: 0.9rem; }
    .wc-expand-inner { grid-template-columns: 1fr; }
  }
  .hero-logo-mark {
    width: 120px; height: 120px; margin-bottom: 1.5rem;
    position: relative; z-index: 2;
    filter: drop-shadow(0 8px 24px rgba(74,171,220,0.25));
    animation: float 4s ease-in-out infinite;
  }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  .hero-eyebrow {
    font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--blue-dark); margin-bottom: 1rem;
    position: relative; z-index: 2; opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.2s;
  }
  .hero-title {
    font-size: clamp(5rem, 18vw, 13rem); font-weight: 900;
    line-height: 0.88; letter-spacing: -0.03em;
    position: relative; z-index: 2; opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.35s;
  }
  .hero-title .cool { color: var(--blue); }
  .hero-title .kc   { color: var(--red); }
  .hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem); font-weight: 600; color: var(--ink-mid);
    max-width: 580px; line-height: 1.65; margin: 1.5rem 0 2.5rem;
    position: relative; z-index: 2; opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.5s;
  }
  .hero-badges {
    display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
    position: relative; z-index: 2; opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.65s;
  }
  .badge {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.5rem 1rem; border: 2px solid var(--border); border-radius: 100px;
    font-size: 0.82rem; font-weight: 700; color: var(--ink-mid);
    background: rgba(255,255,255,0.8); backdrop-filter: blur(4px);
  }
  .badge.blue { border-color: var(--blue);  color: var(--blue-dark); background: var(--blue-pale); }
  .badge.red  { border-color: var(--red);   color: var(--red-dark);  background: var(--red-pale);  }
  .badge .dot { width:7px; height:7px; border-radius:50%; background:currentColor; animation: blink 2s ease-in-out infinite; }

  /* Hero action buttons */
  .hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.65s;
  }
  .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.35rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
    white-space: nowrap;
  }
  .hero-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
  .hero-btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(74,171,220,0.4);
  }
  .hero-btn-primary:hover { background: var(--blue-dark); }
  .hero-btn-outline {
    background: #fff;
    color: var(--ink);
    border: 2px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }
  .hero-btn-outline:hover { border-color: var(--blue); color: var(--blue-dark); background: var(--blue-pale); }
  .hero-btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 14px rgba(224,53,53,0.35);
  }
  .hero-btn-red:hover { background: var(--red-dark); }
  .hero-btn-gold {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 4px 14px rgba(245,200,66,0.4);
  }
  .hero-btn-gold:hover { background: var(--gold-dark); color: #fff; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
  @keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

  /* SHARED */
  .section-label { font-family:'DM Mono',monospace; font-size:0.68rem; letter-spacing:0.3em; text-transform:uppercase; color:var(--blue-dark); margin-bottom:0.75rem; }
  .section-label.red { color: var(--red-dark); }
  .section-title { font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; line-height: 1; letter-spacing: -0.02em; margin-bottom: 1.25rem; color: var(--ink); }
  .section-title .blue { color: var(--blue); }
  .section-title .red  { color: var(--red); }
  .section-title .gold { color: var(--gold-dark); }
  .section-body { font-size: 1.05rem; font-weight: 600; line-height: 1.75; color: var(--ink-mid); max-width: 680px; }
  .mono-note { font-family:'DM Mono',monospace; font-size:0.72rem; color:var(--ink-soft); margin-top:0.75rem; }
  .check-list { list-style: none; }
  .check-list li { display:flex; align-items:flex-start; gap:0.6rem; padding:0.55rem 0; border-bottom:1px solid var(--border); font-size:0.92rem; font-weight:600; color:var(--ink-mid); line-height:1.45; }
  .check-list li:last-child { border-bottom: none; }
  .chk { color: var(--blue); font-weight:900; font-size:1rem; flex-shrink:0; margin-top:0.05rem; }
  .cta-btn { display:inline-flex; align-items:center; gap:0.5rem; margin-top:1.5rem; padding:0.75rem 1.5rem; background:var(--blue); color:#fff; font-weight:800; font-size:0.9rem; border-radius:100px; text-decoration:none; transition:background 0.2s,transform 0.2s; box-shadow:0 4px 16px rgba(74,171,220,0.35); }
  .cta-btn:hover { background:var(--blue-dark); transform:translateY(-2px); }

  /* WORLD CUP BANNER */
  .wc-banner { background:var(--red); padding:3.5rem 2rem; text-align:center; position:relative; overflow:hidden; }
  .wc-banner::before { content:'⚽'; position:absolute; font-size:18rem; opacity:0.06; top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; }
  .wc-banner-inner { max-width:800px; margin:0 auto; position:relative; z-index:2; }
  .wc-banner .section-label { color:rgba(255,255,255,0.75); }
  .wc-banner .section-title { color:#fff; }
  .wc-banner .section-title .gold { color:var(--gold); }
  .wc-banner .section-body { color:rgba(255,255,255,0.88); max-width:640px; margin:0 auto; }
  .wc-callout-pill { display:inline-flex; align-items:center; gap:0.6rem; margin-top:1.75rem; padding:0.75rem 1.5rem; background:rgba(255,255,255,0.15); border:2px solid rgba(255,255,255,0.4); border-radius:100px; color:#fff; font-weight:800; font-size:0.95rem; }

  /* ABOUT */
  .about-band { background:var(--off-white); border-top:3px solid var(--blue-light); }
  .about-inner { max-width:1200px; margin:0 auto; padding:6rem 2rem; display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
  .stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:2.5rem; }
  .stat-card { background:var(--white); border:2px solid var(--border); border-radius:14px; padding:1.25rem 1.5rem; box-shadow:0 2px 12px rgba(74,171,220,0.07); }
  .stat-card.red-card { border-color:var(--red-light); background:var(--red-pale); }
  .stat-number { font-size:3rem; font-weight:900; color:var(--blue); line-height:1; letter-spacing:-0.03em; }
  .stat-number.red { color: var(--red); }
  .stat-label { font-size:0.82rem; font-weight:700; color:var(--ink-mid); margin-top:0.3rem; line-height:1.4; }
  .stat-sublabel { display:block; font-size:0.72rem; font-weight:600; color:var(--red-dark); margin-top:0.2rem; }
  .about-box { background:var(--white); border:2px solid var(--border); border-radius:20px; padding:2.5rem; box-shadow:0 4px 24px rgba(74,171,220,0.1); position:relative; overflow:hidden; }
  .about-box::before { content:''; position:absolute; top:0;left:0;right:0; height:4px; background:linear-gradient(90deg,var(--blue),var(--red)); }
  .about-box h3 { font-size:1.4rem; font-weight:900; color:var(--ink); margin-bottom:1.25rem; }
  .wc-box { margin-top:1.5rem; padding:1.1rem 1.25rem; background:var(--red-pale); border:2px solid var(--red-light); border-radius:12px; }
  .wc-box-label { font-family:'DM Mono',monospace; font-size:0.62rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--red-dark); margin-bottom:0.4rem; }
  .wc-box p { font-size:0.87rem; font-weight:600; color:var(--ink-mid); line-height:1.6; }
  .wc-box strong { color:var(--red); }

  /* SYSTEMS */
  .systems-section { max-width:1200px; margin:0 auto; padding:6rem 2rem; }
  .systems-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.25rem; margin-top:2.5rem; }
  .sys-card { background:var(--white); border:2px solid var(--border); border-radius:16px; padding:2rem; position:relative; overflow:hidden; transition:transform 0.25s,box-shadow 0.25s,border-color 0.25s; box-shadow:0 2px 12px rgba(74,171,220,0.06); }
  .sys-card:hover { transform:translateY(-4px); box-shadow:0 8px 32px rgba(74,171,220,0.15); border-color:var(--blue); }
  .sys-card::before { content:''; position:absolute; top:0;left:0;right:0; height:4px; background:var(--blue); }
  .sys-card.adopt { border-color:var(--red-light); grid-column:1/-1; }
  .sys-card.adopt::before { background:linear-gradient(90deg,var(--red),var(--gold)); }
  .sys-card.adopt:hover { border-color:var(--red); box-shadow:0 8px 32px rgba(224,53,53,0.12); }
  .sys-icon { font-size:2rem; margin-bottom:0.75rem; }
  .sys-title { font-size:1.15rem; font-weight:900; color:var(--ink); margin-bottom:0.75rem; }
  .sys-title.red { color:var(--red-dark); }
  .sys-body { font-size:0.88rem; font-weight:600; color:var(--ink-mid); line-height:1.6; }
  .sys-list { list-style:none; margin-top:0.75rem; }
  .sys-list li { font-size:0.85rem; font-weight:600; color:var(--ink-soft); padding:0.3rem 0 0.3rem 1.1rem; position:relative; line-height:1.4; }
  .sys-list li::before { content:'→'; position:absolute; left:0; color:var(--blue); font-size:0.8rem; }
  .sys-list.red li::before { color:var(--red); }
  .adopt-grid { display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; align-items:start; margin-top:0.5rem; }
  .adopt-cta-box { margin-top:1.25rem; padding:1rem 1.25rem; background:var(--red-pale); border:2px solid var(--red-light); border-radius:10px; font-size:0.875rem; font-weight:600; color:var(--ink-mid); line-height:1.6; }
  .adopt-cta-box strong { color:var(--red-dark); }

  /* COOLING */
  .cooling-band { background:var(--blue-pale); border-top:3px solid var(--blue-light); border-bottom:3px solid var(--blue-light); }
  .cooling-inner { max-width:1200px; margin:0 auto; padding:6rem 2rem; }
  .cooling-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; margin-top:2.5rem; }
  .site-card { display:flex; align-items:flex-start; gap:1rem; padding:1.1rem 1.25rem; background:var(--white); border:2px solid var(--border); border-radius:12px; margin-bottom:0.75rem; transition:border-color 0.2s; }
  .site-card:hover { border-color:var(--blue); }
  .site-icon { font-size:1.5rem; flex-shrink:0; }
  .site-name { font-size:0.95rem; font-weight:800; color:var(--ink); }
  .site-detail { font-size:0.82rem; font-weight:600; color:var(--ink-soft); margin-top:0.2rem; line-height:1.5; }
  .cooling-box { background:var(--white); border:2px solid var(--border); border-radius:20px; padding:2.5rem; box-shadow:0 4px 20px rgba(74,171,220,0.1); position:relative; overflow:hidden; }
  .cooling-box::before { content:''; position:absolute; top:0;left:0;right:0; height:4px; background:var(--blue); }
  .cooling-box h3 { font-size:1.3rem; font-weight:900; color:var(--ink); margin-bottom:1.1rem; }
  .hotline-inline { margin-top:1.5rem; padding:1rem 1.25rem; background:var(--red-pale); border:2px solid var(--red-light); border-radius:12px; }
  .hotline-inline .hl-label { font-family:'DM Mono',monospace; font-size:0.62rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--red-dark); margin-bottom:0.3rem; }
  .hotline-inline .hl-num { font-size:2rem; font-weight:900; color:var(--red); letter-spacing:-0.02em; line-height:1; }
  .hotline-inline .hl-sub { font-size:0.78rem; font-weight:600; color:var(--ink-soft); margin-top:0.2rem; }

  /* DONATE */
  .donate-band { border-top:3px solid var(--border-red); }
  .donate-inner { max-width:1200px; margin:0 auto; padding:6rem 2rem; display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
  .accepted-pills { display:flex; gap:0.6rem; flex-wrap:wrap; margin-top:1.5rem; }
  .pill { display:inline-flex; align-items:center; gap:0.4rem; padding:0.5rem 1.1rem; border-radius:100px; font-size:0.85rem; font-weight:800; background:var(--blue-pale); border:2px solid var(--blue-light); color:var(--blue-dark); }
  .no-accept { font-size:0.78rem; font-weight:600; color:var(--ink-soft); margin-top:0.6rem; font-style:italic; }
  .donate-sites { margin-top:1.75rem; display:flex; flex-direction:column; gap:0.75rem; }
  .donate-site-card { display:flex; align-items:flex-start; gap:1rem; padding:1.1rem 1.25rem; background:var(--off-white); border:2px solid var(--border); border-radius:12px; }
  .involve-cards { display:flex; flex-direction:column; gap:1rem; margin-top:2rem; }
  .involve-card { background:var(--white); border:2px solid var(--border); border-radius:14px; padding:1.25rem 1.5rem; transition:border-color 0.2s,transform 0.2s; }
  .involve-card:hover { border-color:var(--blue); transform:translateX(4px); }
  .involve-card.red-card { border-color:var(--red-light); background:var(--red-pale); }
  .involve-card.red-card:hover { border-color:var(--red); }
  .involve-title { font-size:0.95rem; font-weight:800; margin-bottom:0.35rem; color:var(--ink); }
  .involve-title.red { color:var(--red-dark); }
  .involve-body { font-size:0.85rem; font-weight:600; color:var(--ink-mid); line-height:1.55; }

  /* PARTNERS */
  .partners-band { background:var(--off-white); border-top:3px solid var(--border); }
  .partners-inner { max-width:1200px; margin:0 auto; padding:6rem 2rem; }
  .partner-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1rem; margin-top:2.5rem; }
  .partner-card { background:var(--white); border:2px solid var(--border); border-radius:14px; padding:1.25rem 1.5rem; transition:border-color 0.2s,transform 0.2s; box-shadow:0 2px 8px rgba(74,171,220,0.05); }
  .partner-card:hover { border-color:var(--blue); transform:translateY(-3px); }
  .partner-name { font-size:0.95rem; font-weight:800; color:var(--ink); margin-bottom:0.3rem; }
  .partner-role { font-size:0.8rem; font-weight:600; color:var(--ink-soft); line-height:1.5; }
  .in-progress-box { margin-top:3rem; padding:2rem; background:var(--white); border:2px solid var(--blue-light); border-radius:16px; }
  .ip-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:1.25rem; margin-top:1.25rem; }
  .ip-item { font-size:0.875rem; font-weight:600; color:var(--ink-mid); line-height:1.6; }
  .ip-item strong { color:var(--blue-dark); display:block; margin-bottom:0.2rem; }

  /* WHY */
  .why-section { max-width:1200px; margin:0 auto; padding:6rem 2rem; }
  .why-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; margin-top:2.5rem; }
  .quote-block { margin-top:2rem; padding:1.5rem 1.75rem; border-left:5px solid var(--blue); background:var(--blue-pale); border-radius:0 12px 12px 0; }
  .quote-block p { font-size:1.05rem; font-weight:700; font-style:italic; color:var(--ink); line-height:1.7; }
  .compare-table { border:2px solid var(--border); border-radius:14px; overflow:hidden; box-shadow:0 2px 12px rgba(74,171,220,0.07); }
  .compare-row { display:grid; grid-template-columns:1fr 1fr; }
  .compare-header { background:var(--off-white); }
  .compare-cell { padding:0.9rem 1.1rem; font-size:0.875rem; font-weight:700; border-right:2px solid var(--border); border-bottom:2px solid var(--border); line-height:1.5; }
  .compare-cell:last-child { border-right:none; }
  .compare-row:last-child .compare-cell { border-bottom:none; }
  .compare-cell.lbl { color:var(--ink-soft); font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase; }
  .compare-cell.bad  { color:#B82020; background:#FEF5F5; }
  .compare-cell.good { color:#1A7A40; background:#F0FEF4; }

  /* HOTLINE BAND */
  .hotline-band { background:var(--red); padding:4rem 2rem; text-align:center; position:relative; overflow:hidden; }
  .hotline-band::before { content:'coolkc@kcmo.org'; position:absolute; font-size:5vw; font-weight:900; color:rgba(255,255,255,0.06); white-space:nowrap; top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; letter-spacing:-0.02em; }
  .hl-eyebrow { font-family:'DM Mono',monospace; font-size:0.7rem; letter-spacing:0.3em; text-transform:uppercase; color:rgba(255,255,255,0.7); margin-bottom:0.6rem; position:relative; z-index:2; }
  .hl-number { font-size:clamp(3rem,10vw,7rem); font-weight:900; color:#fff; letter-spacing:-0.02em; line-height:1; position:relative; z-index:2; }
  .hl-sub { font-size:1.05rem; font-weight:700; color:rgba(255,255,255,0.8); margin-top:0.6rem; position:relative; z-index:2; }

  /* FOOTER */
  footer { background:var(--ink); padding:3rem 2rem; text-align:center; }
  .footer-logo-wrap { display:flex; align-items:center; justify-content:center; gap:0.75rem; margin-bottom:0.75rem; }
  .footer-logo-text { font-size:2.5rem; font-weight:900; letter-spacing:-0.02em; }
  .footer-logo-text .cool { color:var(--blue); }
  .footer-logo-text .kc   { color:var(--red); }
  .footer-tagline { font-size:0.85rem; font-weight:600; color:rgba(255,255,255,0.45); margin-bottom:1.75rem; }
  .footer-links { display:flex; justify-content:center; gap:2rem; list-style:none; flex-wrap:wrap; margin-bottom:2rem; }
  .footer-links a { color:rgba(255,255,255,0.5); text-decoration:none; font-size:0.85rem; font-weight:700; transition:color 0.2s; }
  .footer-links a:hover { color:var(--blue); }
  .footer-copy { font-family:'DM Mono',monospace; font-size:0.68rem; color:rgba(255,255,255,0.2); }

  @media (max-width: 768px) {
    .about-inner, .cooling-grid, .donate-inner, .why-grid { grid-template-columns:1fr; gap:2.5rem; }
    .adopt-grid { grid-template-columns:1fr; }
    .stat-grid { grid-template-columns:1fr 1fr; }
  }

  /* MOBILE-FIRST RESPONSIVE OVERRIDES */
  .mobile-menu-toggle { display: none; }

  @media (max-width: 900px) {
    body { font-size: 16px; }

    /* Mobile banner fix: keep the alert in normal flow so it does not stack on top of the nav. */
    .wc-breaking { position: relative; top: auto; left: auto; right: auto; z-index: 20; }
    .wc-expand-panel { position: relative; top: auto; left: auto; right: auto; z-index: 19; }
    nav { position: sticky; top: 0 !important; z-index: 100; }
    .hero { padding-top: 2rem !important; }

    .wc-breaking { grid-template-columns: 1fr auto; align-items: stretch; }
    .wc-breaking-top { align-items: flex-start; padding: 0.55rem 0.8rem; }
    .wc-breaking-tag { font-size: 0.86rem; }
    .wc-breaking-eyebrow { font-size: 0.52rem; white-space: normal; text-align: left; }
    .wc-breaking-text { grid-column: 1 / -1; order: 3; padding: 0.45rem 0.8rem 0.6rem; text-align: left; font-size: 0.78rem; line-height: 1.35; }
    .wc-breaking-arrow { padding: 0.55rem 0.8rem; display: flex; align-items: center; }
    .wc-expand-panel.open { max-height: 80vh; overflow-y: auto; }
    .wc-expand-inner { grid-template-columns: 1fr; padding: 1rem; gap: 0.85rem; }
    .wc-stat-card { padding: 1rem; }
    .wc-stat-num { font-size: 1.9rem; }
    .wc-expand-desc { display: block; font-size: 0.82rem; }
    .wc-see-more { margin-top: 1rem; width: 100%; justify-content: center; }

    nav { box-shadow: 0 4px 16px rgba(26,39,51,0.14); }
    .mobile-menu-toggle { display: flex; width: 100%; min-height: 54px; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 1rem; border: 0; border-bottom: 2px solid var(--border); background: #fff; color: var(--ink); font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 900; cursor: pointer; }
    .mobile-menu-toggle .mobile-menu-brand { display: flex; align-items: center; gap: 0.55rem; }
    .mobile-menu-toggle .mobile-menu-icon { font-size: 1.25rem; line-height: 1; }
    .nav-single-row { display: none; flex-direction: column; align-items: stretch; max-height: calc(100vh - 140px); overflow-y: auto; padding: 0.5rem; gap: 0.35rem; background: #fff; }
    nav.mobile-open .nav-single-row { display: flex; }
    .nav-logo { justify-content: center; padding: 0.7rem; }
    .nav-divider-v { display: none; }
    .g-tab { width: 100%; align-self: auto; justify-content: space-between; min-height: 46px; padding: 0.8rem 0.9rem; border: 2px solid var(--border); border-radius: 12px; background: var(--off-white); font-size: 0.9rem; white-space: normal; }
    .g-tab:hover, .g-tab.active, .g-tab.active-red { border-bottom-width: 2px; }
    .g-dropdown { position: static; display: none; min-width: 100%; margin-top: 0.55rem; border-radius: 12px; box-shadow: none; }
    .g-tab.open { display: block; }
    .g-tab.open .g-dropdown { display: block; }
    .drop-item { padding: 0.8rem 0.85rem; font-size: 0.9rem; }
    .nav-single-row > div[style*="margin-left:auto"] { margin-left: 0 !important; flex-direction: column !important; align-items: stretch !important; padding-right: 0 !important; gap: 0.55rem !important; }
    .nav-hotline { justify-content: center; width: 100%; font-size: 0.86rem; padding: 0.8rem 1rem; }

    .hero { min-height: auto; padding-left: 1rem !important; padding-right: 1rem !important; padding-bottom: 2rem; }
    .hero::before { font-size: 32vw; top: 35%; }
    .hero-logo-mark { width: 82px; height: 82px; margin-bottom: 1rem; }
    .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.16em; line-height: 1.5; }
    .hero-title { font-size: clamp(3.8rem, 28vw, 6.3rem); }
    .hero-sub { font-size: 1rem; margin: 1rem 0 1.5rem; line-height: 1.55; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 420px; margin: 0 auto; }
    .hero-btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }

    .about-inner, .cooling-inner, .donate-inner, .partners-inner, .why-section, .systems-section, #adoptastop > div, #volunteer > div, #contribute > div, #shareanevent > div, #atrisk > div { padding-left: 1rem !important; padding-right: 1rem !important; }
    .about-inner, .cooling-grid, .donate-inner, .why-grid, .adopt-grid, #adoptastop div[style*="grid-template-columns:1fr 1fr"], #contribute div[style*="grid-template-columns:1fr 1fr"], #shareanevent div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .about-inner, .systems-section, .cooling-inner, .donate-inner, .partners-inner, .why-section, #adoptastop, #volunteer, #contribute, #shareanevent, #atrisk { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .section-title { font-size: clamp(2rem, 12vw, 3rem); line-height: 1.05; }
    .section-body { font-size: 0.98rem; line-height: 1.65; }
    .about-box, .cooling-box, .sys-card, .partner-card, .in-progress-box { padding: 1.25rem !important; border-radius: 16px; }
    .systems-grid, .partner-grid, .ip-grid, #volunteer div[style*="repeat(auto-fit"] { grid-template-columns: 1fr !important; }
    .sys-card.adopt { grid-column: auto; }
    .stat-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 2.35rem; }
    div[style*="padding:3rem"], div[style*="padding:4rem 2rem"], div[style*="padding:6rem 2rem"] { padding-left: 1rem !important; padding-right: 1rem !important; }
    div[style*="display:flex"][style*="justify-content:space-between"] { align-items: stretch !important; }
    a[style*="border-radius:100px"] { max-width: 100%; text-align: center; justify-content: center; }
    table { min-width: 620px; }
    .compare-row { grid-template-columns: 1fr; }
    .compare-cell { border-right: none; }
    div[style*="grid-template-columns:repeat(7,1fr)"] { min-width: 560px; }
    #shareanevent div[style*="overflow:hidden"][style*="border-radius:16px"] { overflow-x: auto !important; }
    .hotline-band { padding: 3rem 1rem; }
    .hl-number { font-size: clamp(2.25rem, 16vw, 4rem); overflow-wrap: anywhere; }
    .footer-links { flex-direction: column; gap: 0.75rem; }
    .footer-logo-text { font-size: 2rem; }
  }

  @media (max-width: 420px) {
    .wc-breaking-tag { font-size: 0.78rem; }
    .wc-breaking-text { font-size: 0.72rem; }
    .mobile-menu-toggle { font-size: 0.88rem; }
    .hero-title { font-size: 4.1rem; }
    .section-label { letter-spacing: 0.18em; }
    .site-card, .donate-site-card { padding: 0.9rem !important; }
    .site-icon { font-size: 1.25rem; }
  }


/* NETLIFY MULTI-PAGE LAYOUT FIXES */
.wc-breaking { position: relative !important; top: auto !important; left: auto !important; right: auto !important; z-index: 40 !important; }
.wc-expand-panel { position: relative !important; top: auto !important; left: auto !important; right: auto !important; z-index: 39 !important; }
nav { position: sticky !important; top: 0 !important; z-index: 100 !important; }
main { position: relative; z-index: 1; }
.hero { padding-top: 3rem !important; min-height: auto; }
main > div[id], main > section[id] { scroll-margin-top: 90px; }

@media (min-width: 901px) {
  .nav-single-row { overflow-x: auto; overflow-y: visible; scrollbar-width: thin; }
  .g-tab { padding-left: 0.75rem; padding-right: 0.75rem; }
  .nav-hotline { font-size: 0.68rem; padding-left: 0.6rem; padding-right: 0.6rem; }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .nav-logo-text { font-size: 0.95rem; }
  .g-tab { font-size: 0.74rem; padding-left: 0.55rem; padding-right: 0.55rem; }
}

main > .about-band:first-child,
main > .systems-section:first-child,
main > #adoptastop:first-child,
main > .cooling-band:first-child,
main > .donate-band:first-child,
main > .partners-band:first-child,
main > #volunteer:first-child,
main > #contribute:first-child,
main > #shareanevent:first-child,
main > #atrisk:first-child,
main > .why-section:first-child { border-top: 0; }

@media (max-width: 900px) {
  .wc-breaking { border-top-width: 2px; border-bottom-width: 2px; }
  .hero { padding-top: 2rem !important; }
  .hero-actions { gap: 0.6rem; }
}

/* REPAIR: multi-page banner/nav layout */
html { scroll-padding-top: 90px; }
body { overflow-x: hidden; }
.wc-breaking {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: 30 !important;
}
.wc-expand-panel {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: 29 !important;
}
nav#main-nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
}
.hero { padding-top: 3rem !important; }
main { position: relative; z-index: 1; }
.g-tab[href], .sys-card[href] { text-decoration: none; }
.nav-single-row { overflow: visible; }
.g-dropdown { text-align: left; }
@media (max-width: 900px) {
  .nav-single-row { overflow-y: auto; }
  .hero { padding-top: 2rem !important; }
}
@media (max-width: 768px) {
  .wc-breaking { display: grid !important; grid-template-columns: 1fr auto !important; }
  .wc-breaking-text { grid-column: 1 / -1 !important; }
}

/* Clean build: top alert banner removed; nav stays naturally sticky. */
nav { top: 0 !important; }
.hero { padding-top: 4rem; }
@media (max-width: 900px) { .hero { padding-top: 2rem !important; } }

/* Risk section redesign */
.risk-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.risk-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(74,171,220,0.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.risk-card-topbar { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--blue); }
.risk-card-red .risk-card-topbar { background: var(--red); }
.risk-card-blue .risk-card-topbar { background: var(--blue); }
.risk-card-gold .risk-card-topbar { background: var(--gold); }
.risk-card-dark .risk-card-topbar { background: var(--ink); }
.risk-card-header { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding-top: 0.25rem; }
.risk-icon { font-size: 2rem; width: 3.1rem; height: 3.1rem; border-radius: 14px; background: var(--off-white); display: flex; align-items: center; justify-content: center; }
.risk-label { font-family:'DM Mono',monospace; font-size:0.62rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:0.45rem; line-height:1.35; }
.risk-stat { font-size: clamp(2rem, 5vw, 3.15rem); font-weight: 900; line-height: .95; letter-spacing: -0.03em; }
.risk-stat.red { color: var(--red); }
.risk-stat.blue { color: var(--blue); }
.risk-stat.gold { color: var(--gold-dark); }
.risk-stat.dark { color: var(--ink); }
.risk-stat-label { font-size: .9rem; font-weight: 800; color: var(--ink); line-height: 1.35; margin-top: .35rem; }
.risk-section-label { font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-top: .15rem; }
.red-text { color: var(--red-dark); } .blue-text { color: var(--blue-dark); } .gold-text { color: var(--gold-dark); } .dark-text { color: var(--ink-mid); }
.risk-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.risk-list li { position: relative; padding-left: 1.1rem; font-size: .875rem; font-weight: 650; color: var(--ink-mid); line-height: 1.5; }
.risk-list li::before { content: '→'; position: absolute; left: 0; top: 0; font-weight: 900; }
.red-list li::before { color: var(--red); } .blue-list li::before { color: var(--blue); } .gold-list li::before { color: var(--gold-dark); } .dark-list li::before { color: var(--ink); }
.risk-callout { margin-top: auto; padding: .85rem 1rem; border-radius: 10px; font-size: .82rem; font-weight: 800; line-height: 1.45; }
.red-callout { background: var(--red-pale); color: var(--red-dark); }
.blue-callout { background: var(--blue-pale); color: var(--blue-dark); }
.gold-callout { background: var(--gold-pale); color: var(--gold-dark); }
.dark-callout { background: var(--off-white); color: var(--ink-mid); border: 1px solid var(--border); }
@media (max-width: 900px) { .risk-card-grid { grid-template-columns: 1fr; } .risk-card { padding: 1.25rem; } }
@media (max-width: 420px) { .risk-card-header { grid-template-columns: 1fr; } .risk-icon { width: 2.8rem; height: 2.8rem; } }


/* CLEAN REBUILD: Webinar registration banner */
.webinar-banner {
  width: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 48%, var(--blue) 100%);
  color: var(--ink);
  padding: 0.75rem 1rem;
  position: relative;
  z-index: 500;
  box-shadow: 0 4px 18px rgba(26,39,51,0.16);
}
.webinar-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.webinar-banner__message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-weight: 800;
}
.webinar-banner__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--red-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  box-shadow: 0 3px 10px rgba(26,39,51,0.14);
}
.webinar-banner__headline {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  text-shadow: 0 1px 3px rgba(26,39,51,0.3);
}
.webinar-banner__subtext {
  color: rgba(255,255,255,0.95);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}
.webinar-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.webinar-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(26,39,51,0.28);
  animation: webinarPulse 2.2s ease-in-out infinite;
  white-space: nowrap;
}
.webinar-banner__button:hover {
  transform: translateY(-2px);
  background: #0f1924;
}
.webinar-banner__close {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}
.webinar-banner__close:hover { background: rgba(255,255,255,0.22); }
.webinar-banner.is-hidden { display: none; }
@keyframes webinarPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@media (max-width: 900px) {
  .webinar-banner__inner { flex-direction: column; align-items: stretch; text-align: center; gap: 0.75rem; }
  .webinar-banner__message { justify-content: center; gap: 0.45rem; }
  .webinar-banner__actions { justify-content: center; }
  .webinar-banner__subtext { width: 100%; font-size: 0.82rem; }
  .webinar-banner__button { flex: 1; max-width: 320px; }
}

/* CLEAN REBUILD: make homepage core action buttons consistent */
.hero-btn-primary { background: var(--blue); color:#fff; }
.hero-btn-red { background: var(--red); color:#fff; }
.hero-btn-gold { background: var(--gold); color:var(--ink); }
