@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --ivory: #F8F5EE;
  --warm-white: #FDFBF7;
  --charcoal: #1C1C1E;
  --slate: #3A3A3C;
  --muted: #6E6E73;
  --gold: #B8936A;
  --gold-light: #D4AA85;
  --gold-pale: #F0E6D8;
  --border: #E5DDD0;
  --section-pad: 100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.7;
}

h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 20px 0;
  background: rgba(253,251,247,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  border-bottom-color: var(--border);
  padding: 13px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.04);
}
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--charcoal) !important;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.navbar-brand span { color: var(--gold); }
.nav-link {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate) !important;
  padding: 6px 14px !important;
  transition: color 0.25s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active-page::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active-page { color: var(--gold) !important; }
.nav-donate {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff !important; background: var(--charcoal);
  padding: 10px 24px !important; border-radius: 0;
  transition: background 0.3s;
}
.nav-donate:hover { background: var(--gold) !important; color: #fff !important; }
.nav-donate::after { display: none; }

/* ─── SECTION ─── */
.section { padding: var(--section-pad) 0; }
.section-ivory { background: var(--ivory); }
.section-white { background: var(--warm-white); }
.section-dark { background: var(--charcoal); }

/* ─── EYEBROW ─── */
.eyebrow {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow-center { justify-content: center; }

/* ─── SECTION TITLE ─── */
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.03em;
  color: var(--charcoal); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title-light { color: #fff; }
.section-title-light em { color: var(--gold-light); }

.section-body {
  color: var(--muted); font-size: 0.93rem; line-height: 1.9;
}

/* ─── BUTTONS ─── */
.btn-cvf {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #fff;
  padding: 14px 32px; font-size: 0.75rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.3s; font-family: 'DM Sans', sans-serif;
}
.btn-cvf:hover { background: var(--charcoal); color: #fff; transform: translateY(-1px); }
.btn-cvf-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--charcoal);
  padding: 14px 32px; font-size: 0.75rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--border); cursor: pointer;
  text-decoration: none; transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
}
.btn-cvf-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-cvf-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.65);
  padding: 14px 32px; font-size: 0.75rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18); cursor: pointer;
  text-decoration: none; transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
}
.btn-cvf-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--gold);
  padding: 14px 36px; font-size: 0.75rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.3s; font-family: 'DM Sans', sans-serif;
}
.btn-white:hover { background: var(--charcoal); color: #fff; }

/* ─── PROGRAM CARDS ─── */
.program-card {
  background: var(--warm-white); border: 1px solid var(--border);
  padding: 40px 36px; transition: all 0.4s; height: 100%;
}
.program-card:hover {
  border-color: var(--gold); transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(184,147,106,0.13);
}
.program-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; margin-bottom: 28px;
  font-size: 1.1rem; color: var(--gold); transition: all 0.3s;
}
.program-card:hover .program-icon { background: var(--gold); border-color: var(--gold); color: #fff; }
.program-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500; margin-bottom: 12px; color: var(--charcoal);
}
.program-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.85; }
.program-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-top: 24px; text-decoration: none; transition: gap 0.25s;
}
.program-link:hover { gap: 14px; color: var(--gold); }

/* ─── IMAGE UTILITIES ─── */
.img-cover {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.img-frame {
  overflow: hidden; position: relative;
}
.img-frame img { transition: transform 0.6s ease; }
.img-frame:hover img { transform: scale(1.04); }

/* ─── PARTNER ROW ─── */
.partner-item {
  display: flex; align-items: center; justify-content: center;
  padding: 24px; border: 1px solid var(--border);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; letter-spacing: 0.06em; color: var(--muted);
  transition: all 0.3s; height: 72px; text-align: center;
}
.partner-item:hover { border-color: var(--gold); color: var(--gold); }

/* ─── JOIN BANNER ─── */
.join-banner { background: var(--gold); padding: 80px 0; text-align: center; }
.join-banner-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400;
  color: #fff; margin-bottom: 32px; letter-spacing: -0.02em;
}
.join-banner-text em { font-style: italic; }

/* ─── FOOTER ─── */
footer {
  background: #111111; padding: 68px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: #fff; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 14px; display: block;
}
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.28); max-width: 250px; line-height: 1.8; }
.footer-heading {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.footer-link {
  display: block; color: rgba(255,255,255,0.38); font-size: 0.84rem;
  text-decoration: none; padding: 5px 0; transition: color 0.25s;
}
.footer-link:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px; margin-top: 52px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.74rem; color: rgba(255,255,255,0.18); }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); text-decoration: none; transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--charcoal);
  padding: 150px 0 90px;
  position: relative; overflow: hidden;
}
.page-hero-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(184,147,106,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,147,106,0.05) 1px, transparent 1px);
  background-size: 70px 70px;
}
.page-hero-accent {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 38%; background: rgba(184,147,106,0.04);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300; color: #fff; line-height: 1.05;
  letter-spacing: -0.03em;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-body {
  color: rgba(255,255,255,0.42); font-size: 0.93rem;
  max-width: 480px; line-height: 1.85; margin-top: 18px;
}
.breadcrumb-cvf {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 20px;
}
.breadcrumb-cvf a { color: var(--gold); text-decoration: none; }
.breadcrumb-cvf span { color: rgba(255,255,255,0.18); }

/* ─── TESTIMONIAL ─── */
.testimonial-wrap {
  background: var(--ivory); padding: 60px;
  position: relative; overflow: hidden;
}
.testimonial-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem; color: var(--gold-pale);
  position: absolute; top: -15px; left: 36px; line-height: 1; pointer-events: none;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2vw, 1.4rem); font-style: italic;
  font-weight: 400; color: var(--charcoal); line-height: 1.75; position: relative; z-index: 1;
}
.testimonial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 500; color: var(--charcoal);
}
.testimonial-role {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-top: 4px;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── CONTACT FORM ─── */
.contact-form-wrap { background: var(--charcoal); padding: 60px; }
.form-label-cvf {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 8px; display: block;
}
.form-control-cvf {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); padding: 13px 16px;
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.3s; border-radius: 0;
  -webkit-appearance: none;
}
.form-control-cvf:focus { border-color: var(--gold); }
.form-control-cvf::placeholder { color: rgba(255,255,255,0.22); }
.form-control-cvf option { background: #2a2a2a; color: #fff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  :root { --section-pad: 70px; }
}
@media (max-width: 767px) {
  :root { --section-pad: 56px; }
  .testimonial-wrap { padding: 40px 28px; }
  .contact-form-wrap { padding: 36px 24px; }
}
@media (max-width: 575px) {
  .page-hero { padding: 130px 0 60px; }
}
