:root {
      --navy: #101f33;
      --deep-purple: #24113f;
      --purple: #5b2a86;
      --gold: #c9a227;
      --soft-gold: #f6efe0;
      --light-bg: #f7f7fb;
      --white: #ffffff;
      --text: #1f2933;
      --muted: #5f6b7a;
      --border: #e5e7eb;
      --max-width: 1120px;
      --radius: 18px;
      --shadow: 0 18px 45px rgba(16, 31, 51, 0.08);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.65;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }

    .nav-wrap {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 6px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
      flex: 0 0 auto;
    }

    .logo-img {
      width: 165px;
      max-width: 42vw;
      height: auto;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .brand-text.visually-hidden {
      position: absolute;
      left: -9999px;
    }

    .brand-name {
      font-size: 1rem;
      font-weight: 800;
      color: var(--navy);
      white-space: nowrap;
    }

    .brand-tagline {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
    }

    .nav-links a {
      padding: 8px 0;
      border-bottom: 2px solid transparent;
    }

    .nav-links a:hover {
      color: var(--purple);
      border-color: var(--gold);
    }

    .nav-donate {
      background: var(--deep-purple);
      color: var(--white) !important;
      padding: 8px 14px !important;
      border-radius: 999px;
      border-bottom: none !important;
    }

    .nav-donate:hover {
      background: var(--purple);
      color: var(--white) !important;
      border-color: transparent !important;
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: 0;
      font-size: 1.8rem;
      color: var(--navy);
      cursor: pointer;
    }

    .hero {
      background:
        radial-gradient(circle at top left, rgba(91, 42, 134, 0.14), transparent 35%),
        linear-gradient(135deg, #ffffff 0%, #f7f7fb 52%, #f6efe0 100%);
      padding: 92px 22px 78px;
    }

    .hero-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 48px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--purple);
      background: rgba(91, 42, 134, 0.08);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 0.86rem;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
    }

    h1 {
      font-size: clamp(2.4rem, 6vw, 4.7rem);
      line-height: 0.98;
      color: var(--navy);
      letter-spacing: -0.05em;
      margin-bottom: 22px;
    }

    .hero h1 span {
      color: var(--purple);
    }

    .hero-lead {
      font-size: 1.2rem;
      max-width: 690px;
      color: #344054;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 8px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 20px;
      border-radius: 999px;
      font-weight: 800;
      transition: 0.2s ease;
      border: 2px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--deep-purple);
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--purple);
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--deep-purple);
      border-color: rgba(36, 17, 63, 0.18);
    }

    .btn-secondary:hover {
      border-color: var(--purple);
      transform: translateY(-1px);
    }

    .btn-gold {
      background: var(--gold);
      color: var(--navy);
    }

    .btn-gold:hover {
      filter: brightness(0.96);
      transform: translateY(-1px);
    }

    .hero-card {
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      border-radius: 28px;
      padding: 30px;
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 8px;
      background: linear-gradient(90deg, var(--deep-purple), var(--purple), var(--gold));
    }

    .hero-card h2 {
      color: var(--navy);
      font-size: 1.35rem;
      margin-bottom: 14px;
    }

    .hero-card p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    .principle {
      background: var(--soft-gold);
      border-left: 5px solid var(--gold);
      padding: 18px;
      border-radius: 14px;
      color: var(--navy);
      font-weight: 800;
      margin-top: 18px;
    }

    section {
      padding: 78px 22px;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .section-kicker {
      color: var(--purple);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.78rem;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.08;
      color: var(--navy);
      letter-spacing: -0.035em;
      margin-bottom: 22px;
    }

    .section-lead {
      font-size: 1.1rem;
      color: #344054;
      max-width: 820px;
      margin-bottom: 26px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 0.8fr;
      gap: 34px;
      align-items: start;
    }

    .content-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 12px 35px rgba(16, 31, 51, 0.05);
      padding: 30px;
    }

    .content-card h3 {
      color: var(--navy);
      font-size: 1.35rem;
      margin-bottom: 10px;
    }

    .content-card p + p {
      margin-top: 18px;
    }

    .side-card {
      background: var(--deep-purple);
      color: var(--white);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .side-card h3 {
      font-size: 1.5rem;
      margin-bottom: 14px;
    }

    .side-card p {
      color: rgba(255, 255, 255, 0.86);
    }

    .purple-road {
      margin-top: 22px;
      padding: 20px;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 16px;
    }

    .purple-road strong {
      display: block;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 8px;
    }

    .books-section,
    .get-involved-section {
      background: var(--light-bg);
    }

    .books-grid,
    .involved-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      margin-top: 28px;
    }

    .book-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 14px 35px rgba(16, 31, 51, 0.06);
    }

    .book-top {
      min-height: 180px;
      padding: 28px;
      background:
        linear-gradient(135deg, rgba(36,17,63,0.92), rgba(91,42,134,0.9)),
        radial-gradient(circle at top right, rgba(201,162,39,0.5), transparent 30%);
      color: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .book-label {
      font-size: 0.75rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.78);
    }

    .book-title {
      font-size: 1.7rem;
      line-height: 1.1;
      font-weight: 900;
      letter-spacing: -0.03em;
      margin-top: 28px;
    }

    .book-body {
      padding: 26px;
    }

    .book-body h3 {
      color: var(--navy);
      font-size: 1.35rem;
      margin-bottom: 10px;
    }

    .book-body p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .coming-soon {
      opacity: 0.72;
    }

    .involved-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 14px 35px rgba(16, 31, 51, 0.06);
    }

    .involved-card h3 {
      color: var(--navy);
      font-size: 1.4rem;
      margin-bottom: 12px;
    }

    .involved-card p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .donate-card {
      background:
        linear-gradient(135deg, rgba(36,17,63,0.96), rgba(91,42,134,0.92));
      color: var(--white);
      border: none;
    }

    .donate-card h3 {
      color: var(--white);
    }

    .donate-card p {
      color: rgba(255,255,255,0.86);
    }

    .contact {
      background: var(--navy);
      color: var(--white);
    }

    .contact .section-kicker {
      color: var(--gold);
    }

    .contact .section-title {
      color: var(--white);
    }

    .contact .section-lead {
      color: rgba(255,255,255,0.82);
    }

    .contact-card {
      margin-top: 28px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 22px;
      padding: 26px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .contact-card p {
      color: rgba(255,255,255,0.86);
    }

    .footer {
      padding: 28px 22px;
      border-top: 1px solid rgba(255,255,255,0.12);
      background: #0d1929;
      color: rgba(255,255,255,0.74);
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      font-size: 0.92rem;
    }

    @media (max-width: 900px) {
      .nav-links {
        gap: 14px;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 860px) {
      .mobile-toggle {
        display: block;
      }

      .logo-img {
        width: 135px;
        max-width: 55vw;
      }

      .nav-links {
        position: absolute;
        top: 77px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 22px 24px;
        gap: 10px;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-donate {
        width: 100%;
        text-align: center;
      }

      .hero {
        padding-top: 72px;
      }

      .hero-inner,
      .about-grid,
      .books-grid,
      .involved-grid {
        grid-template-columns: 1fr;
      }

      .hero-card {
        padding: 24px;
      }

      .brand-name {
        font-size: 0.92rem;
      }

      .brand-tagline {
        display: none;
      }

      section {
        padding: 58px 20px;
      }
    }

    @media (max-width: 520px) {
      .nav-wrap {
        padding: 8px 18px;
      }

      .logo-img {
        width: 118px;
        max-width: 58vw;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .content-card,
      .side-card,
      .book-body,
      .involved-card {
        padding: 22px;
      }

      .book-top {
        padding: 24px;
      }
    }
  /* FINAL LOGO HEADER FIX */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6px 22px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 0 0 auto;
}

.logo-img {
  width: 135px !important;
  max-width: 36vw !important;
  height: auto !important;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text.visually-hidden {
  position: absolute;
  left: -9999px;
}

@media (max-width: 860px) {
  .logo-img {
    width: 120px !important;
    max-width: 50vw !important;
  }

  .nav-wrap {
    padding: 6px 18px !important;
  }
}

@media (max-width: 520px) {
  .logo-img {
    width: 105px !important;
    max-width: 54vw !important;
  }

  .nav-wrap {
    padding: 6px 16px !important;
  }
}