/* =============================================
   TOKENS
   ============================================= */
:root {
  --red: #CE2B2B;
  --red-dark: #B02020;
  --white: #FFFFFF;
  --off-white: #FDF6F0;
  --text-dark: #1A1A1A;
  --text-mid: #444444;
  --text-muted: #777777;
  --border: rgba(0,0,0,0.08);
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.page { display: none; }
.page.active { display: block; }

/* =============================================
   NAV
   ============================================= */
nav { background: var(--red); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; height: 72px; gap: 20px; }
.nav-logo { flex-shrink: 0; cursor: pointer; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; flex: 1; justify-content: center; }
.nav-links a { color: var(--white); font-size: 15px; font-weight: 500; padding: 6px 12px; border-radius: 8px; transition: background 0.2s; white-space: nowrap; cursor: pointer; }
.nav-links a:hover { background: rgba(255,255,255,0.15); }
.nav-links .icon-link { display: flex; align-items: center; padding: 6px 8px; }
.nav-links .icon-link svg { width: 20px; height: 20px; fill: white; }
.nav-cta { background: var(--white) !important; color: var(--red) !important; font-weight: 700 !important; padding: 8px 20px !important; border-radius: 50px !important; font-size: 14px !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; margin: 5px 0; }
.mobile-menu { display: none; background: #B02020; padding: 16px 24px; flex-direction: column; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: white; font-size: 16px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-weight: 500; cursor: pointer; }
.mobile-menu a:last-child { border-bottom: none; }

/* =============================================
   HERO
   ============================================= */
.hero { background: var(--red); padding: 80px 40px 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; min-height: 560px; }
.hero-text h1 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 68px); font-weight: 700; color: var(--white); line-height: 1.08; margin-bottom: 24px; letter-spacing: -0.5px; }
.hero-text p { color: rgba(255,255,255,0.88); font-size: 17px; line-height: 1.65; max-width: 440px; }
.hero-image { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   SHARED
   ============================================= */
.section { padding: 80px 40px; }
.section-red { background: var(--red); color: white; }
.section-cream { background: var(--off-white); }
.section-white { background: var(--white); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.section-red .section-label { color: rgba(255,255,255,0.6); }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-mid); max-width: 560px; line-height: 1.65; margin-bottom: 48px; }
.section-red .section-subtitle { color: rgba(255,255,255,0.8); }

/* BUTTONS */
.btn-white { display: inline-block; background: white; color: var(--red); font-weight: 700; font-size: 15px; padding: 14px 32px; border-radius: 50px; transition: transform 0.2s, box-shadow 0.2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-red { display: inline-block; background: var(--red); color: white; font-weight: 700; font-size: 15px; padding: 14px 32px; border-radius: 50px; border: 2px solid var(--red); transition: transform 0.2s; cursor: pointer; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { display: inline-block; background: transparent; color: var(--red); font-weight: 700; font-size: 15px; padding: 12px 28px; border-radius: 50px; border: 2px solid var(--red); transition: all 0.2s; }
.btn-outline:hover { background: var(--red); color: white; }

/* =============================================
   WHAT AGB IS ABOUT  (reference-style rows)
   ============================================= */
.about-agb { background: var(--off-white); }
.agb-heading { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 56px); font-weight: 700; text-align: center; margin-bottom: 48px; letter-spacing: -0.5px; }
.agb-rows { max-width: 940px; margin: 0 auto; }
.agb-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; padding: 32px 8px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.2s; border-radius: 8px; }
.agb-row:last-child { border-bottom: none; }
.agb-row:hover { background: rgba(0,0,0,0.02); }
.agb-icon { width: 72px; height: 72px; border-radius: 14px; overflow: hidden; flex-shrink: 0; box-shadow: var(--shadow); }
.agb-icon img { width: 100%; height: 100%; object-fit: cover; }
.agb-text h3 { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; margin-bottom: 8px; }
.agb-text p { font-size: 15px; color: var(--text-mid); line-height: 1.6; max-width: 580px; }
.agb-more { font-weight: 600; font-size: 15px; white-space: nowrap; color: var(--text-dark); display: flex; align-items: center; gap: 8px; }
.agb-more .arrow { transition: transform 0.2s; }
.agb-row:hover .agb-more .arrow { transform: translateX(4px); }

/* =============================================
   PILLARS (larger icons)
   ============================================= */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.pillar-card { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 32px 28px; transition: background 0.2s; }
.pillar-card:hover { background: rgba(255,255,255,0.18); }
.pillar-icon { width: 80px; height: 80px; border-radius: 16px; overflow: hidden; margin-bottom: 20px; background: rgba(255,255,255,0.15); }
.pillar-icon img { width: 100%; height: 100%; object-fit: cover; }
.pillar-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: white; margin-bottom: 10px; }
.pillar-card p { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 20px; }
.testimonial-card blockquote { font-size: 15px; color: var(--text-mid); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-card blockquote::before { content: '\201C'; }
.testimonial-card blockquote::after { content: '\201D'; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-author .name { font-weight: 700; font-size: 14px; }
.testimonial-author .role { font-size: 12px; color: var(--text-muted); }

/* TESTIMONIALS CAROUSEL */
.t-carousel { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.t-viewport { overflow: hidden; flex: 1; }
.t-track { display: flex; transition: transform 0.5s ease; }
.t-card { flex: 0 0 calc(50% - 10px); margin-right: 20px; background: var(--white); border-radius: var(--radius); padding: 36px 28px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; box-shadow: var(--shadow); }
.t-avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; margin-bottom: 18px; flex-shrink: 0; }
.t-card blockquote { font-size: 15px; color: var(--text-mid); line-height: 1.7; flex: 1; }
.t-name { color: var(--red); font-weight: 700; font-size: 18px; margin-top: 18px; }
.t-role { color: var(--text-muted); font-size: 13px; margin-top: 2px; }
.t-arrow { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255,255,255,0.9); color: var(--red); font-size: 26px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.t-arrow:hover { background: #fff; transform: scale(1.08); }
@media (max-width: 700px) { .t-card { flex: 0 0 100%; } .t-arrow { width: 40px; height: 40px; font-size: 22px; } }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: start; }
.faq-intro .section-title { margin-bottom: 16px; }
.faq-intro .section-subtitle { margin-bottom: 0; }
.faq-list { max-width: none; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; margin-bottom: 14px; transition: border-color 0.2s; }
.faq-item:last-child { margin-bottom: 0; }
.faq-item:hover { border-color: rgba(0,0,0,0.18); }
.faq-question { font-size: 16px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; }
.faq-arrow { display: none; }
.faq-question::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--text-mid); line-height: 1; flex-shrink: 0; }
.faq-item.open .faq-question::after { content: "\2212"; }
.faq-answer { font-size: 15px; color: var(--text-mid); 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: 360px; padding-top: 12px; }

/* CTA BANNER */
.cta-banner { background: var(--red); padding: 52px 40px; text-align: center; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 17px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero { background: var(--red); padding: 80px 40px; text-align: center; }
.about-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); color: white; margin-bottom: 20px; }
.about-hero p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 560px; margin: 0 auto; line-height: 1.65; }
.stat-image { display: block; max-height: 160px; width: auto; margin: 0 auto 32px; border-radius: 12px; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.about-story-text h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; line-height: 1.2; }
.about-story-text p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.about-story-image { border-radius: 20px; overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-lg); }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.founder-section { background: var(--off-white); padding: 80px 40px; }
.founder-card { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 420px 1fr; gap: 40px; align-items: stretch; background: var(--red); border-radius: var(--radius); padding: 48px 48px 0; box-shadow: var(--shadow); overflow: hidden; }
.founder-photo { height: 100%; min-height: 0; display: flex; align-items: flex-end; justify-content: center; }
.founder-photo img { width: 100%; height: 100%; object-fit: contain; object-position: bottom center; }
.founder-info { padding-bottom: 48px; }
.founder-info .tag { display: inline-block; background: white; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 16px; }
.founder-info h2 { font-family: var(--font-display); font-size: 32px; margin-bottom: 4px; color: white; }
.founder-info .title { color: rgba(255,255,255,0.8); font-size: 14px; font-style: italic; margin-bottom: 20px; }
.founder-info p { font-size: 15px; color: rgba(255,255,255,0.92); line-height: 1.75; margin-bottom: 12px; }
.founder-info strong { color: white; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.mission-card { border: 2px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: background 0.2s, border-color 0.2s, box-shadow 0.2s; }
.mission-card:hover { background: var(--red); border-color: var(--red); box-shadow: var(--shadow); }
.mission-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--red); opacity: 0.25; line-height: 1; margin-bottom: 16px; transition: color 0.2s, opacity 0.2s; }
.mission-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 10px; transition: color 0.2s; }
.mission-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; transition: color 0.2s; }
.mission-card:hover h3 { color: white; }
.mission-card:hover p { color: rgba(255,255,255,0.92); }
.mission-card:hover .mission-num { color: white; opacity: 0.45; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.step { text-align: center; padding: 32px 24px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.step-num { width: 44px; height: 44px; background: var(--red); color: white; font-weight: 700; font-size: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--text-mid); line-height: 1.6; }
.get-involved-banner { background: var(--red); border-radius: var(--radius); padding: 48px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; margin-top: 48px; }
.full-banner { width: 100%; height: 200px; overflow: hidden; }
.full-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.get-involved-banner h3 { font-family: var(--font-display); font-size: 26px; color: white; margin-bottom: 8px; }
.get-involved-banner p { color: rgba(255,255,255,0.82); font-size: 15px; }

/* =============================================
   COMMUNITY PAGE — easy-to-update gallery
   ============================================= */
.community-hero { background: var(--red); padding: 72px 40px 64px; text-align: center; }
.community-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); color: white; margin-bottom: 16px; }
.community-hero p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 520px; margin: 0 auto; line-height: 1.65; }
.gallery-section { padding: 72px 40px; }
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab { padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; border: 2px solid var(--border); background: white; color: var(--text-mid); transition: all 0.2s; }
.filter-tab:hover { border-color: var(--red); color: var(--red); }
.filter-tab.active { background: var(--red); color: white; border-color: var(--red); }

/* ---- EVENT GROUP (one per event) ---- */
.event-group { margin-bottom: 64px; }
.event-group-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.event-group-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-dark); }
.event-group-count { font-size: 13px; color: var(--text-muted); background: var(--off-white); padding: 3px 10px; border-radius: 50px; }
.event-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay { position: absolute; inset: 0; background: rgba(206,43,43,0); display: flex; align-items: flex-end; padding: 12px; transition: background 0.3s; }
.gallery-item:hover .overlay { background: rgba(206,43,43,0.5); }
.gallery-caption { display: none; }

.partner-banner { background: var(--off-white); padding: 72px 40px; }
.partner-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.partner-inner img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.partner-text h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.partner-text p { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero { background: var(--red); padding: 80px 40px; text-align: center; }
.contact-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); color: white; margin-bottom: 16px; }
.contact-hero p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 480px; margin: 0 auto; line-height: 1.65; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px 40px; max-width: 980px; margin: 0 auto; align-items: start; }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 28px; margin-bottom: 8px; }
.contact-form-wrap .sub { color: var(--text-muted); font-size: 15px; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 15px; font-family: var(--font-body); color: var(--text-dark); background: white; transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; background: var(--red); color: white; font-size: 16px; font-weight: 700; border: none; border-radius: 50px; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--red-dark); }
.form-success { display: none; background: #f0fdf4; border: 2px solid #86efac; border-radius: var(--radius-sm); padding: 20px; text-align: center; color: #166534; font-weight: 600; margin-top: 16px; }
.contact-info h2 { font-family: var(--font-display); font-size: 28px; margin-bottom: 24px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link-item { display: flex; align-items: center; gap: 16px; padding: 20px; border: 2px solid var(--border); border-radius: var(--radius); color: var(--text-dark); transition: border-color 0.2s, box-shadow 0.2s; }
.contact-link-item:hover { border-color: var(--red); box-shadow: var(--shadow); }
.contact-link-icon { width: 44px; height: 44px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-link-icon svg { width: 22px; height: 22px; fill: white; }
.contact-link-text .name { font-weight: 700; font-size: 15px; }
.contact-link-text .handle { font-size: 13px; color: var(--text-muted); }

/* FOOTER */
footer { background: var(--red); padding: 48px 40px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto 40px; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-logo img { height: 44px; margin-bottom: 12px; }
.footer-logo p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 240px; line-height: 1.6; }
.footer-links h4 { color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.8); font-size: 15px; transition: color 0.2s; cursor: pointer; }
.footer-links a:hover { color: white; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a:hover { background: rgba(255,255,255,0.28); }
.footer-social svg { width: 18px; height: 18px; fill: white; }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 1000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 28px; color: white; font-size: 36px; cursor: pointer; opacity: 0.8; line-height: 1; z-index: 2; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: white; font-size: 44px; line-height: 1; cursor: pointer; opacity: 0.8; padding: 12px; transition: opacity 0.2s; -webkit-user-select: none; user-select: none; }
.lightbox-nav:hover { opacity: 1; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
@media (max-width: 700px) {
  .lightbox-nav { font-size: 34px; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .hero-image { max-height: 300px; }
  .section { padding: 56px 24px; }
  .pillars, .testimonials-grid, .mission-grid, .steps-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .about-story { grid-template-columns: 1fr; padding: 56px 24px; }
  .founder-card { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; padding: 56px 24px; }
  .get-involved-banner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .community-hero, .about-hero, .contact-hero { padding: 60px 24px; }
  .gallery-section, .partner-banner, .founder-section { padding: 56px 24px; }
}
@media (max-width: 700px) {
  .agb-row { grid-template-columns: auto 1fr; gap: 20px; }
  .agb-more { display: none; }
}
