@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,700;1,900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ─── Design Tokens ─── */
:root {
  --brown:         #603913;
  --cream:         #FFF3EA;
  --gold:          #E1B96A;
  --text-on-brown: #FFF3EA;
  --text-on-cream: #603913;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-pill:   999px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Poppins', sans-serif; background: var(--brown); color: var(--text-on-brown); overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ─── Typography base ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; font-weight: 900; }
p               { line-height: 1.75; }

/* ─── Layout ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ─── Section bases ─── */
.section-brown { background: var(--brown); color: var(--text-on-brown); padding: 72px 0; }
.section-cream  { background: var(--cream);  color: var(--text-on-cream); padding: 72px 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
              background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 185, 106, 0.3);
}

/* ─── Arrow slide-out / slide-in animation ─── */
.btn-arrow {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.btn:hover .btn-arrow {
  animation: arrow-loop 0.45s ease forwards;
}

@keyframes arrow-loop {
  0%   { transform: translate(0, 0);       opacity: 1; }
  45%  { transform: translate(10px, -10px); opacity: 0; }
  46%  { transform: translate(-10px, 10px); opacity: 0; }
  100% { transform: translate(0, 0);       opacity: 1; }
}

/* ─── Inline gold highlight (reusable) ─── */
.hl { color: var(--gold); font-weight: 600; }

/* ─── Section Images ─── */
.section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* ─── Image Placeholders ─── */
.img-placeholder {
  background: rgba(255, 243, 234, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 243, 234, 0.3);
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.img-placeholder.cream-ctx {
  background: rgba(96, 57, 19, 0.1);
  color: rgba(96, 57, 19, 0.3);
}

/* ─── NAVBAR ─── */
.navbar {
  background: var(--brown);
  height: 60px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 243, 234, 0.08);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-on-brown);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-on-brown);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--brown);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(225, 185, 106, 0.4);
  color: var(--brown);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-brown);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--brown);
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 243, 234, 0.1);
  padding: 12px 0 20px;
  z-index: 999;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 12px 48px;
  font-size: 0.95rem;
  color: var(--text-on-brown);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-cta { margin: 12px 48px 0; text-align: center; display: block; }

/* ─── HERO ─── */
.hero-section { padding: 64px 0 72px; }

.hero-brand {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}

.hero-logo-icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.hero-heading {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 900;
  color: var(--text-on-brown);
  line-height: 1.1;
}

.hero-heading em {
  font-style: italic;
  font-weight: 800;
}

.hero-cta-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.hero-img {
  width: 100%;
  aspect-ratio: 16 / 6.5;
}

/* ─── ABOUT US ─── */
.about-section { padding: 72px 0; }

.about-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.about-text {
  font-size: 0.875rem;
  color: rgba(255, 243, 234, 0.82);
  margin-bottom: 28px;
}

.about-img {
  aspect-ratio: 4 / 3;
  min-height: 260px;
}

/* ─── FOUNDER'S NOTE ─── */
.founder-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.founder-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(96, 57, 19, 0.82);
  margin-bottom: 24px;
}

.founder-attribution {
  margin-top: 18px;
  font-size: 0.8rem;
  color: rgba(96, 57, 19, 0.5);
  font-weight: 500;
}

.founder-img {
  aspect-ratio: 3 / 4;
  max-height: 360px;
}

/* ─── CREATING LASTING IMPACT ─── */
.impact-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.impact-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 243, 234, 0.9);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 28px;
}

.impact-attribution {
  margin-top: 18px;
  font-size: 0.8rem;
  color: rgba(255, 243, 234, 0.52);
  line-height: 1.6;
}

.impact-img {
  aspect-ratio: 3 / 4;
  max-height: 360px;
}

/* ─── BECOME A VOLUNTEER ─── */
.volunteer-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.volunteer-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(96, 57, 19, 0.78);
  margin-bottom: 28px;
}

.volunteer-text .highlight {
  color: var(--brown);
  font-weight: 600;
}

.volunteer-img {
  aspect-ratio: 4 / 3;
  min-height: 260px;
}

/* ─── OUR KEY CAUSES ─── */
.causes-section { text-align: center; }

.causes-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 52px;
}

.causes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}

.cause-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.cause-icon { font-size: 1.5rem; }

.cause-indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.cause-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cause-text {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255, 243, 234, 0.7);
}

/* ─── WE ARE HERE FOR YOUR SUPPORT ─── */
.support-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 40px;
}

.support-img {
  width: 100%;
  aspect-ratio: 16 / 6.5;
}

/* ─── BLOGS ─── */
.blogs-section { text-align: center; }

.blogs-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 48px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
  margin-bottom: 40px;
}

.blog-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

/* ─── QUOTE ─── */
.quote-section { padding: 72px 0; text-align: center; }

.quote-logo {
  width: 68px;
  height: 68px;
  margin: 0 auto 32px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  color: var(--text-on-brown);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.65;
}

.quote-attribution {
  font-size: 0.82rem;
  color: rgba(255, 243, 234, 0.6);
}

/* ─── GALLERY ─── */
.gallery-section { padding: 0 0 80px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
}

/* ─── NEWSLETTER ─── */
.newsletter-section { padding: 80px 0; }

.newsletter-card {
  background: var(--brown);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-heading {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text-on-brown);
  margin-bottom: 10px;
}

.newsletter-sub {
  font-size: 0.84rem;
  color: var(--gold);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  background: rgba(255, 243, 234, 0.12);
  color: var(--text-on-brown);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: background 0.2s;
}

.newsletter-input::placeholder { color: rgba(255, 243, 234, 0.4); }
.newsletter-input:focus { background: rgba(255, 243, 234, 0.18); }

.newsletter-btn {
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--gold);
  color: var(--brown);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  transition: filter 0.2s;
}

.newsletter-btn:hover { filter: brightness(1.08); }

/* ─── FOOTER ─── */
.footer {
  background: var(--brown);
  color: var(--text-on-brown);
  padding: 64px 48px 28px;
  border-top: 1px solid rgba(255, 243, 234, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-wrap img {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 243, 234, 0.6);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 210px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 243, 234, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}

.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 11px; }

.footer-col ul a {
  font-size: 0.8rem;
  color: rgba(255, 243, 234, 0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-addr-items { display: flex; flex-direction: column; gap: 12px; }

.footer-addr-item {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 243, 234, 0.6);
  line-height: 1.5;
}

.footer-addr-item .ico { flex-shrink: 0; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 243, 234, 0.1);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 243, 234, 0.36);
}

/* ════════════════════════════════════════════════════
   ABOUT US PAGE
   ════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.aup-hero-section { padding: 88px 0; }

.aup-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.aup-hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  color: var(--brown);
}

.aup-hero-title span { display: block; }

.aup-hero-subheading {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--brown);
  margin-bottom: 18px;
}

.aup-hero-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(96, 57, 19, 0.78);
  margin-bottom: 32px;
}

.aup-stats {
  display: flex;
  gap: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(96, 57, 19, 0.15);
}

.aup-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brown);
}

.aup-stat-label {
  font-size: 0.72rem;
  color: rgba(96, 57, 19, 0.55);
  margin-top: 4px;
}

/* ─── Creating Lasting Impact ─── */
.aup-impact-section { padding: 80px 0; }

.aup-impact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.aup-impact-image {
  aspect-ratio: 3 / 4;
  min-height: 320px;
}

.aup-impact-heading {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  color: var(--text-on-brown);
  margin-bottom: 28px;
}

.aup-impact-subheading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.aup-impact-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 243, 234, 0.78);
  margin-bottom: 28px;
}

/* ─── Join Us (overlapping card) ─── */
.aup-join-section { padding: 80px 0 110px; }

.aup-join-wrap { position: relative; }

.aup-join-image {
  width: 90%;
  margin-left: auto;
  aspect-ratio: 16 / 8;
}

.aup-join-card {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--cream);
  color: var(--text-on-cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 320px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.aup-join-heading {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.aup-join-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(96, 57, 19, 0.78);
  margin-bottom: 22px;
}

/* ─── Quote ─── */
.aup-quote-section { padding: 80px 0; text-align: center; }

.aup-quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--brown);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ─── Fact / Myth two column ─── */
.aup-factmyth-section { padding: 80px 0; }

.aup-factmyth-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.aup-factmyth-image {
  aspect-ratio: 4 / 3;
  min-height: 280px;
}

.aup-factmyth-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.aup-factmyth-block {
  display: flex;
  gap: 18px;
}

.aup-factmyth-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aup-factmyth-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(96, 57, 19, 0.78);
}

/* ─── Dedicated Volunteers ─── */
.aup-volunteers-section { text-align: center; padding: 80px 0; }

.aup-volunteers-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 52px;
}

.aup-volunteers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.aup-volunteer-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(96, 57, 19, 0.06);
}

.aup-volunteer-img {
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.aup-volunteer-info {
  background: var(--gold);
  padding: 16px 18px;
  text-align: left;
}

.aup-volunteer-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
}

.aup-volunteer-role {
  font-size: 0.75rem;
  color: rgba(96, 57, 19, 0.75);
  margin-top: 2px;
}

/* ─── Vision marquee ─── */
.aup-vision-section {
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}

.aup-vision-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 12px;
}

.aup-vision-decor {
  color: var(--gold);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.aup-vision-marquee {
  overflow: hidden;
  width: 100%;
}

.aup-vision-track {
  display: flex;
  width: max-content;
  animation: aup-marquee 22s linear infinite;
}

.aup-vision-track span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--brown);
  white-space: nowrap;
  padding: 0 28px;
}

@keyframes aup-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .aup-vision-track { animation: none; }
}

/* ════════════════════════════════════════════════════
   VOLUNTEERS PAGE
   ════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.vp-hero-section { padding: 88px 0; }

.vp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.vp-hero-heading {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--brown);
  margin-bottom: 18px;
}

.vp-hero-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(96, 57, 19, 0.78);
  max-width: 380px;
}

.vp-hero-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(96, 57, 19, 0.06);
  position: relative;
}

.vp-hero-img {
  aspect-ratio: 3 / 4;
  display: block;
  width: 100%;
}

.vp-hero-info {
  background: var(--gold);
  padding: 16px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  text-align: left;
}

.vp-hero-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
}

.vp-hero-role {
  font-size: 0.78rem;
  color: rgba(96, 57, 19, 0.75);
  margin-top: 2px;
}

.vp-hero-card:hover .vp-hero-info {
  transform: translateY(0);
}

/* ─── Dedicated Volunteers ─── */
.vp-dedicated-section { text-align: center; padding: 80px 0; }

.vp-dedicated-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 52px;
}

.vp-volunteers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}

.vp-volunteer-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(96, 57, 19, 0.06);
  position: relative;
}

.vp-volunteer-img { aspect-ratio: 1 / 1; display: block; width: 100%; }

.vp-volunteer-info {
  background: var(--gold);
  padding: 16px 18px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.vp-volunteer-card:hover .vp-volunteer-info {
  transform: translateY(0);
}

.vp-volunteer-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
}

.vp-volunteer-role {
  font-size: 0.75rem;
  color: rgba(96, 57, 19, 0.75);
  margin-top: 2px;
}

/* ─── Be Part of the Change ─── */
.vp-change-section { padding: 80px 0; }

.vp-change-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.vp-change-heading {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 28px;
}

.vp-change-img {
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
}

.vp-change-text {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(96, 57, 19, 0.75);
}

/* ════════════════════════════════════════════════════
   CAUSES PAGE
   ════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.cp-hero-section { padding: 96px 0; text-align: center; }

.cp-hero-heading {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--text-on-brown);
  margin-bottom: 56px;
}

.cp-hero-image {
  width: 100%;
  aspect-ratio: 16 / 7;
}

/* ─── Three Causes ─── */
.cp-causes-section { padding: 80px 0; }

.cp-causes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cp-cause-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.cp-cause-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}

.cp-cause-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.cp-cause-text {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255, 243, 234, 0.78);
}

/* ════════════════════════════════════════════════════
   JOIN US PAGE
   ════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.ju-hero-section { padding: 0; position: relative; }

.ju-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

.ju-hero-card {
  position: absolute;
  left: 48px;
  bottom: -56px;
  background: var(--cream);
  color: var(--text-on-cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 280px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ju-hero-heading {
  font-size: 2rem;
  margin-bottom: 14px;
}

.ju-hero-heading .hl-italic {
  color: var(--gold);
  font-style: italic;
}

.ju-hero-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(96, 57, 19, 0.78);
}

/* ─── Application Form ─── */
.ju-form-section { padding: 132px 0 80px; }

.ju-form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(96, 57, 19, 0.12);
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
}

.ju-form-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brown);
  margin-bottom: 10px;
}

.ju-form-subtext {
  font-size: 0.85rem;
  color: rgba(96, 57, 19, 0.65);
  margin-bottom: 32px;
}

.ju-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.ju-form-group { display: flex; flex-direction: column; }
.ju-form-group.full { grid-column: 1 / -1; }

.ju-form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.ju-form-input,
.ju-form-select,
.ju-form-textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--brown);
  background: var(--cream);
  border: 1.5px solid rgba(96, 57, 19, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}

.ju-form-input::placeholder,
.ju-form-textarea::placeholder { color: rgba(96, 57, 19, 0.4); }

.ju-form-input:focus,
.ju-form-select:focus,
.ju-form-textarea:focus { border-color: var(--gold); }

.ju-form-textarea { resize: vertical; min-height: 110px; }

.ju-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════ */

.cn-section { padding: 80px 0; }

.cn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Left column */
.cn-heading {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--brown);
  margin-bottom: 18px;
}

.cn-subtext {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(96, 57, 19, 0.78);
  margin-bottom: 28px;
  max-width: 380px;
}

.cn-photo {
  aspect-ratio: 4 / 3;
  max-width: 340px;
  margin-bottom: 24px;
}

.cn-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cn-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
}

.cn-info-item .ico { font-size: 0.95rem; flex-shrink: 0; }

/* Right column — form card */
.cn-card {
  background: var(--brown);
  color: var(--text-on-brown);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.cn-card-heading {
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  margin-bottom: 14px;
}

.cn-card-subtext {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 243, 234, 0.75);
  margin-bottom: 32px;
}

.cn-form-group { margin-bottom: 22px; }

.cn-form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-on-brown);
  margin-bottom: 8px;
}

.cn-form-input,
.cn-form-select,
.cn-form-textarea {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text-on-brown);
  background: rgba(255, 243, 234, 0.08);
  border: 1.5px solid rgba(255, 243, 234, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}

.cn-form-input::placeholder,
.cn-form-textarea::placeholder { color: rgba(255, 243, 234, 0.4); }

.cn-form-input:focus,
.cn-form-select:focus,
.cn-form-textarea:focus { border-color: var(--gold); }

.cn-form-textarea { resize: vertical; min-height: 110px; }

.cn-form-select option { background: var(--brown); color: var(--text-on-brown); }

.cn-form-submit { width: 100%; justify-content: center; }

/* ─── Visit Our Locations ─── */
.cn-map-section { padding: 0 0 80px; text-align: center; }

.cn-map-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 32px;
}

.cn-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
}

.cn-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ════════════════════════════════════════════════════
   404 PAGE
   ════════════════════════════════════════════════════ */

.nf-section {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 0;
}

.nf-illustration {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 32px;
}

.nf-illustration svg { width: 100%; height: auto; display: block; }

.nf-heading {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--brown);
  line-height: 1.3;
  margin-bottom: 36px;
}

/* ════════════════════════════════════════════════════
   BLOG PAGE
   ════════════════════════════════════════════════════ */

.bp-section { padding: 80px 0; text-align: center; }

.bp-heading {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--brown);
  margin-bottom: 48px;
}

.bp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}

.bp-card {
  display: block;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(96, 57, 19, 0.16);
}

.bp-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
}

.bp-card-date {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.bp-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.4;
}

/* ─── Responsive ─── */
@media (max-width: 1280px) {
  .container       { max-width: 1080px; padding: 0 32px; }
  .section-brown,
  .section-cream   { padding: 64px 0; }
  .hero-section    { padding: 52px 0 60px; }
  .hero-logo-icon  { width: 84px; height: 84px; }
  .two-col         { gap: 44px; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bp-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .navbar > .nav-cta { display: none; }
  .nav-hamburger  { display: flex; }
  .navbar         { padding: 0 20px; position: relative; }
  .section-brown,
  .section-cream  { padding: 56px 0; }
  .container      { padding: 0 20px; }
  .two-col        { grid-template-columns: 1fr; gap: 32px; }
  .causes-grid    { grid-template-columns: 1fr; gap: 36px; }
  .blogs-grid     { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero-brand     { flex-direction: column; text-align: center; }
  .hero-section   { padding: 48px 0 56px; }
  .newsletter-card { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-input { border-radius: var(--radius-pill); }
  .newsletter-btn   { border-radius: var(--radius-pill); }
  .footer         { padding: 48px 20px 24px; }

  /* About Us page */
  .aup-hero-grid,
  .aup-impact-grid,
  .aup-factmyth-grid   { grid-template-columns: 1fr; gap: 32px; }
  .aup-stats           { gap: 28px; flex-wrap: wrap; }
  .aup-volunteers-grid { grid-template-columns: 1fr; gap: 24px; }
  .aup-join-image      { width: 100%; }
  .aup-join-card       {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: -40px;
    margin-left: 16px;
    margin-right: 16px;
  }
  .aup-vision-row { gap: 12px; }

  /* Volunteers page */
  .vp-hero-grid,
  .vp-change-grid     { grid-template-columns: 1fr; gap: 32px; }
  .vp-volunteers-grid { grid-template-col