/* ============================================================
   IMMIGRANTS ALLIANCE — Global Stylesheet v5.0
   Bright, Celebratory, Renewal Theme
   ============================================================ */
:root {
  --navy: #0a1628;
  --deep-blue: #0d2240;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --red: #c0392b;
  --white: #fdfcf8;
  --cream: #f5f0e8;
  --light-gray: #e8e4dc;
  --text: #1a1a2e;
  --text-muted: #5a5a72;
  --green: #27ae60;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; color:var(--text); background:var(--white); overflow-x:hidden; }

/* ANNOUNCEMENT BAR */
.ann-bar { background:var(--navy); color:var(--gold-light); text-align:center; padding:10px 20px; font-size:0.85rem; letter-spacing:0.04em; font-weight:500; }
.ann-bar a { color:var(--gold-light); text-decoration:underline; }

/* NAV */
nav { background:var(--white); border-bottom:2px solid var(--gold); position:sticky; top:0; z-index:1000; padding:0 40px; display:flex; align-items:center; justify-content:space-between; height:72px; box-shadow:0 2px 20px rgba(10,22,40,0.08); }
.nav-logo { display:flex; align-items:center; gap:14px; text-decoration:none; }
.nav-logo img { height:52px; width:52px; object-fit:contain; border-radius:6px; }
.nav-logo-text { display:flex; flex-direction:column; }
.nav-logo-name { font-family:"Playfair Display",serif; font-size:1.1rem; font-weight:700; color:var(--navy); line-height:1.1; }
.nav-logo-tagline { font-size:0.7rem; color:var(--gold); letter-spacing:0.1em; text-transform:uppercase; font-weight:600; }
.nav-links { display:flex; align-items:center; gap:4px; list-style:none; flex-wrap:wrap; }
.nav-links a { text-decoration:none; color:var(--navy); font-size:0.8rem; font-weight:500; padding:6px 9px; border-radius:4px; transition:all 0.2s; }
.nav-links a:hover, .nav-links a.active { background:var(--cream); color:var(--gold); }
.nav-cta { background:var(--navy) !important; color:var(--white) !important; padding:8px 16px !important; border-radius:4px !important; font-weight:600 !important; }
.nav-cta:hover { background:var(--gold) !important; color:var(--navy) !important; }

/* MOBILE NAV */
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:8px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--navy); margin:5px 0; transition:all 0.3s; }
.mobile-overlay { display:none; position:fixed; inset:0; background:rgba(10,22,40,0.97); z-index:9999; flex-direction:column; align-items:center; justify-content:center; gap:20px; }
.mobile-overlay.open { display:flex; }
.mobile-overlay a { color:var(--white); font-size:1.15rem; text-decoration:none; font-weight:500; padding:10px 24px; border-radius:6px; transition:all 0.2s; }
.mobile-overlay a:hover { background:rgba(201,168,76,0.2); color:var(--gold); }
.mobile-close { position:absolute; top:20px; right:24px; background:none; border:none; color:var(--white); font-size:2.2rem; cursor:pointer; }

/* HERO */
.hero { position:relative; min-height:88vh; display:flex; align-items:center; background:var(--navy); overflow:hidden; }
.hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,22,40,0.92) 0%,rgba(10,22,40,0.82) 50%,rgba(201,168,76,0.08) 100%); }
.hero-content { position:relative; z-index:2; max-width:1100px; margin:0 auto; padding:70px 50px; display:grid; grid-template-columns:1.1fr 0.9fr; gap:60px; align-items:center; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(201,168,76,0.13); border:1px solid var(--gold); color:var(--gold-light); padding:6px 16px; border-radius:50px; font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase; font-weight:600; margin-bottom:22px; }
.hero h1 { font-family:"Playfair Display",serif; font-size:3.2rem; font-weight:900; color:var(--white); line-height:1.12; margin-bottom:20px; }
.hero h1 em { font-style:italic; color:var(--gold); }
.hero-desc { color:rgba(253,252,248,0.78); font-size:1rem; line-height:1.75; margin-bottom:30px; font-weight:300; }
.hero-buttons { display:flex; gap:14px; flex-wrap:wrap; }
.hero-right { display:flex; flex-direction:column; gap:12px; }
.hero-stat-card { background:rgba(255,255,255,0.06); border:1px solid rgba(201,168,76,0.3); border-radius:8px; padding:16px 20px; backdrop-filter:blur(4px); transition:transform 0.2s; }
.hero-stat-card:hover { transform:translateY(-2px); }
.stat-number { font-family:"Playfair Display",serif; font-size:1.9rem; font-weight:900; color:var(--gold); line-height:1; margin-bottom:3px; }
.stat-label { color:rgba(253,252,248,0.7); font-size:0.78rem; }

/* PAGE HERO */
.page-hero { background:var(--navy); padding:80px 40px 60px; text-align:center; position:relative; overflow:hidden; }
.page-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.page-hero::before { content:""; position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,22,40,0.88),rgba(13,34,64,0.82),rgba(201,168,76,0.06)); z-index:1; }
.page-hero-inner { position:relative; z-index:2; max-width:800px; margin:0 auto; }
.page-hero h1 { font-family:"Playfair Display",serif; font-size:2.6rem; font-weight:900; color:var(--white); line-height:1.15; margin-bottom:16px; }
.page-hero h1 em { font-style:italic; color:var(--gold); }
.page-hero p { color:rgba(253,252,248,0.75); font-size:1rem; line-height:1.75; max-width:650px; margin:0 auto; }

/* BUTTONS */
.btn-primary { background:var(--gold); color:var(--navy); padding:13px 24px; border-radius:4px; font-weight:700; font-size:0.88rem; text-decoration:none; letter-spacing:0.04em; transition:all 0.2s; border:2px solid var(--gold); display:inline-block; cursor:pointer; }
.btn-primary:hover { background:var(--gold-light); transform:translateY(-1px); }
.btn-outline { background:transparent; color:var(--white); padding:13px 24px; border-radius:4px; font-weight:600; font-size:0.88rem; text-decoration:none; letter-spacing:0.04em; border:2px solid rgba(255,255,255,0.4); transition:all 0.2s; display:inline-block; }
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }
.btn-outline-dark { background:transparent; color:var(--navy); padding:13px 24px; border-radius:4px; font-weight:600; font-size:0.88rem; text-decoration:none; letter-spacing:0.04em; border:2px solid var(--navy); transition:all 0.2s; display:inline-block; }
.btn-outline-dark:hover { background:var(--navy); color:var(--white); }
.btn-sm { padding:8px 16px; font-size:0.8rem; }
.btn-live { background:var(--red); color:var(--white); border-color:var(--red); animation:pulse-live 2s infinite; }
.btn-live:hover { background:#e74c3c; border-color:#e74c3c; }
@keyframes pulse-live { 0%,100%{box-shadow:0 0 0 0 rgba(192,57,43,0.4)} 50%{box-shadow:0 0 0 8px rgba(192,57,43,0)} }

/* ALERT */
.alert-section { background:linear-gradient(135deg,#1a0a0a,#2d1010); border-top:3px solid var(--red); border-bottom:3px solid var(--red); padding:55px 40px; }
.alert-inner { max-width:900px; margin:0 auto; text-align:center; }
.alert-section h2 { font-family:"Playfair Display",serif; font-size:1.9rem; color:var(--white); margin-bottom:18px; }
.alert-section p { color:rgba(255,255,255,0.8); line-height:1.8; font-size:0.95rem; margin-bottom:12px; }
.alert-section strong { color:var(--white); }
.alert-section a { color:var(--gold-light); text-decoration:underline; }

/* SECTION UTILITIES */
.section-inner { max-width:1100px; margin:0 auto; }
.section-label { font-size:0.72rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); font-weight:700; margin-bottom:14px; }
.section-title { font-family:"Playfair Display",serif; font-size:2.4rem; font-weight:800; color:var(--navy); line-height:1.2; margin-bottom:40px; }
.divider { width:50px; height:3px; background:var(--gold); margin:14px 0 24px; }
.un-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(201,168,76,0.12); border:1px solid rgba(201,168,76,0.3); color:var(--gold-light); padding:6px 14px; border-radius:50px; font-size:0.7rem; letter-spacing:0.09em; font-weight:600; }
.text-link { color:var(--gold); text-decoration:underline; font-weight:600; transition:color 0.2s; }
.text-link:hover { color:var(--navy); }

/* IMAGE SECTIONS */
.img-text-section { padding:80px 40px; }
.img-text-grid { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.img-text-grid.reverse { direction:rtl; }
.img-text-grid.reverse > * { direction:ltr; }
.img-frame { border-radius:12px; overflow:hidden; box-shadow:0 12px 40px rgba(0,0,0,0.1); border:3px solid rgba(201,168,76,0.15); }
.img-frame img { width:100%; height:100%; object-fit:cover; display:block; min-height:300px; }
.img-frame-short { border-radius:10px; overflow:hidden; box-shadow:0 6px 20px rgba(0,0,0,0.08); }
.img-frame-short img { width:100%; height:200px; object-fit:cover; display:block; }
.img-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:36px; }
.img-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:20px; }
.photo-banner { position:relative; height:320px; overflow:hidden; }
.photo-banner img { width:100%; height:100%; object-fit:cover; display:block; }
.photo-banner-overlay { position:absolute; inset:0; background:linear-gradient(to bottom,rgba(10,22,40,0.2),rgba(10,22,40,0.65)); display:flex; align-items:center; justify-content:center; text-align:center; padding:40px; }
.photo-banner-overlay h2 { font-family:"Playfair Display",serif; font-size:2.1rem; color:var(--white); font-weight:900; }
.photo-banner-overlay p { color:rgba(253,252,248,0.85); font-size:0.95rem; margin-top:8px; }

/* MISSION */
.mission-section { padding:90px 40px; background:var(--white); }
.mission-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.mission-card { border-top:3px solid var(--gold); padding-top:20px; }
.mission-icon { font-size:1.8rem; margin-bottom:10px; }
.mission-card h3 { font-family:"Playfair Display",serif; font-size:1rem; color:var(--navy); margin-bottom:8px; font-weight:700; }
.mission-card p { color:var(--text-muted); font-size:0.84rem; line-height:1.6; }

/* PARADE */
.parade-section { background:var(--navy); padding:90px 40px; position:relative; overflow:hidden; }
.parade-inner { max-width:1100px; margin:0 auto; position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.parade-content .section-label { color:var(--gold); }
.parade-content .section-title { color:var(--white); margin-bottom:20px; }
.parade-details { display:flex; flex-direction:column; gap:11px; margin-bottom:26px; }
.parade-detail { display:flex; align-items:flex-start; gap:10px; color:rgba(253,252,248,0.85); font-size:0.9rem; }
.parade-detail-icon { font-size:1rem; flex-shrink:0; margin-top:2px; }
.parade-route-box { background:rgba(255,255,255,0.06); border:1px solid rgba(201,168,76,0.4); border-radius:8px; padding:20px; margin-top:12px; }
.route-title { font-size:0.72rem; letter-spacing:0.15em; color:var(--gold); text-transform:uppercase; font-weight:700; margin-bottom:12px; }
.route-stop { color:var(--white); font-size:0.86rem; display:flex; align-items:center; gap:10px; margin-bottom:5px; }
.route-line { width:2px; height:16px; background:var(--gold); opacity:0.4; margin-left:8px; margin-bottom:5px; }
.parade-img-stack { display:flex; flex-direction:column; gap:12px; }
.parade-img { border-radius:8px; overflow:hidden; border:2px solid rgba(201,168,76,0.2); }
.parade-img img { width:100%; display:block; object-fit:cover; }
.parade-img.tall img { height:260px; }
.parade-img.short { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.parade-img.short div { border-radius:8px; overflow:hidden; border:2px solid rgba(201,168,76,0.2); }
.parade-img.short div img { width:100%; height:155px; object-fit:cover; display:block; }

/* SEED */
.seed-section { background:var(--cream); padding:90px 40px; }
.seed-header { display:grid; grid-template-columns:1fr 1fr; gap:50px; margin-bottom:46px; align-items:center; }
.seed-stats { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.seed-stat { background:var(--white); border-radius:8px; padding:20px; border-left:4px solid var(--gold); box-shadow:0 2px 10px rgba(0,0,0,0.04); }
.seed-stat-num { font-family:"Playfair Display",serif; font-size:1.8rem; font-weight:900; color:var(--navy); margin-bottom:3px; }
.seed-stat-label { font-size:0.76rem; color:var(--text-muted); }
.seed-pillars { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.pillar-card { background:var(--white); border-radius:8px; padding:16px; box-shadow:0 2px 8px rgba(0,0,0,0.04); border-top:3px solid transparent; transition:border-color 0.2s,transform 0.2s; }
.pillar-card:hover { border-top-color:var(--gold); transform:translateY(-2px); }
.pillar-num { font-family:"Playfair Display",serif; font-size:1.5rem; font-weight:900; color:var(--light-gray); margin-bottom:5px; }
.pillar-card h4 { font-size:0.8rem; font-weight:700; color:var(--navy); margin-bottom:4px; }
.pillar-card p { font-size:0.74rem; color:var(--text-muted); line-height:1.5; }

/* PROGRAMS */
.programs-section { padding:90px 40px; background:var(--white); }
.programs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:40px; }
.program-card { border:1px solid var(--light-gray); border-radius:10px; padding:24px; transition:all 0.2s; position:relative; }
.program-card:hover { border-color:var(--gold); box-shadow:0 8px 28px rgba(201,168,76,0.1); transform:translateY(-3px); }
.program-icon { font-size:1.6rem; margin-bottom:10px; }
.program-card h3 { font-size:0.95rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.program-card h3 a { color:var(--navy); text-decoration:none; }
.program-card h3 a:hover { color:var(--gold); }
.program-card p { font-size:0.82rem; color:var(--text-muted); line-height:1.6; }
.program-badge { position:absolute; top:12px; right:12px; background:var(--cream); color:var(--navy); font-size:0.64rem; font-weight:700; padding:2px 9px; border-radius:50px; border:1px solid var(--light-gray); }
.program-badge.live { background:rgba(192,57,43,0.12); color:var(--red); border-color:rgba(192,57,43,0.3); }
.program-link { display:inline-block; margin-top:10px; color:var(--gold); font-size:0.82rem; font-weight:600; text-decoration:none; }
.program-link:hover { text-decoration:underline; }

/* SERVICES */
.services-section { background:var(--navy); padding:90px 40px; }
.services-inner .section-label { color:var(--gold); }
.services-inner .section-title { color:var(--white); }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:40px; }
.service-card { background:rgba(255,255,255,0.05); border:1px solid rgba(201,168,76,0.2); border-radius:10px; padding:24px; transition:all 0.2s; }
.service-card:hover { background:rgba(255,255,255,0.08); border-color:var(--gold); }
.service-icon { font-size:1.6rem; margin-bottom:10px; }
.service-card h3 { font-size:0.9rem; font-weight:700; color:var(--white); margin-bottom:8px; }
.service-card h3 a { color:var(--white); text-decoration:none; }
.service-card h3 a:hover { color:var(--gold); }
.service-card p { font-size:0.8rem; color:rgba(253,252,248,0.65); line-height:1.6; }
.badge-live { display:inline-block; background:rgba(192,57,43,0.25); color:#ff8a80; font-size:0.66rem; font-weight:700; padding:2px 9px; border-radius:50px; margin-top:8px; border:1px solid rgba(192,57,43,0.4); cursor:pointer; text-decoration:none; }
.badge-live:hover { background:rgba(192,57,43,0.4); }
.badge-free { display:inline-block; background:rgba(201,168,76,0.15); color:var(--gold-light); font-size:0.66rem; font-weight:700; padding:2px 9px; border-radius:50px; margin-top:8px; border:1px solid rgba(201,168,76,0.3); }

/* HISTORY */
.history-section { background:var(--navy); padding:90px 40px; }
.history-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 2fr; gap:60px; }
.history-left .section-label { color:var(--gold); }
.history-left .section-title { color:var(--white); font-size:2rem; margin-bottom:18px; }
.history-left p { color:rgba(253,252,248,0.72); font-size:0.9rem; line-height:1.7; margin-bottom:18px; }
.timeline { display:flex; flex-direction:column; }
.timeline-item { display:grid; grid-template-columns:76px 1fr; gap:20px; padding-bottom:24px; position:relative; }
.timeline-item:not(:last-child)::after { content:""; position:absolute; left:37px; top:24px; bottom:0; width:2px; background:rgba(201,168,76,0.22); }
.timeline-year { font-family:"Playfair Display",serif; font-size:0.93rem; font-weight:900; color:var(--gold); padding-top:2px; text-align:center; position:relative; }
.timeline-year::after { content:""; position:absolute; right:-12px; top:8px; width:8px; height:8px; background:var(--gold); border-radius:50%; }
.timeline-text { color:rgba(253,252,248,0.78); font-size:0.84rem; line-height:1.6; padding-top:2px; }

/* AFFILIATES */
.affiliates-section { padding:80px 40px; background:var(--cream); }
.affiliates-inner { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:40px; }
.affiliate-card { background:var(--white); border-radius:10px; padding:28px; border-left:5px solid var(--gold); box-shadow:0 2px 10px rgba(0,0,0,0.04); }
.affiliate-card h3 { font-family:"Playfair Display",serif; font-size:1.1rem; color:var(--navy); margin-bottom:8px; }
.affiliate-card p { color:var(--text-muted); font-size:0.84rem; line-height:1.6; }
.affiliate-badge { display:inline-flex; align-items:center; gap:6px; background:var(--cream); border:1px solid var(--gold); color:var(--navy); padding:3px 11px; border-radius:50px; font-size:0.68rem; font-weight:700; margin-top:10px; }

/* MEMBERSHIP */
.membership-section { background:var(--cream); padding:90px 40px; }
.membership-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:40px; }
.membership-card { background:var(--white); border-radius:12px; padding:30px; border:2px solid var(--light-gray); transition:all 0.2s; }
.membership-card.featured { border-color:var(--gold); box-shadow:0 12px 36px rgba(201,168,76,0.12); transform:scale(1.02); }
.membership-type { font-size:0.7rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--text-muted); font-weight:700; margin-bottom:10px; }
.membership-price { font-family:"Playfair Display",serif; font-size:2.2rem; font-weight:900; color:var(--navy); margin-bottom:3px; }
.membership-period { font-size:0.78rem; color:var(--text-muted); margin-bottom:20px; }
.membership-features { list-style:none; margin-bottom:24px; display:flex; flex-direction:column; gap:8px; }
.membership-features li { font-size:0.84rem; color:var(--text); padding-left:18px; position:relative; line-height:1.4; }
.membership-features li::before { content:"✓"; position:absolute; left:0; color:var(--gold); font-weight:700; }

/* DONATE */
.donate-section { background:var(--gold); padding:70px 40px; text-align:center; }
.donate-section h2 { font-family:"Playfair Display",serif; font-size:2.2rem; color:var(--navy); margin-bottom:12px; }
.donate-section > p { color:var(--navy); opacity:0.8; margin-bottom:34px; font-size:0.95rem; }
.donate-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; max-width:1000px; margin:0 auto 30px; }
.donate-card { background:var(--navy); border-radius:10px; padding:24px 16px; color:var(--white); transition:transform 0.2s; }
.donate-card:hover { transform:translateY(-3px); }
.donate-card-icon { font-size:1.8rem; margin-bottom:10px; }
.donate-card h3 { font-size:0.95rem; font-weight:700; margin-bottom:6px; }
.donate-card p { font-size:0.76rem; opacity:0.7; line-height:1.5; }
.donate-amounts { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:28px; max-width:700px; margin-left:auto; margin-right:auto; }
.donate-amount-btn { background:var(--navy); color:var(--white); border:2px solid var(--navy); padding:11px 26px; border-radius:6px; font-family:"Playfair Display",serif; font-size:1.05rem; font-weight:700; cursor:pointer; transition:all 0.2s; text-decoration:none; display:inline-block; }
.donate-amount-btn:hover, .donate-amount-btn.active { background:var(--white); color:var(--navy); }

/* PAYMENT */
.payment-section { padding:60px 40px; background:var(--white); }
.payment-inner { max-width:500px; margin:0 auto; text-align:center; }
.payment-methods { display:flex; gap:12px; justify-content:center; margin:20px 0; flex-wrap:wrap; }
.payment-method { display:flex; align-items:center; gap:6px; padding:8px 16px; border:1px solid var(--light-gray); border-radius:6px; font-size:0.82rem; color:var(--text-muted); }
.payment-secure { font-size:0.78rem; color:var(--text-muted); margin-top:14px; }

/* CONTACT */
.contact-section { padding:90px 40px; background:var(--white); }
.contact-inner { max-width:800px; margin:0 auto; text-align:center; }
.contact-inner .section-title { margin-bottom:10px; }
.contact-sub { color:var(--text-muted); margin-bottom:36px; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; text-align:left; }
.contact-card { background:var(--cream); border-radius:10px; padding:28px; }
.contact-card h3 { font-family:"Playfair Display",serif; font-size:1.1rem; color:var(--navy); margin-bottom:12px; }
.contact-card a { display:block; color:var(--navy); text-decoration:none; font-weight:600; font-size:0.9rem; margin-bottom:6px; }
.contact-card a:hover { color:var(--gold); }
.contact-card p { font-size:0.82rem; color:var(--text-muted); line-height:1.6; margin-top:8px; }
.global-note { margin-top:24px; background:var(--cream); border-radius:10px; padding:26px; }
.global-note p { color:var(--text-muted); font-size:0.86rem; line-height:1.6; margin-top:10px; }
.contact-form { max-width:600px; margin:36px auto 0; text-align:left; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:0.82rem; font-weight:600; color:var(--navy); margin-bottom:5px; }
.form-group input, .form-group textarea, .form-group select { width:100%; padding:11px 14px; border:2px solid var(--light-gray); border-radius:6px; font-family:'DM Sans',sans-serif; font-size:0.88rem; color:var(--text); background:var(--white); transition:border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline:none; border-color:var(--gold); }
.form-group textarea { min-height:110px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

/* FOOTER */
footer { background:var(--navy); color:rgba(253,252,248,0.65); padding:55px 40px 24px; }
.footer-inner { max-width:1100px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:34px; padding-bottom:34px; border-bottom:1px solid rgba(201,168,76,0.18); }
.footer-logo-row { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.footer-logo-row img { height:42px; width:42px; object-fit:contain; border-radius:4px; }
.footer-name { font-family:"Playfair Display",serif; color:var(--white); font-size:1.02rem; font-weight:700; }
.footer-brand p { font-size:0.82rem; line-height:1.6; margin-bottom:12px; }
.footer-col h4 { color:var(--white); font-size:0.74rem; letter-spacing:0.1em; text-transform:uppercase; font-weight:700; margin-bottom:12px; }
.footer-col a { display:block; color:rgba(253,252,248,0.58); text-decoration:none; font-size:0.82rem; margin-bottom:6px; transition:color 0.2s; }
.footer-col a:hover { color:var(--gold-light); }
.footer-bottom { text-align:center; font-size:0.74rem; color:rgba(253,252,248,0.38); }

/* CTA BANNER */
.cta-banner { background:var(--gold); padding:55px 40px; text-align:center; }
.cta-banner h2 { font-family:"Playfair Display",serif; font-size:1.9rem; color:var(--navy); margin-bottom:12px; }
.cta-banner p { color:var(--navy); opacity:0.8; margin-bottom:24px; font-size:0.93rem; max-width:600px; margin-left:auto; margin-right:auto; }
.cta-banner .btn-primary { background:var(--navy); color:var(--white); border-color:var(--navy); }
.cta-banner .btn-primary:hover { background:var(--deep-blue); border-color:var(--deep-blue); }

/* FAQ */
.faq-section { padding:70px 40px; background:var(--white); }
.faq-grid { max-width:800px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--light-gray); padding:20px 0; }
.faq-question { font-family:"Playfair Display",serif; font-size:1.02rem; font-weight:700; color:var(--navy); cursor:pointer; display:flex; justify-content:space-between; align-items:center; }
.faq-question::after { content:"+"; font-size:1.3rem; color:var(--gold); transition:transform 0.2s; }
.faq-item.open .faq-question::after { content:"−"; }
.faq-answer { color:var(--text-muted); font-size:0.86rem; line-height:1.7; max-height:0; overflow:hidden; transition:max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height:300px; padding-top:12px; }

/* SUB-PAGE CONTENT */
.content-section { padding:80px 40px; }
.content-inner { max-width:900px; margin:0 auto; }
.content-inner h2 { font-family:"Playfair Display",serif; font-size:1.8rem; color:var(--navy); margin-bottom:16px; }
.content-inner h3 { font-family:"Playfair Display",serif; font-size:1.2rem; color:var(--navy); margin:24px 0 10px; }
.content-inner p { color:var(--text-muted); font-size:0.92rem; line-height:1.75; margin-bottom:14px; }
.content-inner ul { margin:10px 0 20px 20px; }
.content-inner ul li { color:var(--text-muted); font-size:0.9rem; line-height:1.7; margin-bottom:6px; }
.content-inner .highlight-box { background:var(--cream); border-left:4px solid var(--gold); border-radius:8px; padding:22px; margin:20px 0; }
.content-inner .highlight-box p { margin-bottom:0; }
.live-indicator { display:inline-flex; align-items:center; gap:6px; background:rgba(192,57,43,0.1); color:var(--red); font-weight:700; font-size:0.8rem; padding:4px 12px; border-radius:50px; border:1px solid rgba(192,57,43,0.3); }
.live-indicator::before { content:""; width:8px; height:8px; background:var(--red); border-radius:50%; animation:pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* RESPONSIVE */
@media (max-width:1024px) {
  .hero-content { grid-template-columns:1fr; gap:36px; padding:50px 28px; }
  .mission-grid { grid-template-columns:repeat(2,1fr); }
  .parade-inner { grid-template-columns:1fr; gap:36px; }
  .seed-header { grid-template-columns:1fr; gap:26px; }
  .seed-pillars { grid-template-columns:repeat(3,1fr); }
  .programs-grid { grid-template-columns:repeat(2,1fr); }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .history-inner { grid-template-columns:1fr; gap:36px; }
  .membership-grid { grid-template-columns:1fr; max-width:440px; margin-left:auto; margin-right:auto; }
  .membership-card.featured { transform:none; }
  .donate-cards { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; gap:28px; }
  .img-text-grid { grid-template-columns:1fr; gap:28px; }
  .img-text-grid.reverse { direction:ltr; }
  .img-grid-3 { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:block; }
  nav { padding:0 18px; }
  .hero h1 { font-size:2.1rem; }
  .page-hero h1 { font-size:1.9rem; }
  .section-title { font-size:1.7rem; }
  .mission-grid { grid-template-columns:1fr; }
  .seed-pillars { grid-template-columns:repeat(2,1fr); }
  .programs-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .affiliates-inner { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .donate-cards { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:24px; }
  .form-row { grid-template-columns:1fr; }
  .parade-img.short { grid-template-columns:1fr; }
  .img-grid-3 { grid-template-columns:1fr; }
  .img-grid-2 { grid-template-columns:1fr; }
  .photo-banner { height:220px; }
  .photo-banner-overlay h2 { font-size:1.5rem; }
}
