:root {
    --bg:          #0f0d0a;
    --bg-card:     #1a1612;
    --bg-section:  #141210;
    --cream:       #f0e0c4;
    --cream-muted: #b8a88e;
    --red:         #c42b2b;
    --blue:        #4a90c4;
    --gold:        #d4a843;
    --border:      #2a2420;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito Sans', system-ui, sans-serif;
    background: var(--bg);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
  }

  ::selection { background: rgba(196, 43, 43, 0.3); color: var(--cream); }

  a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
  a:hover { color: #e8be5a; }

  h1, h2, h3 { font-family: 'Oswald', sans-serif; font-weight: 700; color: var(--cream); line-height: 1.15; letter-spacing: 0.5px; }

  /* ---------- NAVIGATION ---------- */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 13, 10, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .brand {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
  }
  .nav-links { display: flex; gap: 32px; }
  .nav-links a {
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-muted);
  }
  .nav-links a:hover { color: var(--gold); }

  /* ---------- BUTTONS ---------- */
  .btn {
    display: inline-block;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 14px 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }
  .btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
  }
  .btn-secondary:hover { background: rgba(212, 168, 67, 0.12); color: var(--gold); }

  /* ---------- HERO ---------- */
  .hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 32px;
    position: relative;
    overflow: hidden;
  }
  .hero-glow {
    position: absolute;
    top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,43,43,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-art {
    width: 280px;
    max-width: 70vw;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 50px rgba(0,0,0,0.6);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }
  .section-label {
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 24px;
    display: block;
  }
  .hero h1 { font-size: 72px; margin-bottom: 8px; position: relative; z-index: 1; }
  .hero .subtitle {
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 10px;
    color: var(--cream-muted);
    margin-bottom: 28px;
    position: relative; z-index: 1;
  }
  .hero .tagline {
    font-size: 22px;
    line-height: 1.7;
    color: var(--cream-muted);
    font-style: italic;
    max-width: 560px;
    margin-bottom: 36px;
    position: relative; z-index: 1;
  }

  /* ---------- UNDER CONSTRUCTION BANNER ---------- */
  .construction {
    position: relative; z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 14px 24px;
    margin-bottom: 36px;
    max-width: 540px;
  }
  .construction p {
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--gold);
    line-height: 1.6;
  }

  /* ---------- SECTIONS ---------- */
  .content-section { padding: 80px 32px; max-width: 800px; margin: 0 auto; }
  .dark-section {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 32px;
  }
  .dark-section .inner { max-width: 800px; margin: 0 auto; }
  .section-label.left { text-align: left; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
  .section-label.center { text-align: center; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

  h2 { font-size: 40px; margin-bottom: 16px; }
  .lead { font-size: 18px; color: var(--cream-muted); margin-bottom: 32px; line-height: 1.75; }

  /* ---------- ABOUT COLUMNS ---------- */
  .about-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
  }
  .about-grid img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  }
  .about-grid p { font-size: 18px; line-height: 1.85; color: var(--cream-muted); margin-bottom: 18px; }

  /* ---------- PLATFORM BUTTONS ---------- */
  .platform-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--cream-muted);
    border-radius: 8px;
    padding: 12px 22px;
  }
  .platform-btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
  .platform-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(212, 168, 67, 0.08); }

  /* ---------- EMAIL CTA ---------- */
  .email-cta {
    display: inline-block;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gold);
    border: 1px solid var(--border);
    background: var(--bg-card);
    border-radius: 8px;
    padding: 16px 28px;
    margin-top: 8px;
    transition: all 0.3s ease;
  }
  .email-cta:hover { border-color: var(--gold); background: rgba(212, 168, 67, 0.08); }

  /* ---------- SUPPORTERS ---------- */
  .supporters-empty {
    text-align: center;
    padding: 40px 32px;
    border: 1px dashed var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    margin-bottom: 48px;
  }
  .supporters-empty p { font-size: 17px; color: var(--cream-muted); font-style: italic; line-height: 1.7; }

  /* ---------- CTA BOX ---------- */
  .cta-box {
    text-align: center;
    padding: 40px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(196,43,43,0.06), rgba(74,144,196,0.04));
    border: 1px solid var(--border);
  }
  .cta-box p { font-size: 18px; color: var(--cream-muted); margin-bottom: 22px; line-height: 1.7; }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    padding: 48px 32px;
    text-align: center;
  }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .social-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-muted);
    transition: all 0.3s ease;
  }
  .social-icon svg { width: 20px; height: 20px; fill: currentColor; display: block; }
  .social-icon:hover { border-color: var(--gold); background: rgba(212, 168, 67, 0.1); color: var(--gold); }
  .footer-copyright {
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: rgba(184, 168, 142, 0.5);
    line-height: 1.8;
  }

  /* ---------- MOBILE ---------- */
  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 11px; letter-spacing: 1px; }
    .hero h1 { font-size: 52px; }
    .hero .tagline { font-size: 19px; }
    h2 { font-size: 32px; }
    .content-section, .dark-section { padding: 56px 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 28px; }
    .about-grid img { max-width: 280px; margin: 0 auto; display: block; }
    .platform-btn { width: 100%; text-align: center; }
  }
