*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

:root {
  --primary: #1a1a2e;
  --primary-dark: #0d0d1a;
  --primary-light: #f8f8ff;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --rose: #e8a0a0;
  --dark: #0d0d1a;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-600: #666;
  --white: #fff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.center { text-align: center; }
.mt-20 { margin-top: 20px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius-sm); font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.88rem; cursor: pointer; transition: all 0.25s ease; border: 1.5px solid transparent; letter-spacing: 1px; text-transform: uppercase; }
.btn-lg { padding: 15px 36px; font-size: 0.92rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--primary); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--gold); border-color: var(--gold); color: var(--primary); transform: translateY(-1px); }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }

.top-bar { background: var(--primary-dark); color: rgba(255,255,255,0.65); font-size: 0.78rem; padding: 8px 0; letter-spacing: 0.5px; }
.top-bar-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.top-bar span { display: flex; align-items: center; gap: 6px; }
.top-bar i { color: var(--gold); }

.header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon { width: 42px; height: 42px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; }
.logo-text { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1rem; color: var(--gray-600); display: block; line-height: 1; letter-spacing: 2px; text-transform: uppercase; }
.logo-text2 { font-family: 'Cormorant', serif; font-weight: 700; font-size: 1.3rem; color: var(--primary); display: block; line-height: 1; letter-spacing: 3px; text-transform: uppercase; }
.nav { display: flex; gap: 4px; }
.nav a { font-weight: 400; font-size: 0.82rem; color: var(--gray-600); padding: 8px 14px; border-radius: var(--radius-sm); transition: all 0.2s; letter-spacing: 1px; text-transform: uppercase; }
.nav a:hover { color: var(--primary); background: var(--gray-100); }
.hamburger { display: none; background: none; border: none; font-size: 1.4rem; color: var(--primary); cursor: pointer; padding: 8px; }

.mobile-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6); }
.mobile-overlay.active { display: flex; justify-content: flex-end; }
.mobile-menu { background: var(--white); width: 300px; height: 100%; padding: 40px 28px; display: flex; flex-direction: column; gap: 8px; animation: slideIn 0.3s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.2); }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-link { font-weight: 400; font-size: 0.95rem; color: var(--primary); padding: 12px 16px; border-radius: var(--radius-sm); transition: all 0.2s; letter-spacing: 1px; text-transform: uppercase; }
.mobile-link:hover { background: var(--gray-100); color: var(--gold); }
.close-btn { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--gray-600); align-self: flex-end; padding: 4px; margin-bottom: 16px; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(13,13,26,0.92) 0%, rgba(26,26,46,0.8) 60%, rgba(26,26,46,0.4) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 680px; padding: 100px 0; }
.hero-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 400; text-transform: uppercase; letter-spacing: 4px; color: var(--gold); margin-bottom: 24px; }
.hero-content h1 { font-family: 'Cormorant', serif; font-size: 4rem; font-weight: 400; line-height: 1.1; margin-bottom: 24px; }
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-lead { font-size: 1.05rem; line-height: 1.8; margin-bottom: 40px; opacity: 0.85; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.impact-bar { background: var(--primary); padding: 48px 0; border-top: 1px solid rgba(201,168,76,0.3); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.impact-item { text-align: center; color: var(--white); }
.impact-num { display: block; font-family: 'Cormorant', serif; font-size: 3rem; font-weight: 600; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
.impact-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 400; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 14px; }
.section-header h2 { font-family: 'Cormorant', serif; font-size: 2.8rem; font-weight: 600; color: var(--primary); line-height: 1.2; margin-bottom: 16px; }
.section-lead { font-size: 1.05rem; color: var(--gray-600); max-width: 680px; line-height: 1.8; font-weight: 300; }
.section-header.center .section-lead { margin: 0 auto; }

.about { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 0; box-shadow: var(--shadow-lg); width: 100%; height: 500px; object-fit: cover; }
.about-quote { background: var(--primary); color: var(--white); padding: 32px; margin-top: -60px; margin-right: -24px; position: relative; z-index: 1; box-shadow: var(--shadow-lg); }
.about-quote i { font-size: 1.5rem; color: var(--gold); margin-bottom: 12px; display: block; }
.about-quote p { font-family: 'Cormorant', serif; font-style: italic; font-size: 1.05rem; line-height: 1.7; margin-bottom: 12px; opacity: 0.9; }
.about-quote span { font-size: 0.78rem; color: var(--gold-light); font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }
.about-content { display: flex; flex-direction: column; gap: 28px; }
.about-block { display: flex; gap: 18px; align-items: flex-start; }
.about-icon { width: 44px; height: 44px; background: var(--primary-light); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.about-block h3 { font-family: 'Cormorant', serif; font-size: 1.2rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.about-block p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.75; font-weight: 300; }

.programs { background: var(--white); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.program-card { background: var(--white); overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.3s ease; }
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.program-icon-wrap { background: var(--primary); color: var(--gold); padding: 20px 24px; font-size: 1.5rem; }
.program-card img { width: 100%; height: 220px; object-fit: cover; }
.program-body { padding: 28px; }
.program-body h3 { font-family: 'Cormorant', serif; font-size: 1.3rem; font-weight: 600; color: var(--primary); margin-bottom: 10px; }
.program-body p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 18px; font-weight: 300; }
.program-link { font-size: 0.78rem; font-weight: 500; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; letter-spacing: 1px; text-transform: uppercase; }
.program-link:hover { gap: 10px; color: var(--primary); }

.cta-section { background: var(--primary); padding: 80px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-family: 'Cormorant', serif; font-size: 2.4rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.cta-text p { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.75; font-weight: 300; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.involve { background: var(--gray-50); }
.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.involve-card { background: var(--white); padding: 40px 28px; text-align: center; border: 1px solid var(--gray-200); transition: all 0.3s; }
.involve-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.involve-icon { width: 60px; height: 60px; background: var(--primary-light); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.4rem; margin: 0 auto 20px; }
.involve-card h3 { font-family: 'Cormorant', serif; font-size: 1.3rem; font-weight: 600; color: var(--primary); margin-bottom: 12px; }
.involve-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px; font-weight: 300; }

.footer { background: var(--primary-dark); color: rgba(255,255,255,0.65); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 48px; padding: 64px 0 48px; border-bottom: 1px solid rgba(201,168,76,0.2); }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand .footer-logo i { color: var(--gold); font-size: 1.2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; font-weight: 300; }
.footer-links h4, .footer-contact h4, .footer-legal h4 { font-size: 0.72rem; font-weight: 400; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 18px; }
.footer-links a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; font-weight: 300; }
.footer-contact p i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-email { color: var(--gold-light) !important; font-weight: 400; }
.footer-legal p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 6px; font-weight: 300; }
.footer-legal strong { color: var(--white); font-weight: 500; }
.tax-note { font-size: 0.78rem; opacity: 0.5; margin-top: 8px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.footer-bottom p { font-size: 0.78rem; letter-spacing: 0.5px; }
.scroll-top { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); width: 38px; height: 38px; cursor: pointer; font-size: 0.9rem; transition: all 0.3s; }
.scroll-top:hover { background: var(--gold); color: var(--primary); border-color: var(--gold); }

.modal-overlay { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.7); align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal { background: var(--white); padding: 40px; max-width: 520px; width: 100%; position: relative; animation: fadeUp 0.3s ease; max-height: 90vh; overflow-y: auto; }
.modal-small { max-width: 400px; text-align: center; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.modal-header { text-align: center; margin-bottom: 28px; }
.modal-icon { width: 56px; height: 56px; background: var(--primary-light); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.4rem; margin: 0 auto 16px; }
.modal h2 { font-family: 'Cormorant', serif; font-size: 1.8rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.modal p { color: var(--gray-600); font-size: 0.92rem; font-weight: 300; }
.modal .close-btn { position: absolute; top: 16px; right: 20px; font-size: 1.2rem; color: var(--gray-600); }
.modal form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal input, .modal textarea, .modal select { border: 1px solid var(--gray-200); padding: 12px 16px; font-family: 'Jost', sans-serif; font-size: 0.92rem; outline: none; transition: border-color 0.2s; background: var(--white); color: var(--primary); width: 100%; font-weight: 300; }
.modal input:focus, .modal textarea:focus, .modal select:focus { border-color: var(--gold); }
.ty-icon { font-size: 3.5rem; color: var(--gold); margin-bottom: 16px; }
.thank-you-content { display: flex; flex-direction: column; align-items: center; gap: 12px; }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 360px; }
  .about-quote { margin-right: 0; margin-top: -40px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-inner .btn { display: none; }
  .hamburger { display: block; }
  .hero-content h1 { font-size: 2.8rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .involve-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .top-bar-inner { flex-direction: column; gap: 6px; }
  .form-row { grid-template-columns: 1fr; }
}
