/* MCKS Charitable Foundation - Main Stylesheet */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap");

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

:root {
  --warm-beige: #F5F0EB;
  --warm-beige-2: #EDE8E1;
  --light-blue: #D6E8EE;
  --orange: #C8571B;
  --orange-hover: #A84515;
  --dark: #2A2118;
  --dark-brown: #3D2B1F;
  --text: #3D3530;
  --text-light: #6B5E56;
  --white: #FFFFFF;
  --border: #E0D8D0;
  --section-gap: 80px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--dark-brown); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p { font-size: 1rem; color: var(--text); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-family: var(--font-body); font-size: .95rem; font-weight: 600; cursor: pointer; transition: all .25s ease; border: 2px solid transparent; text-decoration: none; white-space: nowrap; }
.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,87,27,.3); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--orange); }
.btn--outline-dark { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn--outline-dark:hover { background: var(--orange); color: var(--white); }
.btn--large { padding: 18px 48px; font-size: 1.05rem; }
.btn--sm { padding: 10px 24px; font-size: .9rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1200px; margin: 0 auto; }
.header-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.header-logo img { height: 52px; width: auto; }
.header-logo-text { display: flex; flex-direction: column; }
.header-logo-name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--dark-brown); line-height: 1.1; }
.header-logo-sub { font-size: .7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }
.site-nav ul { display: flex; gap: 28px; align-items: center; }
.site-nav a { font-size: .88rem; font-weight: 500; color: var(--text); transition: color .2s; position: relative; }
.site-nav a::after { content: ""; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width .2s; }
.site-nav a:hover, .site-nav a.active { color: var(--orange); }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }
.header-cta .btn { padding: 10px 22px; font-size: .88rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark-brown); border-radius: 2px; }

.hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; background: var(--dark-brown); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(30,18,10,.75) 45%, rgba(30,18,10,.2) 100%); }
.hero-content { position: relative; z-index: 2; padding: 80px 24px; max-width: 580px; margin-left: max(5%, calc((100vw - 1100px) / 2 + 24px)); }
.hero-content h1 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.2; margin-bottom: 20px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.hero-content p { color: rgba(255,255,255,.92); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.hero--page { min-height: 320px; }
.hero--page .hero-content { text-align: center; margin: 0 auto; max-width: 700px; }
.hero--page .btn-group { justify-content: center; }

.intro-section { padding: 70px 0; background: var(--warm-beige); text-align: center; }
.intro-section h2 { font-style: italic; margin-bottom: 24px; }
.intro-section p { font-size: 1.05rem; max-width: 680px; margin: 0 auto 16px; line-height: 1.8; color: var(--text-light); }

.programs-section { padding: var(--section-gap) 0; position: relative; overflow: hidden; background: var(--warm-beige-2); }
.programs-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .12; }
.programs-section .container { position: relative; }
.programs-section h2 { text-align: center; margin-bottom: 48px; }
.programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.program-card { background: var(--white); border-radius: 12px; padding: 32px 20px; text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,.08); transition: transform .25s, box-shadow .25s; }
.program-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.13); }
.program-icon { width: 56px; height: 56px; margin: 0 auto 16px; }
.program-icon svg { width: 52px; height: 52px; fill: var(--orange); }
.program-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark-brown); margin-bottom: 10px; }
.program-card p { font-size: .88rem; color: var(--text-light); line-height: 1.6; margin: 0; }
.programs-cta { text-align: center; }

.support-value { padding: var(--section-gap) 0; background: var(--warm-beige); text-align: center; }
.support-value h2 { margin-bottom: 32px; }
.support-checklist { list-style: none; display: inline-flex; flex-direction: column; gap: 14px; text-align: left; margin-bottom: 24px; }
.support-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.05rem; color: var(--text); }
.check-icon { width: 22px; height: 22px; min-width: 22px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.check-icon svg { width: 13px; height: 13px; fill: white; }
.support-value .tagline { font-size: 1.05rem; color: var(--text-light); font-style: italic; margin-top: 8px; }

.credibility-section { padding: var(--section-gap) 0; background: var(--white); text-align: center; }
.credibility-section h2 { margin-bottom: 20px; }
.credibility-section p { max-width: 680px; margin: 0 auto 32px; font-size: 1.05rem; color: var(--text-light); }

.final-cta { padding: var(--section-gap) 0; background: var(--warm-beige-2); text-align: center; position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .1; }
.final-cta .container { position: relative; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { max-width: 600px; margin: 0 auto 32px; font-size: 1.05rem; color: var(--text-light); }
.final-cta .btn-group { justify-content: center; }

.founder-section { padding: var(--section-gap) 0; background: var(--white); }
.founder-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.founder-image img { border-radius: 12px; width: 100%; height: auto; object-fit: contain; }
.founder-text h2 { margin-bottom: 20px; }
.founder-text p { color: var(--text-light); font-size: 1.05rem; }
.about-story { padding: var(--section-gap) 0; background: var(--warm-beige); }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.about-story-img img { border-radius: 12px; width: 100%; height: auto; object-fit: contain; }
.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p { color: var(--text-light); font-size: 1.05rem; }
.mission-vision { padding: var(--section-gap) 0; background: var(--white); }
.mission-vision h2 { text-align: center; margin-bottom: 48px; }
.mission-vision .container { max-width: 1100px; }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mv-card { background: var(--warm-beige); border-radius: 12px; padding: 40px; border-left: 4px solid var(--orange); }
.mv-card h3 { font-size: 1.3rem; color: var(--orange); margin-bottom: 16px; }
.mv-card p { color: var(--text); line-height: 1.8; }
.values-section { padding: var(--section-gap) 0; background: var(--warm-beige-2); text-align: center; }
.values-section h2 { margin-bottom: 40px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-item { background: var(--white); border-radius: 10px; padding: 24px 20px; font-size: .95rem; font-weight: 600; color: var(--dark-brown); box-shadow: 0 2px 10px rgba(0,0,0,.06); display: flex; align-items: center; gap: 12px; }
.value-item::before { content: "\2736"; color: var(--orange); font-size: 1rem; }
.inspiration-section { padding: var(--section-gap) 0; background: var(--warm-beige); text-align: center; }
.inspiration-section h2 { margin-bottom: 40px; }
.inspiration-section .container--narrow { max-width: 1100px; padding: 0 24px; }
.inspiration-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.inspiration-image { text-align: center; display: flex; justify-content: center; }
.inspiration-image img { width: 100%; max-width: 322px; height: auto; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.inspiration-text { text-align: left; width: 100%; }
.inspiration-text h3 { margin-bottom: 16px; }
.inspiration-text p { color: var(--text-light); font-size: 1.05rem; }
@media (max-width: 768px) {
  .inspiration-content { grid-template-columns: 1fr; gap: 40px; }
  .inspiration-image { text-align: center; }
  .inspiration-text { text-align: center; }
}

.work-overview { padding: var(--section-gap) 0; background: var(--warm-beige); text-align: center; }
.work-overview h2 { margin-bottom: 20px; }
.work-overview p { max-width: 680px; margin: 0 auto; color: var(--text-light); font-size: 1.05rem; }
.work-programs { padding: var(--section-gap) 0; background: var(--white); }
.work-program-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.work-program-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.work-program-item.reverse { direction: rtl; }
.work-program-item.reverse > * { direction: ltr; }
.work-program-img img { border-radius: 12px; width: 100%; height: 300px; object-fit: cover; }
.work-program-text h2 { margin-bottom: 16px; }
.work-program-text p { color: var(--text-light); font-size: 1.05rem; line-height: 1.8; }

.support-intro { padding: var(--section-gap) 0; background: var(--warm-beige); text-align: center; }
.support-intro h2 { margin-bottom: 20px; }
.support-intro p { max-width: 680px; margin: 0 auto; color: var(--text-light); font-size: 1.05rem; }
.impact-outcomes { padding: var(--section-gap) 0; background: var(--white); }
.impact-outcomes h2 { text-align: center; margin-bottom: 40px; }
.outcomes-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 760px; margin: 0 auto; }
.outcome-item { display: flex; align-items: flex-start; gap: 14px; background: var(--warm-beige); border-radius: 10px; padding: 20px; }
.outcome-icon { width: 32px; height: 32px; min-width: 32px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.outcome-icon svg { width: 16px; height: 16px; fill: white; }
.outcome-item p { margin: 0; font-size: .95rem; color: var(--text); }
.get-involved { padding: var(--section-gap) 0; background: var(--white); }
.get-involved h2 { text-align: center; margin-bottom: 48px; }
.involved-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.involved-card { background: var(--warm-beige); border-radius: 12px; padding: 40px; border-left: 4px solid var(--orange); }
.involved-card h3 { font-size: 1.3rem; color: var(--orange); margin-bottom: 16px; }
.involved-card p { color: var(--text); line-height: 1.8; }
.support-methods { padding: var(--section-gap) 0; background: var(--warm-beige-2); }
.support-methods h2 { text-align: center; margin-bottom: 48px; }
.support-cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
.support-card { background: var(--white); border-radius: 12px; padding: 36px 28px; text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,.07); display: flex; flex-direction: column; align-items: center; max-width: 100%; width: 100%; }
.support-card h3 { font-size: 1.2rem; color: var(--dark-brown); margin-bottom: 12px; }
.support-card p { color: var(--text-light); margin-bottom: 24px; font-size: .95rem; }
.support-card .btn { max-width: 300px; width: 100%; }
.paypal-card { padding: 48px 28px; }
.paypal-qr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 32px 0; width: 100%; }
.paypal-qr-item { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.paypal-qr-label { font-size: .95rem; font-weight: 600; color: var(--dark-brown); }
.paypal-qr-code { width: 134.4px; height: 134.4px; object-fit: contain; }
.paypal-qr-item .btn { max-width: 320px; width: 100%; padding: 14px 24px; font-size: .9rem; }
@media (max-width: 768px) {
  .paypal-qr-grid { grid-template-columns: 1fr; gap: 32px; }
  .paypal-qr-code { width: 117.6px; height: 117.6px; }
}
.bank-details { text-align: left; background: var(--warm-beige); border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.bank-details dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-light); margin-top: 10px; }
.bank-details dt:first-child { margin-top: 0; }
.bank-details dd { font-size: .9rem; font-weight: 600; color: var(--dark-brown); }
.trust-note { padding: 60px 0; background: var(--light-blue); text-align: center; }
.trust-note h2 { margin-bottom: 16px; }
.trust-note p { max-width: 600px; margin: 0 auto; color: var(--text-light); }

.contact-section { padding: var(--section-gap) 0; background: var(--warm-beige); }
.contact-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; }
.contact-form h2 { margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark-brown); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: .95rem; color: var(--text); background: var(--white); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(200,87,27,.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.wpcf7-form { margin: 0; box-sizing: border-box; }
.wpcf7-form * { box-sizing: border-box; }
.wpcf7-form-control-wrap { display: inline-block; width: calc(50% - 12px); margin-bottom: 24px; margin-right: 24px; vertical-align: top; }
.wpcf7-form-control-wrap:nth-child(even) { margin-right: 0; }
.wpcf7-form-control-wrap:nth-last-child(1),
.wpcf7-form-control-wrap:nth-last-child(2) { display: block; width: 100%; margin-right: 0; }
.wpcf7-form-control-wrap label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark-brown); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.wpcf7-form-control { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: .95rem; color: var(--text); background: var(--white); transition: border-color .2s; outline: none; }
.wpcf7-form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(200,87,27,.1); }
.wpcf7-textarea { resize: vertical; min-height: 130px; }
.wpcf7-submit { background: var(--orange); color: white; border: none; padding: 12px 32px; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: .95rem; transition: background .2s; }
.wpcf7-submit:hover { background: var(--orange-hover); }
.contact-info h2 { margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 44px; height: 44px; min-width: 44px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-detail-icon svg { width: 20px; height: 20px; fill: white; }
.contact-detail-text strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-light); margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { font-size: .95rem; color: var(--dark-brown); font-weight: 500; }

.newsletter-section { padding: 60px 0; background: var(--dark-brown); text-align: center; }
.newsletter-section h2 { color: var(--white); margin-bottom: 12px; }
.newsletter-section p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; align-items: center; }
.newsletter-form input { flex: 1; padding: 14px 20px; border-radius: 50px; border: none; font-size: .95rem; outline: none; }
.newsletter-form button { padding: 14px 28px; background: var(--orange); color: white; border: none; border-radius: 50px; font-weight: 600; cursor: pointer; font-size: .95rem; transition: background .2s; }
.newsletter-form button:hover { background: var(--orange-hover); }
.newsletter-section .wpcf7-form { display: flex !important; gap: 12px; max-width: 600px; margin: 0 auto; align-items: center; justify-content: center; flex-wrap: nowrap !important; }
.newsletter-section .wpcf7-form-control-wrap { display: inline-flex !important; flex: 1 !important; margin: 0 !important; max-width: 350px; vertical-align: middle; }
.newsletter-section .wpcf7-form-control { padding: 14px 20px; border-radius: 50px; border: none; font-size: .95rem; outline: none; width: 100% !important; display: inline-block !important; vertical-align: middle; }
.newsletter-section .wpcf7-form-control:focus { border: none; box-shadow: none; }
.newsletter-section .wpcf7-submit { padding: 14px 28px; background: var(--orange); color: white; border: none; border-radius: 50px; font-weight: 600; cursor: pointer; font-size: .95rem; transition: background .2s; white-space: nowrap; margin: 0 !important; display: inline-block !important; flex-shrink: 0; vertical-align: middle; }
.newsletter-section .wpcf7-submit:hover { background: var(--orange-hover); }
.newsletter-section .wpcf7-response-output { display: none; }
.newsletter-section .wpcf7 li { display: inline !important; margin: 0 !important; padding: 0 !important; }
.container--narrow { border-top: none; border-bottom: none; }

.quote-section { padding: var(--section-gap) 0; background: var(--warm-beige-2); text-align: center; position: relative; overflow: hidden; }
.quote-section-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .1; }
.quote-section .container--narrow { position: relative; }
.quote-text { margin: 0; padding: 0; }
.quote-text p { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 600; color: var(--dark-brown); margin-bottom: 20px; line-height: 1.6; font-style: italic; font-family: var(--font-heading); }
.quote-author { display: block; font-size: 1rem; color: var(--text-light); font-weight: 500; font-style: normal; }

.newsletter-form-wrapper { display: flex !important; gap: 12px; align-items: center; justify-content: center; flex-wrap: nowrap; max-width: 600px; margin: 0 auto; }
.newsletter-form-wrapper .wpcf7-form-control-wrap { flex: 1 !important; max-width: 300px; margin: 0 !important; }
.newsletter-form-wrapper .wpcf7-form-control { width: 100% !important; padding: 14px 20px; border-radius: 50px; border: none; font-size: .95rem; outline: none; display: block; }
.newsletter-form-wrapper .wpcf7-form-control:focus { border: none; box-shadow: none; }
.newsletter-form-wrapper .wpcf7-submit { padding: 14px 28px; background: var(--orange); color: white; border: none; border-radius: 50px; font-weight: 600; cursor: pointer; font-size: .95rem; transition: background .2s; white-space: nowrap; margin: 0 !important; }
.newsletter-form-wrapper .wpcf7-submit:hover { background: var(--orange-hover); }

.site-footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 44px; width: auto; }
.footer-logo-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: .8rem; font-weight: 700; transition: background .2s; }
.footer-social a:hover { background: var(--orange); }
.footer-col h4 { font-family: var(--font-body); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-contact p { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.footer-contact p strong { color: rgba(255,255,255,.85); }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--orange); }

@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .support-cards { grid-template-columns: 1fr; }
  .involved-cards { grid-template-columns: repeat(2, 1fr); }
  .founder-content { grid-template-columns: 1fr; }
  .founder-image { display: none; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-img { display: none; }
  .mv-grid { grid-template-columns: repeat(2, 1fr); }
  .work-program-item { grid-template-columns: 1fr; }
  .work-program-item.reverse { direction: ltr; }
  .work-program-img { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 56px; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px 24px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 999; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 16px; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { margin-left: 0; padding: 60px 24px; }
  .programs-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .outcomes-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .hero--page .btn-group { align-items: center; }
  .work-program-item { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; padding-bottom: 40px; }
  .work-program-item:last-child { margin-bottom: 0; padding-bottom: 0; }
  .work-program-item.reverse { direction: ltr; }
  .work-program-img { display: block !important; width: 100%; height: auto; margin-bottom: 0; }
  .work-program-img img { width: 100%; height: auto; object-fit: contain; border-radius: 12px; }
  .work-program-text { width: 100%; }
  .involved-cards { grid-template-columns: 1fr; gap: 24px; }
  .involved-card { padding: 24px; margin-bottom: 0; }
  .mv-grid { grid-template-columns: 1fr; }
  .founder-content { grid-template-columns: 1fr; }
  .founder-image { display: none !important; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-img { display: none !important; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .programs-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .involved-cards { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .work-program-item { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; padding-bottom: 40px; }
  .work-program-item:last-child { margin-bottom: 0; padding-bottom: 0; }
  .work-program-item.reverse { direction: ltr; }
  .work-program-img { display: block !important; width: 100%; height: auto; }
  .work-program-img img { width: 100%; height: auto; object-fit: contain; border-radius: 12px; }
  .work-program-text { width: 100%; }
  .involved-cards { grid-template-columns: 1fr; gap: 24px; }
  .involved-card { padding: 24px; margin-bottom: 0; }
  .founder-image { display: none !important; }
  .about-story-img { display: none !important; }
  .contact-inner { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: center; }



/* Payment Methods Grid */
.payment-methods-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 12px !important;
  margin: 20px 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  align-self: auto !important;
  min-width: 0 !important;
}

.support-card .payment-methods-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 12px !important;
  margin: 20px 0 !important;
  width: 100% !important;
  flex: none !important;
  min-width: 0 !important;
}

@media (max-width: 1024px) {
  .payment-methods-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .payment-methods-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 480px) {
  .payment-methods-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.payment-method-box {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  height: 80px;
  width: auto !important;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
}

.payment-method-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.payment-method-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  max-width: 100%;
}

.payment-logos-image {
  width: 75% !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 20px auto 40px !important;
  display: block !important;
  max-width: 480px !important;
}

@media (max-width: 768px) {
  .payment-method-box {
    min-height: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .payment-methods-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }
  
  .payment-method-box {
    min-height: 60px;
    height: 60px;
    padding: 4px;
  }
}


