/* ============================================================
   CDCC-USA shared.css
   Global styles used across all pages
   ============================================================ */


    :root {
      --green-dark:  #0D3B2E;
      --green-mid:   #1A5C42;
      --green-light: #2E7D5A;
      --gold:        #fdd217;
      --gold-light:  #ffe566;
      --red:         #ce1426;
      --white:       #FFFFFF;
      --off-white:   #F7F6F2;
      --gray-light:  #F0EFEB;
      --gray-text:   #6B6B6B;
      --text-dark:   #1A1A1A;
      --border:      #E2E0D8;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── TOP BAR ── */
    .top-bar {
      background: var(--green-dark);
      color: var(--white);
      font-size: 12.5px;
      padding: 7px 0;
      border-bottom: 2px solid var(--gold);
    }
    .top-bar .inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .lang-toggle { display: flex; align-items: center; gap: 14px; }
    .lang-toggle a {
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 5px;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: .04em;
      opacity: .85;
      transition: opacity .2s;
    }
    .lang-toggle a:hover { opacity: 1; }
    .lang-toggle .sep { color: rgba(255,255,255,.3); }
    .lang-toggle a.active { opacity: 1; border-bottom: 1.5px solid var(--gold); }
    .lang-toggle img { width: 18px; height: 13px; border-radius: 2px; object-fit: cover; }

    .tagline {
      font-style: italic;
      color: var(--gold-light);
      font-size: 12.5px;
      letter-spacing: .03em;
      font-weight: 300;
    }

    .social-bar { display: flex; align-items: center; gap: 6px; }
    .social-bar span { font-size: 11.5px; color: rgba(255,255,255,.6); margin-right: 6px; letter-spacing: .05em; }
    .social-bar a {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-size: 12px;
      text-decoration: none;
      transition: background .2s, transform .2s;
    }
    .social-bar a:hover { background: var(--gold); transform: translateY(-2px); }

    /* ── NAVBAR ── */
    .navbar {
      background: var(--white);
      box-shadow: 0 2px 20px rgba(0,0,0,.08);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar .inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }
    .brand-logo-img {
      height: 70px;
      width: auto;
      max-width: 320px;
      object-fit: contain;
      transition: opacity .3s;
    }
    @media (max-width: 768px) {
      .brand-logo-img { height: 52px; max-width: 220px; }
    }
    .brand-logo {
      width: 58px; height: 58px;
      border-radius: 50%;
      border: 2.5px solid var(--gold);
      background: var(--green-dark);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 10px;
      font-weight: 700;
      text-align: center;
      line-height: 1.3;
      padding: 6px;
    }
    .brand-text { display: flex; flex-direction: column; }
    .brand-text .name {
      font-family: 'EB Garamond', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1;
      letter-spacing: -.5px;
    }
    .brand-text .name span { color: var(--red); }
    .brand-text .sub {
      font-size: 9px;
      color: var(--gray-text);
      font-weight: 600;
      letter-spacing: .04em;
      text-transform: uppercase;
      line-height: 1.4;
      max-width: 220px;
    }
    .brand-text .friends {
      font-size: 8.5px;
      color: var(--red);
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    nav { display: flex; align-items: center; gap: 2px; }
    nav a, nav .has-drop > span {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      text-decoration: none;
      padding: 8px 13px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      transition: color .2s, background .2s;
      letter-spacing: .02em;
      white-space: nowrap;
    }
    nav a:hover, nav .has-drop:hover > span { color: var(--green-dark); background: var(--gray-light); }
    nav a.active { color: var(--green-dark); border-bottom: 2.5px solid var(--gold); border-radius: 0; }
    nav .has-drop { position: relative; }
    nav .has-drop .drop {
      display: none;
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      box-shadow: 0 8px 32px rgba(0,0,0,.12);
      min-width: 180px;
      padding: 8px 0;
      z-index: 200;
    }
    nav .has-drop:hover .drop { display: block; }
    nav .has-drop .drop a {
      display: block;
      padding: 9px 18px;
      border-radius: 0;
      font-size: 13px;
    }
    nav .has-drop .drop a:hover { background: var(--gray-light); color: var(--green-dark); }

    .nav-ctas { display: flex; gap: 10px; align-items: center; }
    .btn-outline {
      padding: 9px 18px;
      border: 1.5px solid var(--green-dark);
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--green-dark);
      text-decoration: none;
      display: flex; align-items: center; gap: 7px;
      transition: all .2s;
      white-space: nowrap;
    }
    .btn-outline:hover { background: var(--green-dark); color: var(--white); }
    .btn-donate {
      padding: 9px 20px;
      background: var(--red);
      border: none;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      display: flex; align-items: center; gap: 7px;
      transition: all .2s;
      white-space: nowrap;
      cursor: pointer;
    }
    .btn-donate:hover { background: #a8101f; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(192,57,43,.3); }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 540px;
      background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
      overflow: hidden;
      display: flex;
      align-items: stretch;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1400&q=80');
      background-size: cover;
      background-position: center top;
      opacity: 1;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(90deg,
        rgba(13,59,46,.96) 0%,
        rgba(13,59,46,.85) 30%,
        rgba(13,59,46,.45) 55%,
        rgba(13,59,46,.30) 75%,
        rgba(13,59,46,.55) 100%
      );
    }
    .hero .inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 60px 24px;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 2;
      width: 100%;
    }
    .hero-left { color: var(--white); }
    .hero-eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
    }

    .hero h1 {
      font-family: 'EB Garamond', serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 20px;
      color: var(--white);
    }
    .hero h1 .h1-text { display: block; }
    .hero h1 em { color: var(--gold-light); font-style: normal; }
    .hero h1 span { color: var(--gold-light); }
    .hero-desc {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(255,255,255,.82);
      max-width: 500px;
      margin-bottom: 36px;
      font-weight: 300;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-hero-primary {
      padding: 13px 26px;
      background: var(--green-light);
      border: 2px solid var(--green-light);
      border-radius: 6px;
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      display: flex; align-items: center; gap: 8px;
      transition: all .2s;
      letter-spacing: .03em;
    }
    .btn-hero-primary:hover { background: transparent; border-color: var(--white); }
    .btn-hero-gold {
      padding: 13px 26px;
      background: var(--gold);
      border: 2px solid var(--gold);
      border-radius: 6px;
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      display: flex; align-items: center; gap: 8px;
      transition: all .2s;
      letter-spacing: .03em;
    }
    .btn-hero-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

    /* Hero right — Mission panel */
    .hero-right {
      background: rgba(255,255,255,.97);
      border-radius: 12px;
      padding: 28px 26px;
      box-shadow: 0 16px 48px rgba(0,0,0,.25);
    }
    .mission-label {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
      display: flex; align-items: center; gap: 8px;
    }

    .hero-right h3 {
      font-family: 'EB Garamond', serif;
      font-size: 15px;
      color: var(--green-dark);
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .hero-right p {
      font-size: 13px;
      color: var(--gray-text);
      line-height: 1.7;
      margin-bottom: 22px;
    }
    .mission-items { display: flex; flex-direction: column; gap: 14px; }
    .mission-item {
      display: flex; align-items: flex-start; gap: 12px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }
    .mission-item:last-child { border-bottom: none; padding-bottom: 0; }
    .mission-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      border-radius: 8px;
      background: var(--green-dark);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 14px;
    }
    .mission-item-text strong {
      display: block;
      font-size: 12.5px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    .mission-item-text span {
      font-size: 12px;
      color: var(--gray-text);
      line-height: 1.5;
    }

    /* AI widget floating — fixed bottom right like mockup */
    .ai-launcher {
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 900;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }
    .ai-chat-box {
      background: var(--white);
      border-radius: 14px 14px 4px 14px;
      padding: 14px 16px;
      box-shadow: 0 8px 32px rgba(0,0,0,.18);
      width: 230px;
      display: none;
    }
    .ai-chat-header {
      display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
    }
    .ai-chat-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--green-dark);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 16px; flex-shrink: 0;
    }
    .ai-chat-name { font-size: 11.5px; font-weight: 700; color: var(--green-dark); line-height: 1.3; }
    .ai-chat-sub  { font-size: 10.5px; color: var(--gray-text); }
    .ai-chat-bubble {
      background: var(--gray-light);
      border-radius: 8px;
      padding: 9px 12px;
      font-size: 12px;
      color: var(--text-dark);
      margin-bottom: 10px;
      line-height: 1.5;
    }
    .btn-ai {
      display: flex; align-items: center; justify-content: center; gap: 7px;
      background: var(--green-dark);
      color: var(--white);
      border-radius: 8px;
      padding: 9px 14px;
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      transition: background .2s;
      width: 100%;
    }
    .btn-ai:hover { background: var(--green-light); }
    .ai-fab {
      width: 54px; height: 54px;
      border-radius: 50%;
      background: var(--green-dark);
      border: 3px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 22px;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(0,0,0,.25);
      transition: transform .2s, box-shadow .2s;
      position: relative;
    }
    .ai-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
    .ai-fab .notif {
      position: absolute; top: -2px; right: -2px;
      width: 14px; height: 14px;
      background: var(--red);
      border-radius: 50%;
      border: 2px solid var(--white);
    }

    /* ── FEATURE STRIP ── */
    .feature-strip {
      background: var(--off-white);
      position: relative;
      z-index: 3;
      padding: 0 0 32px;
    }
    .feature-strip .inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .feature-card-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--white);
      border-radius: 14px;
      box-shadow: 0 6px 32px rgba(0,0,0,.10);
      overflow: hidden;
      transform: translateY(-36px);
      border: 1px solid var(--border);
    }
    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 28px 22px;
      border-right: 1px solid var(--border);
      transition: background .2s;
    }
    .feature-item:last-child { border-right: none; }
    .feature-item:hover { background: var(--gray-light); }
    .feature-icon {
      width: 52px; height: 52px; flex-shrink: 0;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
    }
    .fi-green { background: var(--green-dark); color: var(--gold); }
    .fi-red   { background: var(--red);        color: var(--white); }
    .fi-gold  { background: var(--gold);        color: var(--green-dark); }
    .fi-teal  { background: var(--green-mid);   color: var(--white); }
    .feature-text h4 {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 5px;
      letter-spacing: .01em;
    }
    .feature-text p { font-size: 12.5px; color: var(--gray-text); line-height: 1.6; margin-bottom: 8px; }
    .feature-link {
      font-size: 12px;
      font-weight: 700;
      color: var(--green-dark);
      text-decoration: none;
      display: flex; align-items: center; gap: 5px;
      transition: gap .2s, color .2s;
    }
    .feature-link:hover { color: var(--gold); gap: 8px; }

    /* ── MOBILE MENU ── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px; height: 40px;
      background: none;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      cursor: pointer;
      padding: 8px;
      margin-right: 8px;
    }
    .hamburger span {
      display: block;
      width: 100%; height: 2px;
      background: var(--green-dark);
      border-radius: 2px;
      transition: all .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: var(--white);
      border-top: 2px solid var(--gold);
      box-shadow: 0 8px 32px rgba(0,0,0,.15);
      z-index: 999;
      max-height: calc(100vh - 64px);
      overflow-y: auto;
    }
    .mobile-menu.open { display: block; }

    /* Simple link rows */
    .mob-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 15px 24px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      transition: background .2s, color .2s;
    }
    .mob-link i { color: var(--green-dark); font-size: 14px; width: 18px; text-align: center; }
    .mob-link:hover { background: var(--gray-light); color: var(--green-dark); }

    /* Accordion */
    .mob-accordion { border-bottom: 1px solid var(--border); }
    .mob-acc-header {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 24px;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
      text-align: left;
      transition: background .2s;
    }
    .mob-acc-header span { display: flex; align-items: center; gap: 12px; }
    .mob-acc-header span i { color: var(--green-dark); font-size: 14px; width: 18px; text-align: center; }
    .mob-acc-header:hover { background: var(--gray-light); }
    .mob-chevron { font-size: 11px; color: var(--gray-text); transition: transform .3s; }
    .mob-acc-header.open .mob-chevron { transform: rotate(180deg); }

    .mob-acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
      background: var(--off-white);
    }
    .mob-acc-body.open { max-height: 300px; }
    .mob-acc-body a {
      display: block;
      padding: 11px 24px 11px 54px;
      font-size: 13px;
      font-weight: 500;
      color: var(--gray-text);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      transition: background .2s, color .2s;
    }
    .mob-acc-body a:last-child { border-bottom: none; }
    .mob-acc-body a:hover { background: var(--gray-light); color: var(--green-dark); }

    /* CTA row */
    .mob-ctas {
      display: flex;
      gap: 10px;
      padding: 16px 24px;
      background: var(--gray-light);
      border-top: 1px solid var(--border);
    }
    .mob-ctas a { flex: 1; justify-content: center; font-size: 12px; }

    /* Mobile follow us */
    .mob-follow {
      padding: 16px 24px;
      background: var(--green-dark);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .mob-follow span {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .mob-social-icons { display: flex; gap: 10px; }
    .mob-social-icons a {
      width: 34px; height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-size: 13px;
      text-decoration: none;
      transition: background .2s;
    }
    .mob-social-icons a:hover { background: var(--gold); color: var(--green-dark); }

    /* ── MAIN CONTENT ── */
    .main-section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 32px 24px 60px;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 48px;
    }

    /* News */
    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }
    .section-title {
      font-family: 'EB Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--green-dark);
      display: flex; align-items: center; gap: 10px;
    }

    .view-all {
      font-size: 13px;
      font-weight: 700;
      color: var(--green-dark);
      text-decoration: none;
      display: flex; align-items: center; gap: 5px;
      transition: gap .2s, color .2s;
    }
    .view-all:hover { color: var(--gold); gap: 8px; }

    .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .news-card {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--white);
      transition: transform .25s, box-shadow .25s;
    }
    .news-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
    .news-img {
      width: 100%; height: 160px;
      object-fit: cover;
      display: block;
      background: var(--green-dark);
      position: relative;
    }
    .news-img-placeholder {
      width: 100%; height: 160px;
      background: linear-gradient(135deg, var(--green-dark), var(--green-light));
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.3);
      font-size: 32px;
      position: relative;
    }
    .news-badge {
      position: absolute;
      top: 10px; left: 10px;
      padding: 3px 10px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .badge-policy { background: var(--green-dark); color: var(--gold); }
    .badge-report  { background: var(--red);        color: var(--white); }
    .badge-news    { background: var(--gold);        color: var(--green-dark); }
    .news-body { padding: 16px; }
    .news-body h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.45;
      margin-bottom: 10px;
    }
    .news-meta {
      display: flex; align-items: center; gap: 6px;
      font-size: 11.5px;
      color: var(--gray-text);
    }
    .news-meta i { font-size: 11px; }

    /* Events sidebar */
    .events-sidebar {}
    .event-item {
      display: flex;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      align-items: flex-start;
    }
    .event-item:last-child { border-bottom: none; }
    .event-date-box {
      flex-shrink: 0;
      width: 52px;
      text-align: center;
      background: var(--green-dark);
      border-radius: 8px;
      padding: 8px 4px;
      color: var(--white);
    }
    .event-date-box .month {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .event-date-box .day { font-size: 22px; font-weight: 700; line-height: 1; }
    .event-date-box .year { font-size: 10px; color: rgba(255,255,255,.6); }
    .event-info h4 {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
      line-height: 1.4;
    }
    .event-meta { display: flex; flex-direction: column; gap: 3px; }
    .event-meta span {
      font-size: 11.5px;
      color: var(--gray-text);
      display: flex; align-items: center; gap: 5px;
    }
    .event-meta i { font-size: 11px; color: var(--green-mid); }
    .event-tag {
      display: inline-block;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      margin-top: 5px;
    }
    .tag-webinar { background: #E8F4EE; color: var(--green-dark); }
    .tag-hybrid  { background: #FEF3E2; color: #8B5E00; }
    .tag-inperson{ background: #FDECEA; color: var(--red); }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--green-dark);
      padding: 40px 0;
      border-top: 3px solid var(--gold);
    }
    .stats-bar .inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
    }
    .stat-item {
      text-align: center;
      padding: 0 20px;
      border-right: 1px solid rgba(255,255,255,.1);
    }
    .stat-item:last-child { border-right: none; }
    .stat-icon { color: var(--gold); font-size: 26px; margin-bottom: 10px; }
    .stat-num {
      font-family: 'EB Garamond', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: .04em; }

    /* ── FOOTER ── */
    footer {
      background: #0A2E22;
      color: rgba(255,255,255,.7);
      padding: 56px 0 24px;
    }
    .footer-grid {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand .name {
      font-family: 'EB Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }
    .footer-brand .name span { color: var(--red); }
    .footer-brand p { font-size: 13px; line-height: 1.7; margin: 12px 0 20px; }
    .footer-social { display: flex; gap: 8px; }
    .footer-social a {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.2);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.7);
      text-decoration: none;
      font-size: 13px;
      transition: all .2s;
    }
    .footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
    .footer-col h5 {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-col a {
      display: block;
      font-size: 13px;
      color: rgba(255,255,255,.65);
      text-decoration: none;
      padding: 4px 0;
      transition: color .2s;
    }
    .footer-col a:hover { color: var(--gold); }
    .footer-col .contact-line {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13px; color: rgba(255,255,255,.65);
      margin-bottom: 10px; line-height: 1.5;
    }
    .footer-col .contact-line i { color: var(--gold); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
    .footer-bottom {
      max-width: 1280px;
      margin: 0 auto;
      padding: 20px 24px 0;
      border-top: 1px solid rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: rgba(255,255,255,.4);
    }
    .footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
    .footer-bottom a:hover { color: var(--gold); }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero .inner { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .main-section { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr 1fr; }
      .stats-bar .inner { grid-template-columns: repeat(3, 1fr); gap: 20px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .feature-card-row { grid-template-columns: 1fr 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .stats-bar .inner { grid-template-columns: repeat(2, 1fr); }
      .tagline { display: none; }
      .social-bar { display: none; }
      nav { display: none; }
      .nav-ctas { display: none; }
      .hamburger { display: flex; }
      .navbar .inner { height: 64px; }
      .navbar .inner { justify-content: space-between; }
      .mobile-nav-right { display: flex; align-items: center; gap: 4px; }
    }
    @media (max-width: 480px) {
      .feature-card-row { grid-template-columns: 1fr; }
      .stats-bar .inner { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }

    /* Scroll to top */
    .scroll-top {
      position: fixed;
      bottom: 96px; right: 28px;
      width: 42px; height: 42px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--green-dark);
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(0,0,0,.2);
      z-index: 499;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .3s, transform .3s;
      border: none;
    }
    .scroll-top.visible { opacity: 1; transform: translateY(0); }
    .scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

    /* Counter animation */
    .stat-num { transition: all .3s; }

    /* Smooth scroll */
    html { scroll-behavior: smooth; }
  

/* ── ABOUT / INNER PAGE STYLES ── */

    :root {
      --green-dark:  #0D3B2E;
      --green-mid:   #1A5C42;
      --green-light: #2E7D5A;
      --gold:        #fdd217;
      --gold-light:  #ffe566;
      --red:         #ce1426;
      --white:       #FFFFFF;
      --off-white:   #F7F6F2;
      --gray-light:  #F0EFEB;
      --gray-text:   #6B6B6B;
      --text-dark:   #1A1A1A;
      --border:      #E2E0D8;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

    /* ── TOP BAR ── */
    .top-bar { background: var(--green-dark); color: var(--white); font-size: 12.5px; padding: 7px 0; border-bottom: 2px solid var(--gold); }
    .top-bar .inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
    .lang-toggle { display: flex; align-items: center; gap: 14px; }
    .lang-toggle a { color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 5px; font-weight: 600; font-size: 12px; letter-spacing: .04em; opacity: .85; transition: opacity .2s; }
    .lang-toggle a:hover { opacity: 1; }
    .lang-toggle .sep { color: rgba(255,255,255,.3); }
    .lang-toggle a.active { opacity: 1; border-bottom: 1.5px solid var(--gold); }
    .lang-toggle img { width: 18px; height: 13px; border-radius: 2px; object-fit: cover; }
    .tagline { font-style: italic; color: var(--gold-light); font-size: 12.5px; letter-spacing: .03em; font-weight: 300; }
    .social-bar { display: flex; align-items: center; gap: 6px; }
    .social-bar span { font-size: 11.5px; color: rgba(255,255,255,.6); margin-right: 6px; letter-spacing: .05em; }
    .social-bar a { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 12px; text-decoration: none; transition: background .2s, transform .2s; }
    .social-bar a:hover { background: var(--gold); transform: translateY(-2px); }

    /* ── NAVBAR ── */
    .navbar { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 1000; }
    .navbar .inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 76px; }
    .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .brand-logo-img { height: 70px; width: auto; max-width: 320px; object-fit: contain; transition: opacity .3s; }
    nav { display: flex; align-items: center; gap: 2px; }
    nav a, nav .has-drop > span { font-size: 13px; font-weight: 600; color: var(--text-dark); text-decoration: none; padding: 8px 13px; border-radius: 4px; display: flex; align-items: center; gap: 5px; cursor: pointer; transition: color .2s, background .2s; letter-spacing: .02em; white-space: nowrap; }
    nav a:hover, nav .has-drop:hover > span { color: var(--green-dark); background: var(--gray-light); }
    nav a.active { color: var(--green-dark); border-bottom: 2.5px solid var(--gold); border-radius: 0; }
    nav .has-drop { position: relative; }
    nav .has-drop .drop { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,.12); min-width: 180px; padding: 8px 0; z-index: 200; }
    nav .has-drop:hover .drop { display: block; }
    nav .has-drop .drop a { display: block; padding: 9px 18px; border-radius: 0; font-size: 13px; }
    nav .has-drop .drop a:hover { background: var(--gray-light); color: var(--green-dark); }
    .nav-ctas { display: flex; gap: 10px; align-items: center; }
    .btn-outline { padding: 9px 18px; border: 1.5px solid var(--green-dark); border-radius: 6px; font-size: 13px; font-weight: 600; color: var(--green-dark); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: all .2s; white-space: nowrap; }
    .btn-outline:hover { background: var(--green-dark); color: var(--white); }
    .btn-donate { padding: 9px 20px; background: var(--red); border: none; border-radius: 6px; font-size: 13px; font-weight: 700; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: all .2s; white-space: nowrap; cursor: pointer; }
    .btn-donate:hover { background: #a8101f; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(192,57,43,.3); }

    /* ── MOBILE MENU ── */
    .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: 1.5px solid var(--border); border-radius: 6px; cursor: pointer; padding: 8px; }
    .hamburger span { display: block; width: 100%; height: 2px; background: var(--green-dark); border-radius: 2px; transition: all .3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--white); border-top: 2px solid var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,.15); z-index: 999; max-height: calc(100vh - 64px); overflow-y: auto; }
    .mobile-menu.open { display: block; }
    .mob-link { display: flex; align-items: center; gap: 12px; padding: 15px 24px; font-size: 14px; font-weight: 600; color: var(--text-dark); text-decoration: none; border-bottom: 1px solid var(--border); transition: background .2s, color .2s; }
    .mob-link i { color: var(--green-dark); font-size: 14px; width: 18px; text-align: center; }
    .mob-link:hover { background: var(--gray-light); color: var(--green-dark); }
    .mob-accordion { border-bottom: 1px solid var(--border); }
    .mob-acc-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 15px 24px; background: none; border: none; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text-dark); text-align: left; transition: background .2s; }
    .mob-acc-header span { display: flex; align-items: center; gap: 12px; }
    .mob-acc-header span i { color: var(--green-dark); font-size: 14px; width: 18px; text-align: center; }
    .mob-acc-header:hover { background: var(--gray-light); }
    .mob-chevron { font-size: 11px; color: var(--gray-text); transition: transform .3s; }
    .mob-acc-header.open .mob-chevron { transform: rotate(180deg); }
    .mob-acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; background: var(--off-white); }
    .mob-acc-body.open { max-height: 300px; }
    .mob-acc-body a { display: block; padding: 11px 24px 11px 54px; font-size: 13px; font-weight: 500; color: var(--gray-text); text-decoration: none; border-bottom: 1px solid var(--border); transition: background .2s, color .2s; }
    .mob-acc-body a:last-child { border-bottom: none; }
    .mob-acc-body a:hover { background: var(--gray-light); color: var(--green-dark); }
    .mob-ctas { display: flex; gap: 10px; padding: 16px 24px; background: var(--gray-light); border-top: 1px solid var(--border); }
    .mob-ctas a { flex: 1; justify-content: center; font-size: 12px; }
    .mob-follow { padding: 16px 24px; background: var(--green-dark); display: flex; flex-direction: column; gap: 12px; }
    .mob-follow span { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
    .mob-social-icons { display: flex; gap: 10px; }
    .mob-social-icons a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 13px; text-decoration: none; transition: background .2s; }
    .mob-social-icons a:hover { background: var(--gold); color: var(--green-dark); }

    /* ── PAGE HERO / BANNER ── */
    .page-hero {
      background: var(--green-dark);
      position: relative;
      overflow: hidden;
      padding: 72px 0 60px;
    }
    .page-hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1400&q=80');
      background-size: cover;
      background-position: center;
      opacity: .12;
    }
    .page-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(13,59,46,.97) 0%, rgba(13,59,46,.80) 100%);
    }
    .page-hero .inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; color: rgba(255,255,255,.6);
      margin-bottom: 20px;
      letter-spacing: .04em;
    }
    .breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
    .breadcrumb a:hover { color: var(--gold); }
    .breadcrumb i { font-size: 10px; }
    .breadcrumb span { color: var(--gold); }
    .page-hero h1 {
      font-family: 'EB Garamond', serif;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 18px;
      max-width: 720px;
    }
    .page-hero h1 em { color: var(--gold-light); font-style: normal; }
    .page-hero p {
      font-size: 16px;
      color: rgba(255,255,255,.8);
      line-height: 1.8;
      max-width: 680px;
      font-weight: 300;
    }
    .page-hero-quote {
      margin-top: 32px;
      padding: 20px 24px;
      border-left: 3px solid var(--gold);
      background: rgba(255,255,255,.05);
      border-radius: 0 8px 8px 0;
      max-width: 680px;
    }
    .page-hero-quote p {
      font-size: 14px;
      font-style: italic;
      color: rgba(255,255,255,.75);
      line-height: 1.7;
      margin: 0;
    }

    /* ── SHARED SECTION STYLES ── */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 72px 0; }
    .section-alt { background: var(--off-white); }
    .section-dark { background: var(--green-dark); }

    .section-label {
      font-size: 11px; font-weight: 800; letter-spacing: .14em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 12px;
    }
    
    .section-heading {
      font-family: 'EB Garamond', serif;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .section-heading.white { color: var(--white); }
    .section-sub {
      font-size: 15px;
      color: var(--gray-text);
      line-height: 1.8;
      max-width: 640px;
      margin-bottom: 40px;
    }
    .section-sub.white { color: rgba(255,255,255,.75); }
    .divider { margin-bottom: 40px; }

    /* ── WHO WE ARE ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
    }
    .about-img-wrap img {
      width: 100%;
      height: 440px;
      object-fit: cover;
      border-radius: 12px;
      display: block;
    }
    .about-img-badge {
      position: absolute;
      bottom: 24px; left: 24px;
      background: var(--green-dark);
      border: 2px solid var(--gold);
      border-radius: 10px;
      padding: 14px 18px;
      color: var(--white);
    }
    .about-img-badge .num {
      font-family: 'EB Garamond', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }
    .about-img-badge .lbl { font-size: 11px; color: rgba(255,255,255,.7); letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }
    .about-text p { font-size: 15px; color: var(--gray-text); line-height: 1.85; margin-bottom: 18px; }
    .about-text p:last-of-type { margin-bottom: 0; }
    .about-roles { list-style: none; margin: 28px 0 0; display: flex; flex-direction: column; gap: 10px; }
    .about-roles li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 14px; color: var(--text-dark); line-height: 1.5;
    }
    .about-roles li i { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

    /* ── HISTORY ── */
    .history-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .history-text p { font-size: 15px; color: var(--gray-text); line-height: 1.85; margin-bottom: 18px; }
    .history-pillars {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .history-pillar {
      display: flex;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
    }
    .history-pillar:first-child { padding-top: 0; }
    .history-pillar:last-child { border-bottom: none; }
    .pillar-num {
      font-family: 'EB Garamond', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--gold);
      opacity: .35;
      line-height: 1;
      flex-shrink: 0;
      width: 44px;
    }
    .pillar-content h4 { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
    .pillar-content p { font-size: 13.5px; color: var(--gray-text); line-height: 1.7; }

    /* ── VALUES SECTION ── */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .value-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 24px;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .value-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.08); border-color: var(--gold); }
    .value-icon {
      width: 48px; height: 48px;
      border-radius: 10px;
      background: var(--green-dark);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 18px;
      margin-bottom: 16px;
    }
    .value-card h4 { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
    .value-card p { font-size: 13.5px; color: var(--gray-text); line-height: 1.7; }

    /* ── INSTITUTIONAL STATEMENT ── */
    .statement-box {
      background: var(--white);
      border-radius: 16px;
      padding: 48px;
      text-align: center;
      border: 1px solid rgba(200,150,12,.2);
      box-shadow: 0 8px 40px rgba(0,0,0,.06);
    }
    .statement-box .quote-icon { font-size: 48px; color: var(--gold); opacity: .25; line-height: 1; margin-bottom: 16px; }
    .statement-box blockquote {
      font-family: 'EB Garamond', serif;
      font-size: clamp(16px, 2vw, 22px);
      font-weight: 600;
      color: var(--green-dark);
      line-height: 1.6;
      max-width: 760px;
      margin: 0 auto 24px;
    }
    .statement-box cite {
      font-size: 13px;
      color: var(--gray-text);
      font-style: normal;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    /* ── CTA STRIP ── */
    .cta-strip {
      background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
      padding: 56px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-strip::before {
      content: '';
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=800&q=60');
      background-size: cover;
      opacity: .05;
      pointer-events: none;
      z-index: 0;
    }
    .cta-strip .inner { position: relative; z-index: 1; text-align: center; }
    .cta-strip .container { position: relative; z-index: 1; text-align: center; }
    .cta-strip h2 { font-family: 'EB Garamond', serif; font-size: clamp(22px, 3vw, 32px); color: var(--white); margin-bottom: 12px; }
    .cta-strip p { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-cta-primary { padding: 13px 28px; background: var(--gold); border: 2px solid var(--gold); border-radius: 6px; color: var(--green-dark); font-size: 14px; font-weight: 700; text-decoration: none; transition: all .2s; }
    .btn-cta-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
    .btn-cta-outline { padding: 13px 28px; background: transparent; border: 2px solid rgba(255,255,255,.5); border-radius: 6px; color: var(--white); font-size: 14px; font-weight: 700; text-decoration: none; transition: all .2s; }
    .btn-cta-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

    /* ── FOOTER ── */
    footer { background: #0A2E22; color: rgba(255,255,255,.7); padding: 56px 0 24px; }
    .footer-grid { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand .name { font-family: 'EB Garamond', serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .footer-brand .name span { color: var(--red); }
    .footer-brand p { font-size: 13px; line-height: 1.7; margin: 12px 0 20px; }
    .footer-social { display: flex; gap: 8px; }
    .footer-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); text-decoration: none; font-size: 13px; transition: all .2s; }
    .footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
    .footer-col h5 { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.65); text-decoration: none; padding: 4px 0; transition: color .2s; }
    .footer-col a:hover { color: var(--gold); }
    .footer-col .contact-line { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 10px; line-height: 1.5; }
    .footer-col .contact-line i { color: var(--gold); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
    .footer-bottom { max-width: 1280px; margin: 0 auto; padding: 20px 24px 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.4); }
    .footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
    .footer-bottom a:hover { color: var(--gold); }

    /* ── AI LAUNCHER ── */
    .ai-launcher { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
    .ai-chat-box { background: var(--white); border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.18); width: 320px; display: none; overflow: hidden; }
    .ai-chat-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
    .ai-chat-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green-dark); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; flex-shrink: 0; }
    .ai-chat-name { font-size: 11.5px; font-weight: 700; color: var(--green-dark); line-height: 1.3; }
    .ai-chat-sub { font-size: 10.5px; color: var(--gray-text); }
    .ai-chat-bubble { background: var(--gray-light); border-radius: 8px; padding: 9px 12px; font-size: 12px; color: var(--text-dark); margin-bottom: 10px; line-height: 1.5; }
    .btn-ai { display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--green-dark); color: var(--white); border-radius: 8px; padding: 9px 14px; font-size: 12px; font-weight: 700; text-decoration: none; transition: background .2s; width: 100%; }
    .btn-ai:hover { background: var(--green-light); }
    .ai-fab { width: 54px; height: 54px; border-radius: 50%; background: var(--green-dark); border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 22px; cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,.25); transition: transform .2s, box-shadow .2s; position: relative; }
    .ai-fab:hover { transform: scale(1.1); }
    .ai-fab .notif { position: absolute; top: -2px; right: -2px; width: 14px; height: 14px; background: var(--red); border-radius: 50%; border: 2px solid var(--white); }

    /* ── SCROLL TOP ── */
    .scroll-top { position: fixed; bottom: 96px; right: 28px; width: 42px; height: 42px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green-dark); font-size: 16px; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.2); z-index: 499; opacity: 0; transform: translateY(20px); transition: opacity .3s, transform .3s; border: none; }
    .scroll-top.visible { opacity: 1; transform: translateY(0); }
    .scroll-top:hover { background: var(--gold-light); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .about-grid, .history-grid { grid-template-columns: 1fr; gap: 40px; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .tagline, .social-bar { display: none; }
      nav, .nav-ctas { display: none; }
      .hamburger { display: flex; }
      .navbar .inner { height: 64px; }
      .brand-logo-img { height: 52px; max-width: 220px; }
      .values-grid { grid-template-columns: 1fr; }
      .statement-box { padding: 28px 20px; }
      .footer-grid { grid-template-columns: 1fr; }
    }
  

/* ── GOOGLE TRANSLATE ── */

/* Hide the top banner Google injects after translation */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.skiptranslate iframe { display: none !important; }
body { top: 0 !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
.goog-tooltip, #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf, .VIpgJd-ZVi9od-aZ2wEe { display: none !important; }

/* Lang toggle layout */
.lang-toggle { display: flex; align-items: center; gap: 8px; }
.lang-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8); letter-spacing: .06em; text-transform: uppercase; }
.lang-divider { width: 1px; height: 14px; background: rgba(255,255,255,.25); display: block; }

/* Google widget — make it clearly visible */
#google_translate_element { display: flex; align-items: center; }
#google_translate_element .goog-te-gadget { font-size: 0 !important; }
#google_translate_element .goog-te-gadget a { display: none !important; }

/* Style the select dropdown to be visible and match the top bar */
#google_translate_element select.goog-te-combo {
  background: rgba(255,255,255,.12) !important;
  color: var(--white) !important;
  border: 1.5px solid rgba(200,150,12,.6) !important;
  border-radius: 5px !important;
  padding: 4px 10px !important;
  font-size: 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  cursor: pointer !important;
  outline: none !important;
  min-width: 130px !important;
  transition: border-color .2s, background .2s !important;
}
#google_translate_element select.goog-te-combo:hover {
  background: rgba(200,150,12,.2) !important;
  border-color: var(--gold) !important;
}
#google_translate_element select.goog-te-combo option {
  background: #0D3B2E !important;
  color: var(--white) !important;
  font-size: 13px !important;
}

/* ══════════════════════════════════════════
   MEGA MENU
   ══════════════════════════════════════════ */

/* Remove old dropdown styles */
.has-drop .drop { display: none !important; }

/* Navbar mega triggers */
nav a.mega-trigger {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600;
  color: var(--text-dark); text-decoration: none;
  padding: 8px 10px; border-radius: 4px;
  cursor: pointer; letter-spacing: .01em;
  white-space: nowrap; transition: color .2s, background .2s;
  border-bottom: 2.5px solid transparent;
}
/* Shrink nav text when translated to French */
@media (max-width: 1200px) {
  nav a.mega-trigger { font-size: 12px; padding: 8px 8px; }
  .btn-outline { padding: 8px 12px; font-size: 12px; }
  .btn-donate  { padding: 8px 12px; font-size: 12px; }
  .nav-ctas { gap: 6px; }
}
nav a.mega-trigger:hover { color: var(--green-dark); background: var(--gray-light); }
nav a.mega-trigger.mega-open,
nav a.mega-trigger.active {
  color: var(--green-dark);
  border-bottom-color: var(--gold);
  border-radius: 0;
  background: var(--gray-light);
}

/* Overlay */
.mega-overlay {
  display: block;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 998;
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.mega-overlay.open { opacity: 1; pointer-events: all; }

/* Mega menu container */
.mega-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--white);
  z-index: 999;
  box-shadow: 0 16px 56px rgba(0,0,0,.15);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--border);
}
.mega-menu.open { display: block; }

/* Panel */
.mega-panel { display: none; }
.mega-panel.active { display: block; }

.mega-panel-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  gap: 40px;
}

/* Featured column */
.mega-featured {
  background: var(--green-dark);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mega-featured-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.mega-featured-title {
  font-family: 'EB Garamond', serif;
  font-size: 17px; font-weight: 700;
  color: var(--white); line-height: 1.35;
}
.mega-featured-desc {
  font-size: 13px; color: rgba(255,255,255,.7);
  line-height: 1.65; flex: 1;
}
.mega-featured-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--gold); text-decoration: none;
  margin-top: 8px; transition: gap .2s;
}
.mega-featured-link:hover { gap: 10px; color: var(--gold-light); }

/* Links columns */
.mega-links-col { display: flex; flex-direction: column; gap: 4px; }
.mega-col-title {
  font-size: 10px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--border);
}
.mega-link {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px; border-radius: 8px;
  text-decoration: none; transition: background .2s;
  color: var(--text-dark);
}
.mega-link:hover { background: var(--off-white); }
.mega-link.active { background: rgba(13,59,46,.06); }
.mega-link i {
  color: var(--green-mid); font-size: 15px;
  margin-top: 2px; flex-shrink: 0; width: 18px;
}
.mega-link span { display: flex; flex-direction: column; gap: 1px; }
.mega-link strong { font-size: 13.5px; font-weight: 700; color: var(--text-dark); }
.mega-link small { font-size: 12px; color: var(--gray-text); }
.mega-link:hover strong { color: var(--green-dark); }
.mega-link:hover i { color: var(--gold); }

/* Responsive */
@media (max-width: 1024px) {
  .mega-panel-inner { grid-template-columns: 1fr 1fr; }
  .mega-featured { display: none; }
}
@media (max-width: 768px) {
  .mega-menu { display: none !important; }
}
/* ── WORDPRESS SPECIFIC ── */
.wp-block-image img { max-width: 100%; height: auto; }
.alignnone { margin: 0; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }
img { max-width: 100%; height: auto; }
