*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: #FDFCF7; color: #0A0A0A; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: #B38B59; color: #fff; }

/* NAV */
#navbar { position: fixed; top: 0; width: 100%; z-index: 50; transition: all .5s; padding: 2rem 0; background: transparent; }
#navbar.scrolled, #navbar.opaque { background: rgba(10,10,10,.95); padding: 1rem 0; box-shadow: 0 4px 30px rgba(0,0,0,.3); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: .5rem; cursor: pointer; }
.logo-img { height: 42px; width: 42px; object-fit: contain; border-radius: 50%; }
.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #B38B59;
  margin-left: .75rem;
  border-left: 1px solid #B38B59;
  padding-left: .75rem;
  line-height: 1.4;
}
.logo-leaders { color: inherit; }
.logo-epanouis { color: inherit; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.btn-don-nav { padding: .5rem 1.5rem; border: 1px solid #B38B59; color: #B38B59; font-size: .55rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; transition: all .3s; }
.btn-don-nav:hover { background: #B38B59; color: #fff; }
.hamburger { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; padding: .5rem; }
.bar { display: block; height: 2px; transition: all .3s; }
.bar-gold { width: 2rem; background: #B38B59; }
.bar-white { width: 1.25rem; background: #fff; }
.bar-white:hover { width: 2rem; }

/* SIDE MENU */
#overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.8); z-index: 100; backdrop-filter: blur(4px); }
#side-menu { position: fixed; top: 0; right: -100%; width: min(380px,100%); height: 100%; background: #0A0A0A; z-index: 101; padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; transition: right .5s cubic-bezier(.4,0,.2,1); }
#side-menu.open { right: 0; }
#overlay.open { display: block; }
.close-btn { position: absolute; top: 2rem; right: 2rem; color: rgba(255,255,255,.5); font-size: 2rem; line-height: 1; transition: color .3s; }
.close-btn:hover { color: #B38B59; }
.menu-label { color: #B38B59; font-size: .55rem; font-weight: 700; letter-spacing: .6em; text-transform: uppercase; margin-bottom: 1rem; margin-top: 3rem; }
.menu-links { display: flex; flex-direction: column; gap: 1.5rem; }
.menu-links button { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-style: italic; color: #fff; text-align: left; transition: all .3s; }
.menu-links button:hover { color: #B38B59; transform: translateX(8px); }
.menu-links button.active { color: #B38B59; }
.menu-footer { display: flex; flex-direction: column; gap: 2rem; }
.btn-don-menu { width: 100%; padding: 1.25rem; background: #B38B59; color: #fff; font-weight: 700; letter-spacing: .4em; font-size: .65rem; text-transform: uppercase; transition: all .3s; }
.btn-don-menu:hover { background: #fff; color: #0A0A0A; }
.social-icons { display: flex; gap: 1.5rem; color: rgba(255,255,255,.3); font-size: .85rem; font-weight: 700; }
.social-icons span { cursor: pointer; transition: color .3s; letter-spacing: .1em; }
.social-icons span:hover { color: #B38B59; }

/* VIEWS */
#app { min-height: 100vh; }
.view { animation: fadeUp .8s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* FOOTER */
footer { background: #0A0A0A; color: #fff; padding: 4rem 2rem; border-top: 1px solid rgba(255,255,255,.05); }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 2rem; }
footer p { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.footer-icons { display: flex; gap: 1rem; color: rgba(255,255,255,.3); font-size: 1.1rem; }
.footer-icons span { cursor: pointer; transition: color .3s; }
.footer-icons span:hover { color: #B38B59; }
.footer-social { display: flex; gap: 1.25rem; }
.social-btn { 
  display: flex; align-items: center; justify-content: center; 
  width: 40px; height: 40px; 
  border: 1px solid rgba(179,139,89,0.3); color: #B38B59; 
  text-decoration: none; border-radius: 50%; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  background: transparent; padding: 10px;
}
.social-btn svg { width: 100%; height: 100%; transition: transform 0.4s ease; }
.social-btn:hover { 
  background: #B38B59; color: #fff; 
  transform: translateY(-5px); 
  box-shadow: 0 8px 20px rgba(179,139,89,0.4); 
  border-color: #B38B59;
}
.social-btn:hover svg { transform: scale(1.1); }

/* ========= HOME ========= */
/* Hero */
.hero { position: relative; background: #0A0A0A; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; padding-top: 5rem; width: 100%; }
.hero-eyebrow { color: #B38B59; font-size: .68rem; letter-spacing: .7em; text-transform: uppercase; font-weight: 700; margin-bottom: 3rem; }
.hero-title { font-size: clamp(2.5rem,7vw,4.5rem); font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 2rem; letter-spacing: -.02em; }
.hero-title em { color: #B38B59; font-style: italic; font-weight: 300; }
.hero-description { font-size: 1.15rem; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.6; max-width: 42rem; margin-bottom: 3.5rem; letter-spacing: 0.02em; }
.hero-ctas { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.btn-primary { padding: 1.25rem 3rem; font-size: .68rem; font-weight: 700; text-transform: uppercase; background: #B38B59; color: #fff; letter-spacing: .05em; transition: all .3s; }
.btn-primary:hover { background: #fff; color: #0A0A0A; }
.btn-outline { padding: 1.25rem 3rem; font-size: .68rem; font-weight: 700; text-transform: uppercase; border: 1px solid rgba(255,255,255,.2); color: #fff; letter-spacing: .05em; transition: all .3s; }
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* News Slider */
.news-section { position: relative; background: #0A0A0A; min-height: 80vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; border-top: 1px solid rgba(255,255,255,.05); }
.news-bg { position: absolute; inset: 0; z-index: 0; opacity: 0; transition: opacity 1s; }
.news-bg.active { opacity: 1 !important; }
.news-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: brightness(0.8) !important; transition: filter 1s; }
.stars-bg { 
  background: #000; 
  background-image: 
    radial-gradient(1px 1px at 20px 30px, #B38B59, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 100px 150px, #B38B59, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 200px 80px, #B38B59, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 50px 200px, #B38B59, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 300px 250px, #B38B59, rgba(0,0,0,0));
  background-size: 250px 250px;
}
.news-gradient { position: absolute; inset: 0; background: rgba(10, 10, 10, 0.25); }
.news-inner { max-width: 1280px; margin: 0 auto; padding: 4rem 2rem; width: 100%; position: relative; z-index: 1; }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.news-title-block p { color: #B38B59; font-size: .55rem; letter-spacing: .4em; text-transform: uppercase; font-weight: 700; margin-bottom: .5rem; }
.news-title-block h2 { font-size: 1.2rem; font-family: 'Playfair Display', serif; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .1em; font-style: italic; }
.news-arrows { display: flex; gap: 1rem; }
.arrow-btn { width: 3rem; height: 3rem; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; transition: all .3s; }
.arrow-btn:hover { background: #B38B59; border-color: #B38B59; color: #fff; }
.news-slide { display: none; }
.news-slide.active { display: block; animation: fadeUp .6s ease forwards; }
.news-tag { display: inline-block; background: #B38B59; color: #fff; font-size: .55rem; font-weight: 700; padding: .4rem 1rem; letter-spacing: .2em; text-transform: uppercase; }
.news-date { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,.5); margin-left: 1rem; }
.news-headline { font-size: clamp(2rem,6vw,4.5rem); font-family: 'Playfair Display', serif; font-weight: 700; color: #fff; margin: 1.5rem 0; line-height: 1.1; }
.news-desc { font-size: 1rem; color: rgba(255,255,255,.7); font-weight: 300; font-style: italic; max-width: 36rem; line-height: 1.8; }

/* Quote Slide Styles */
.is-quote .quote-content { font-size: clamp(1.5rem, 3.5vw, 2.8rem); font-family: 'Playfair Display', serif; font-style: italic; color: #B38B59; margin: 2rem 0; line-height: 1.3; position: relative; max-width: 58rem; }
.is-quote .quote-content::before { content: '“'; position: absolute; left: -3.5rem; top: -1.5rem; font-size: 7rem; color: #B38B59; opacity: .15; }
.quote-author { font-size: 1rem; color: #fff; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; opacity: .8; }
.news-progress { display: flex; align-items: center; gap: 1.5rem; margin-top: 3rem; }
.news-progress span { font-size: .6rem; font-weight: 700; color: rgba(0,0,0,.2); }
.progress-bar { flex: 1; max-width: 200px; height: 1px; background: rgba(0,0,0,.1); position: relative; }
.progress-fill { height: 100%; background: #B38B59; transition: width .5s; }

/* Valeurs Accueil */
.values-home { padding: 8rem 2rem; text-align: center; background: #FDFCF7; }
.values-home .eyebrow { color: #B38B59; font-size: .68rem; letter-spacing: .8em; text-transform: uppercase; font-weight: 700; margin-bottom: 2rem; }
.values-home h2 { font-size: clamp(3rem,8vw,5.5rem); font-family: 'Playfair Display', serif; font-weight: 700; color: #0A0A0A; margin-bottom: 3rem; }
.values-home h2 em { color: #B38B59; font-style: italic; font-weight: 300; }
.values-home blockquote { font-size: clamp(1rem,2.5vw,1.5rem); color: rgba(0,0,0,.8); font-weight: 300; font-style: italic; line-height: 1.8; max-width: 56rem; margin: 0 auto; letter-spacing: .03em; }

/* CTA Soutenir */
.cta-section { padding: 7rem 2rem; background: #0A0A0A; color: #fff; position: relative; overflow: hidden; }
.cta-section::after { content: ''; position: absolute; top: 0; right: 0; width: 25%; height: 100%; background: rgba(179,139,89,.05); transform: skewX(12deg) translateX(5rem); pointer-events: none; }
.cta-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.cta-eyebrow { color: #B38B59; font-size: .62rem; font-weight: 700; letter-spacing: .6em; text-transform: uppercase; margin-bottom: 1rem; }
.cta-title { font-size: clamp(2.5rem,5vw,4.5rem); font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic; line-height: 1.1; }
.cta-title span { color: #B38B59; font-style: normal; text-transform: uppercase; }
.cta-text { font-size: 1.1rem; color: rgba(255,255,255,.6); font-weight: 300; line-height: 1.8; max-width: 36rem; margin-top: 2rem; }
.btn-cta-gold { margin-top: 2.5rem; display: inline-flex; align-items: center; gap: 2rem; padding: 1.5rem 3rem; background: #B38B59; color: #fff; font-weight: 700; font-size: .68rem; letter-spacing: .5em; text-transform: uppercase; transition: all .5s; }
.btn-cta-gold:hover { background: #fff; color: #0A0A0A; gap: 3rem; }
.cta-box { border: 1px solid rgba(179,139,89,.2); padding: 3rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2rem; position: relative; }
.cta-box::before,.cta-box::after { content: ''; position: absolute; width: 3rem; height: 3rem; }
.cta-box::before { top: -1rem; left: -1rem; border-top: 1px solid #B38B59; border-left: 1px solid #B38B59; }
.cta-box::after { bottom: -1rem; right: -1rem; border-bottom: 1px solid #B38B59; border-right: 1px solid #B38B59; }
.cta-box-icon { font-size: 5rem; opacity: .3; }
.cta-box-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; color: rgba(255,255,255,.8); }
.cta-divider { width: 3rem; height: 1px; background: #B38B59; }

/* ========= ABOUT ========= */
.page-hero { background: #0A0A0A; color: #fff; padding: 12rem 2rem 5rem; border-bottom: 1px solid rgba(179,139,89,.2); }
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-eyebrow { color: #B38B59; font-size: .62rem; font-weight: 700; letter-spacing: .8em; text-transform: uppercase; margin-bottom: 1.5rem; }
.page-title { font-size: clamp(2.5rem,6vw,4rem); font-family: 'Playfair Display', serif; font-weight: 700; max-width: 56rem; line-height: 1.2; }
.page-title em { color: #B38B59; font-style: italic; font-weight: 300; }

.about-hero-white { background: #FFFFFF; color: #0A0A0A; border-bottom: 1px solid #eee; }
.about-hero-white .page-title { color: #0A0A0A; }

.about-who { padding: 5rem 2rem; background: #0A0A0A; }
.about-who-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 7fr 5fr; gap: 4rem; align-items: center; }
.about-who h2 { font-size: clamp(1.5rem,3vw,2.5rem); font-family: 'Playfair Display', serif; font-weight: 700; color: #B38B59; text-transform: uppercase; margin-bottom: 2rem; }
.about-who p { color: rgba(255,255,255,.7); font-size: 1.05rem; font-weight: 300; line-height: 1.8; margin-bottom: 1.2rem; }
.about-who p strong { color: #fff; font-weight: 500; }
.about-img { width: 100%; height: auto; object-fit: contain; }

.about-vision { padding: 5rem 2rem; background: #FDFCF7; text-align: center; border-bottom: 1px solid rgba(0,0,0,.05); }
.about-vision-inner { max-width: 56rem; margin: 0 auto; }
.about-vision h2 { color: #B38B59; font-size: .75rem; font-weight: 700; letter-spacing: .5em; text-transform: uppercase; margin: 1.5rem 0; }
.about-vision blockquote { font-size: clamp(1.2rem,3vw,2rem); font-family: 'Playfair Display', serif; font-style: italic; color: #0A0A0A; line-height: 1.7; }

.about-mission { padding: 6rem 2rem; background: #fff; border-bottom: 1px solid rgba(0,0,0,.05); }
.about-mission-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-mission h2 { font-size: clamp(2rem,4vw,3rem); font-family: 'Playfair Display', serif; font-weight: 700; color: #B38B59; text-transform: uppercase; margin-bottom: 1.5rem; }
.about-mission-quote { font-size: clamp(1.2rem,3vw,2rem); font-family: 'Playfair Display', serif; font-style: italic; color: #0A0A0A; line-height: 1.4; }
.about-mission-quote span { color: #B38B59; }
.about-mission-text { font-size: 1.1rem; color: rgba(0,0,0,.7); font-weight: 300; line-height: 1.8; }
.mission-divider { width: 6rem; height: 1px; background: #B38B59; margin-top: 2rem; }

.about-values { padding: 6rem 2rem; background: #FDFCF7; }
.about-values-inner { max-width: 1280px; margin: 0 auto; }
.about-values h2 { font-size: clamp(1.5rem,3vw,2.5rem); font-family: 'Playfair Display', serif; font-weight: 700; color: #B38B59; text-transform: uppercase; margin-bottom: 1rem; }
.about-values .subtitle { font-size: 1.1rem; color: rgba(0,0,0,.6); font-style: italic; font-weight: 300; margin-bottom: 4rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.value-card { padding: 2rem; background: #fff; border: 1px solid rgba(0,0,0,.05); transition: border-color .5s; }
.value-card:hover { border-color: rgba(179,139,89,.3); }
.value-icon { font-size: 1.5rem; margin-bottom: 1.5rem; }
.value-card h3 { font-size: 1rem; font-family: 'Playfair Display', serif; font-weight: 700; color: #0A0A0A; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.value-card p { font-size: .85rem; color: rgba(0,0,0,.5); font-weight: 300; line-height: 1.6; }

/* ========= PROGRAMS ========= */
.program-item { padding: 5rem 2rem; }
.program-item:nth-child(odd) { background: #fff; }
.program-item:nth-child(even) { background: #FDFCF7; }
.program-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.program-inner.reverse .program-text { order: 2; }
.program-inner.reverse .program-img-wrap { order: 1; }
.program-icon { color: #B38B59; font-size: 1.75rem; margin-bottom: .75rem; }
.program-text h2 { font-size: clamp(1.5rem,3vw,2.5rem); font-family: 'Playfair Display', serif; font-weight: 700; color: #B38B59; text-transform: uppercase; margin-bottom: 1.5rem; }
.program-text p { font-size: 1.05rem; color: rgba(0,0,0,.7); font-weight: 300; line-height: 1.8; }
.program-img-wrap { aspect-ratio: 16/9; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,.15); }
.program-img-wrap img { width: 100%; height: 100%; object-fit: cover; background: #fff; transition: all .3s; filter: grayscale(100%); }

.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: transparent;
  color: #0A0A0A;
  border: 1px solid #B38B59;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-youtube:hover {
  background: #B38B59;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(179,139,89,0.15);
}
.btn-youtube .yt-icon {
  font-size: 1.1rem;
  color: #FF0000;
  transition: color 0.3s;
}
.btn-youtube:hover .yt-icon {
  color: #fff;
}

/* ========= TEAM ========= */
.team-member { padding: 4rem 2rem; border-bottom: 1px solid rgba(0,0,0,.05); min-height: 65vh; display: flex; align-items: center; }
.team-member.dark { background: #0A0A0A; color: #fff; }
.team-member.light { background: #fff; color: #0A0A0A; }
.team-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; align-items: center; width: 100%; }
.team-inner.reverse { grid-template-columns: 7fr 5fr; }
.team-inner.reverse .member-photo-wrap { order: 2; }
.team-inner.reverse .member-info { order: 1; }
.member-photo-wrap { position: relative; }
.member-photo { aspect-ratio: 4/5; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,.3); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: filter 1s; image-rendering: -webkit-optimize-contrast; filter: contrast(1.1) brightness(1.03) saturate(1.05); }
.photo-corner-tl,.photo-corner-br { position: absolute; width: 6rem; height: 6rem; border-color: #B38B59; border-style: solid; opacity: .6; }
.photo-corner-tl { top: -1.5rem; left: -1.5rem; border-width: 2px 0 0 2px; }
.photo-corner-br { bottom: -1.5rem; right: -1.5rem; border-width: 0 2px 2px 0; }
.member-role { color: #B38B59; font-size: .68rem; font-weight: 700; letter-spacing: .5em; text-transform: uppercase; margin-bottom: 1rem; }
.member-name { font-size: clamp(2rem,5vw,4rem); font-family: 'Playfair Display', serif; font-weight: 700; text-transform: uppercase; letter-spacing: -.04em; line-height: 1; margin-bottom: .75rem; }
.dark .member-name { color: #fff; }
.light .member-name { color: #0A0A0A; }
.member-org { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; opacity: .4; margin-bottom: 2.5rem; }
.member-bio { font-size: 1rem; font-weight: 300; line-height: 1.8; text-align: justify; }
.dark .member-bio { color: rgba(255,255,255,.8); }
.light .member-bio { color: rgba(0,0,0,.7); }
.member-bio::first-letter { font-size: 3.5rem; font-family: 'Playfair Display', serif; color: #B38B59; float: left; margin-right: 1rem; line-height: 1; }
.member-socials { display: flex; gap: 1.5rem; margin-top: 2rem; }
.member-socials span { font-size: .75rem; font-weight: 700; opacity: .4; cursor: pointer; transition: all .3s; letter-spacing: .1em; }
.member-socials span:hover { color: #B38B59; opacity: 1; }

/* ========= CONTACT ========= */
.contact-section { padding: 5rem 2rem; }
.contact-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
.contact-info blockquote { font-size: clamp(1.2rem,2.5vw,1.7rem); font-family: 'Playfair Display', serif; font-style: italic; color: #0A0A0A; line-height: 1.6; margin-bottom: 1.5rem; }
.contact-info p { font-size: 1.05rem; color: rgba(0,0,0,.6); font-weight: 300; }
.contact-details { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,.05); display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; }
.contact-detail .icon { color: #B38B59; font-size: 1.1rem; }
.contact-detail span { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.contact-detail.email span { color: #0A0A0A; }
.contact-detail.loc span { color: rgba(0,0,0,.4); }

.contact-form-wrap { background: #fff; padding: 3rem; box-shadow: 0 25px 60px rgba(0,0,0,.08); border: 1px solid rgba(0,0,0,.03); }
.form-group { margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
label { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: #B38B59; margin-bottom: .5rem; }
input, select, textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(0,0,0,.1); padding: 1rem 0; font-family: 'Montserrat', sans-serif; font-size: .9rem; color: #0A0A0A; outline: none; transition: border-color .3s; }
input:focus, select:focus, textarea:focus { border-color: #B38B59; }
textarea { border: 1px solid rgba(0,0,0,.05); padding: 1rem; resize: none; }
textarea:focus { border-color: #B38B59; }
select option { color: #0A0A0A; }
.btn-submit { width: 100%; padding: 1.5rem; background: #0A0A0A; color: #fff; font-weight: 700; font-size: .68rem; letter-spacing: .5em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 1rem; transition: all .3s; }
.btn-submit:hover { background: #B38B59; }
.success-msg { padding: 5rem 2rem; text-align: center; }
.success-msg .tick { font-size: 3rem; color: #B38B59; margin-bottom: 1.5rem; }
.success-msg h2 { font-size: 2rem; font-family: 'Playfair Display', serif; font-style: italic; margin-bottom: 1rem; }
.success-msg p { color: rgba(0,0,0,.5); }

/* ========= DONATION ========= */
.donation-section { padding: 5rem 2rem; }
.donation-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
.donation-info blockquote { font-size: 1.4rem; font-family: 'Playfair Display', serif; font-style: italic; color: #0A0A0A; line-height: 1.6; margin-bottom: 1.5rem; }
.donation-info p { color: rgba(0,0,0,.6); font-weight: 300; line-height: 1.7; }
.donation-quote-box { margin-top: 2rem; background: #fff; padding: 1.5rem; border: 1px solid rgba(0,0,0,.05); }
.donation-quote-box p { font-size: .9rem; font-style: italic; color: rgba(0,0,0,.5); font-weight: 300; }
.donation-form-wrap { background: #fff; padding: 3rem; box-shadow: 0 25px 60px rgba(0,0,0,.08); border: 1px solid rgba(0,0,0,.03); }
.amount-input { font-size: 1.5rem; font-family: 'Playfair Display', serif; font-style: italic; }
.secure-label { display: flex; align-items: center; gap: .75rem; color: #B38B59; font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.5rem; }
.btn-don-submit { width: 100%; padding: 1.5rem; background: #B38B59; color: #fff; font-weight: 700; font-size: .68rem; letter-spacing: .5em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 1rem; transition: all .3s; }
.btn-don-submit:hover { background: #0A0A0A; }

/* ========= RESPONSIVE ========= */
@media (max-width: 900px) {
  .about-who-inner, .about-mission-inner, .cta-inner, .contact-inner, .donation-inner, .program-inner, .team-inner { grid-template-columns: 1fr; }
  .cta-box, .program-inner.reverse .program-text, .program-inner.reverse .program-img-wrap, .team-inner.reverse .member-photo-wrap, .team-inner.reverse .member-info { order: unset; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .btn-don-nav { display: none; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
}
