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

:root {
  --gold: #D4AF37;
  --gold-dark: #C9A84C;
  --gold-light: #E8D48B;
  --white: #FFFFFF;
  --off-white: #FDFCF8;
  --dark: #1A1A1A;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #F5F3EE;
  --border-light: #E8E4DC;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --transition: 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 16px rgba(212,175,55,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }
.container-lg { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 640px;
  margin: 1rem auto 0;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.8); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--dark); line-height: 1.3; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-gray);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.8rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.8rem; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: var(--white);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.site-header.transparent-bg { background: transparent; }
.site-header.scrolled .nav-link { color: var(--dark); }
.site-header.scrolled .site-logo-text { color: var(--gold); }
.site-header.scrolled .btn-donate-nav { background: var(--gold); color: var(--white); border-color: var(--gold); }
.site-header.scrolled .btn-donate-nav:hover { background: var(--gold-dark); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-height: 70px;
  gap: 2.5rem;
}

.site-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  z-index: 10;
}
.site-logo img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  transition: all var(--transition);
}
.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.site-logo-text span { font-weight: 400; font-size: 0.85rem; display: block; color: rgba(255,255,255,0.8); }
.site-header.scrolled .site-logo-text span { color: var(--medium-gray); }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

.btn-donate-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-donate-nav:hover {
  background: var(--gold);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  z-index: 10;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all var(--transition);
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 2px;
}
.site-header.scrolled .mobile-toggle {
  background: var(--light-gray);
}
.site-header.scrolled .mobile-toggle span { background: var(--dark); }

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 480px) {
  .mobile-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -340px;
  width: 340px;
  height: 100%;
  background: var(--white);
  z-index: 2001;
  transition: right 0.35s cubic-bezier(0.22,1,0.36,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,0.1);
}
.mobile-menu-panel.open { right: 0; }

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}
.mobile-panel-logo { width: 44px; height: 44px; object-fit: contain; }
.mobile-menu-panel .close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all var(--transition);
  line-height: 1;
}
.mobile-menu-panel .close-btn:hover { background: var(--gold); color: var(--white); }

.mobile-nav-list {
  flex: 1;
  padding: 1rem 1.5rem;
}
.mobile-nav-list li { border-bottom: 1px solid var(--border-light); }
.mobile-nav-list li:last-child { border-bottom: none; }
.mobile-nav-list a {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  font-size: 1rem;
  transition: all var(--transition);
  position: relative;
}
.mobile-nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.mobile-nav-list a:hover { color: var(--gold); }
.mobile-nav-list a:hover::after { width: 100%; }

.mobile-panel-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-light);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 4rem;
  max-width: 800px;
  color: var(--white);
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.hero-stat .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.impact-strip {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 2rem 0;
}
.impact-strip .impact-grid {
  padding: 1.5rem 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem 0;
}
.impact-item { text-align: center; }
.impact-item .num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.impact-item .label {
  font-size: 0.95rem;
  color: var(--medium-gray);
  font-weight: 400;
}

.video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.conference-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: center;
  padding-left: 6%;
}
.video-overlay-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-top: 0.5rem;
}
.video-overlay-content .eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  display: block;
}

@media (max-width: 768px) {
  .video-wrapper {
    aspect-ratio: 16 / 9;
  }
  .video-overlay {
    padding-left: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
    align-items: flex-end;
    padding-bottom: 2rem;
  }
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
}
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}
.split-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.split-text p {
  font-size: 1.05rem;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.split-image {
  position: relative;
  overflow: hidden;
  min-height: 350px;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.project-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-card:hover .project-card-image img { transform: scale(1.05); }
.project-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}
.project-card-body { padding: 1.5rem; }
.project-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.project-card-body p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--light-gray);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.6rem;
}
.progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 1.2s ease;
}
.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.progress-info .raised { font-weight: 600; color: var(--dark); }
.progress-info .percent { color: var(--gold); font-weight: 600; }
.donor-count {
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin: 0.5rem 0 1rem;
}
.project-card .btn { width: 100%; justify-content: center; }

.testimonial-section {
  background: var(--off-white);
}
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-slide {
  text-align: center;
  padding: 1rem;
}
.testimonial-slide blockquote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial-slide blockquote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: -0.5rem;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-author .name { font-weight: 600; color: var(--dark); display: block; }
.testimonial-author .title { font-size: 0.85rem; color: var(--medium-gray); }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.testimonial-dots button.active { background: var(--gold); }

.project-page-header {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
}
.project-page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.project-page-header p {
  color: var(--gold);
  font-size: 1.1rem;
}

.breadcrumb-header { position: relative; overflow: hidden; }
.breadcrumb-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.breadcrumb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}
.breadcrumb-content { position: relative; z-index: 2; }
.breadcrumb-content h1,
.breadcrumb-content p { color: var(--white) !important; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}
.team-card { padding: 1rem; }
.team-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--gold);
  transition: all var(--transition);
}
.team-card:hover img { transform: scale(1.05); box-shadow: var(--shadow-gold); }
.team-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--gold);
  background: var(--charcoal, #1a1a1a);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  transition: all var(--transition);
}
.team-card:hover .team-placeholder { transform: scale(1.05); box-shadow: var(--shadow-gold); }
.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.team-card .role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.team-card .underline {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}

.get-involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.involve-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}
.involve-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.involve-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.involve-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.involve-card p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-banner {
  text-align: center;
  padding: 4rem 2rem;
  background: #000;
}
.cta-banner-image {
  position: relative;
  overflow: hidden;
  background: none;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
}
.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-col p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--medium-gray);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-logo { width: 200px; height: auto; margin-bottom: -80px; margin-top: -50px; }
@media (max-width: 768px) { .footer-logo { width: 140px; margin-bottom: -50px; margin-top: -30px; } }
@media (max-width: 480px) { .footer-logo { width: 100px; margin-bottom: -30px; margin-top: -20px; } }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  color: var(--medium-gray);
  transition: all var(--transition);
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  padding-left: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--medium-gray);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a {
  color: var(--medium-gray);
  margin-left: 1.5rem;
}
.footer-bottom a:hover { color: var(--gold); }

.counter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}
.counter-item { text-align: center; }
.counter-item .num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.counter-item .label {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-top: 0.3rem;
}

.bg-light { background: var(--off-white); }
.bg-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}
.bg-gold h2, .bg-gold p { color: var(--white); }
.text-center { text-align: center; }

.grid-centered-12 { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.grid-centered-8 { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }

@media (max-width: 480px) {
  .grid-centered-12, .grid-centered-8 { padding: 0 1rem; }
}

/* Page header sections with inline padding 8rem - fix for mobile */
@media (max-width: 768px) {
  section[style*="padding:8rem"] { padding: 6rem 1rem 3rem !important; }
}
@media (max-width: 480px) {
  section[style*="padding:8rem"] { padding: 5rem 1rem 2.5rem !important; }
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-inner > .btn-donate-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-inner { justify-content: flex-end; }
  .hero-stats { justify-content: center; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .get-involved-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .site-logo img { width: 160px; height: 160px; }
  .site-header { padding: 0.75rem 0; }
  .site-header.scrolled { padding: 0.4rem 0; }
}
@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; }
  .split-text { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 90vh; }
  .hero::after { background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.85) 100%); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 2.5rem 0; }
  .projects-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .team-card img { width: 140px; height: 140px; }
  .team-placeholder { width: 140px; height: 140px; font-size: 3rem; }
  .get-involved-grid { grid-template-columns: 1fr; }
  .counter-row { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .hero-content { padding: 4rem 1.5rem 2rem; }
  .hero-content h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
  .hero-content p { font-size: 1rem; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .num { font-size: 1.6rem; }
  .hero-stat .label { font-size: 0.75rem; }
  .site-logo img { width: 140px; height: 140px; }
  .mobile-menu-panel { width: 300px; right: -300px; }
  .mobile-nav-list { padding: 0.5rem 1.25rem; }
  .mobile-nav-list a { padding: 0.9rem 0; font-size: 0.95rem; }
  .mobile-panel-header { padding: 1rem 1.25rem; }
  .footer-col h3 { font-size: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin-left: 0.75rem; margin-right: 0.75rem; }
  .testimonial-slide blockquote { font-size: 1.05rem; }
  .cta-banner { padding: 3rem 1.5rem; }
  .cta-banner h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-header h2 { font-size: clamp(1.6rem, 5vw, 2rem); }
  .impact-item .num { font-size: clamp(2rem, 6vw, 2.8rem); }
  .counter-item .num { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.7rem; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
  .hero-content { padding: 3.5rem 1rem 1.5rem; }
  .hero { min-height: 85vh; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
  .hero-stat { flex: 1; min-width: 100px; }
  .hero-stat .num { font-size: 1.4rem; }
  .hero-stat .label { font-size: 0.7rem; letter-spacing: 0.5px; }
  .hero-content .btn-lg { padding: 0.75rem 1.5rem; font-size: 0.85rem; width: 100%; justify-content: center; }
  .hero-content .btn-outline { background: rgba(212,175,55,0.12); border-color: var(--gold); color: var(--gold) !important; backdrop-filter: blur(4px); }
  .hero-content div[style*="flex"] { flex-direction: column; width: 100%; gap: 0.75rem; }
  .site-logo img { width: 130px; height: 130px; }
  .site-header { padding: 0.5rem 0; }
  .site-header.scrolled { padding: 0.3rem 0; }
  .mobile-toggle { padding: 0.45rem; gap: 4px; }
  .mobile-toggle span { width: 22px; }
  .mobile-menu-panel { width: 100%; right: -100%; }
  .mobile-panel-header { padding: 0.75rem 1rem; }
  .mobile-panel-logo { width: 36px; height: 36px; }
  .mobile-menu-panel .close-btn { width: 34px; height: 34px; font-size: 1.25rem; }
  .mobile-nav-list { padding: 0.5rem 1rem; }
  .mobile-nav-list a { padding: 0.8rem 0; font-size: 0.9rem; }
  .mobile-panel-footer { padding: 1rem; }
  .section { padding: 2.5rem 0; }
  .section-sm { padding: 2rem 0; }
  .container, .container-sm, .container-lg { padding: 0 1rem; }
  .section-header { margin-bottom: 2rem; }
  .section-header p { font-size: 0.95rem; }
  .split-text { padding: 2rem 1rem; }
  .split-text h2 { font-size: 1.5rem; }
  .split-text p { font-size: 0.95rem; }
  .split-image { min-height: 250px; }
  .project-card-body { padding: 1.2rem; }
  .project-card-body h3 { font-size: 1.05rem; }
  .team-card img { width: 120px; height: 120px; }
  .team-placeholder { width: 120px; height: 120px; font-size: 2.5rem; }
  .team-card h3 { font-size: 1.05rem; }
  .involve-card { padding: 2rem 1.5rem; }
  .involve-card h3 { font-size: 1.1rem; }
  .involve-card .icon { font-size: 2.5rem; }
  .testimonial-slide blockquote { font-size: 0.95rem; }
  .testimonial-slide blockquote::before { font-size: 3rem; }
  .testimonial-author img { width: 44px; height: 44px; }
  .cta-banner { padding: 2.5rem 1rem; }
  .cta-banner p { font-size: 0.95rem; }
  .btn-lg { padding: 0.8rem 2rem; font-size: 0.85rem; }
  .footer-grid { gap: 1.5rem; }
  .footer-col p { font-size: 0.85rem; }
  .footer-col li { margin-bottom: 0.4rem; }
  .footer-bottom { font-size: 0.8rem; gap: 0.75rem; }
  .footer-bottom a { margin: 0 0.5rem; }
  .project-page-header { padding: 6rem 0 2.5rem; }
  .project-page-header h1 { font-size: 1.5rem; }
  .project-page-header p { font-size: 0.95rem; }
  .counter-item .num { font-size: 1.8rem; }
  .counter-row { gap: 1rem; padding: 1rem 0; }
  .testimonial-dots { margin-top: 1.5rem; }
  .donor-count { font-size: 0.75rem; }
  .progress-info { font-size: 0.8rem; }
}



/* ===== SITE HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
  background: transparent;
}

/* Add this - ensures header stays above mobile overlay */
.site-header.menu-open {
  z-index: 9999;
}

.site-header.scrolled {
  background: var(--white);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(0,0,0,0.3);
  border: none;
  cursor: pointer;
  padding: 0.6rem 0.7rem;
  z-index: 10001; /* Increased z-index to stay above everything */
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all var(--transition);
  position: relative;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--gold);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ===== MOBILE MENU PANEL ===== */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%; /* Start off screen */
  width: 340px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
}

.mobile-menu-panel.open {
  right: 0;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height for mobile */
  display: flex;
  align-items: center; /* Changed from flex-end to center */
  overflow: hidden;
  padding-top: 70px; /* Space for fixed header */
}

@media (max-width: 480px) {
  .hero {
    min-height: 90vh;
    min-height: 90dvh;
    align-items: flex-end; /* Keep content at bottom on very small screens */
    padding-bottom: 2rem;
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.6) 40%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem 3rem;
  max-width: 800px;
  color: var(--white);
  width: 100%;
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1rem 1rem 2.5rem;
    text-align: center;
  }
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

@media (max-width: 480px) {
  .hero-content p {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== HERO BUTTONS ===== */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-content .btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.hero-content .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212,175,55,0.4);
}

.hero-content .btn-outline {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.hero-content .btn-outline:hover {
  background: rgba(212,175,55,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* ===== HERO STATS ===== */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 1.25rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  .hero-stat {
    flex: 1;
    min-width: 80px;
  }
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .hero-stat .num {
    font-size: 1.4rem;
  }
}

.hero-stat .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

@media (max-width: 480px) {
  .hero-stat .label {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  
  .header-inner > .btn-donate-nav {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .header-inner {
    justify-content: flex-end;
    gap: 1rem;
  }
  
  .site-logo img {
    width: 160px;
    height: 160px;
  }
  
  .site-header {
    padding: 0.75rem 0;
  }
  
  .site-header.scrolled {
    padding: 0.4rem 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    align-items: center;
  }
  
  .hero::after {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.4) 0%,
      rgba(0,0,0,0.7) 100%
    );
  }
  
  .hero-content {
    padding: 2rem 1.5rem 2.5rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .hero-stat .num {
    font-size: 1.6rem;
  }
  
  .site-logo img {
    width: 140px;
    height: 140px;
  }
  
  .mobile-menu-panel {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .hero {
    
    align-items: flex-end;
    margin:0;
  }
  
  .hero-content {
    padding: 0.5rem 1rem 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
    margin:0;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-stats {
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }
  
  .hero-stat .num {
    font-size: 1.2rem;
  }
  
  .hero-stat .label {
    font-size: 0.6rem;
    letter-spacing: 0.3px;
  }
  
  .site-logo img {
    width: 130px;
    height: 130px;
  }
  
  .site-header {
    padding: 0.4rem 0;
  }
  
  .site-header.scrolled {
    padding: 0.2rem 0;
  }
  
  .mobile-toggle {
    padding: 0.4rem 0.5rem;
    gap: 3.5px;
  }
  
  .mobile-toggle span {
    width: 20px;
    height: 2px;
  }
  
  .mobile-menu-panel {
    width: 100%;
    max-width: 100vw;
  }
  
  .mobile-panel-header {
    padding: 0.75rem 1rem;
  }
  
  .mobile-panel-logo {
    width: 36px;
    height: 36px;
  }
  
  .mobile-menu-panel .close-btn {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }
  
  .mobile-nav-list {
    padding: 0.5rem 1rem;
  }
  
  .mobile-nav-list a {
    padding: 0.8rem 0;
    font-size: 0.9rem;
  }
  
  .mobile-panel-footer {
    padding: 1rem;
  }
}

/* ========== BLOG CONTENT TYPOGRAPHY ========== */
.blog-content {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #2d2d2d;
  max-width: 100%;
}

.blog-content .conf-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.blog-content .conf-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  width: 100%;
  display: block;
}

.blog-content .conf-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: block;
}

.blog-content .conf-gallery-item img:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .blog-content .conf-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .blog-content .conf-gallery {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .blog-content .conf-gallery-item {
    aspect-ratio: 1 / 1;
  }
}

.blog-content h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin: 2rem 0 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.blog-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 1.75rem 0 0.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.blog-content h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  margin: 1.5rem 0 0.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}

.blog-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 1.25rem 0 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.blog-content h5,
.blog-content h6 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin: 1rem 0 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.blog-content p {
  margin: 0 0 1.25rem;
}

.blog-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.blog-content a:hover {
  color: var(--gold);
}

.blog-content strong, .blog-content b {
  font-weight: 700;
}

.blog-content em, .blog-content i {
  font-style: italic;
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 1.25rem;
  padding-left: 2rem;
}

.blog-content ul {
  list-style: disc;
}

.blog-content ol {
  list-style: decimal;
}

.blog-content li {
  margin-bottom: 0.35rem;
  line-height: 1.7;
}

.blog-content li > ul,
.blog-content li > ol {
  margin: 0.25rem 0 0.25rem 1.5rem;
}

.blog-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 0.75rem 1.5rem;
  margin: 1.5rem 0;
  background: #f9f7f0;
  font-style: italic;
  color: #555;
  border-radius: 0 8px 8px 0;
}

.blog-content blockquote p:last-child {
  margin-bottom: 0;
}

.blog-content pre {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 1.25rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-content code {
  background: #f0f0f0;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  color: #e74c3c;
}

.blog-content pre code {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: #d4d4d4;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem auto;
  display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.blog-content figure {
  margin: 1.5rem 0;
  text-align: center;
}

.blog-content figcaption {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.5rem;
  font-style: italic;
}

.blog-content hr {
  border: none;
  border-top: 2px solid #eee;
  margin: 2.5rem 0;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  overflow-x: auto;
  display: block;
}

.blog-content th,
.blog-content td {
  border: 1px solid #ddd;
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.blog-content th {
  background: #f5f5f5;
  font-weight: 600;
}

.blog-content iframe {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.blog-content .todo-list {
  list-style: none;
  padding-left: 0;
}

.blog-content .todo-list .todo-list__label {
  margin-right: 0.5rem;
}

.blog-content sub {
  vertical-align: sub;
  font-size: smaller;
}

.blog-content sup {
  vertical-align: super;
  font-size: smaller;
}

.blog-content mark {
  background: #fff3cd;
  padding: 0.1rem 0.3rem;
  border-radius: 2px;
}

.blog-content dl {
  margin: 1rem 0;
}

.blog-content dt {
  font-weight: 700;
  margin-top: 0.5rem;
}

.blog-content dd {
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-content kbd {
  background: #f0f0f0;
  border: 1px solid #ccc;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-family: 'Consolas', monospace;
  font-size: 0.85em;
}

.blog-content samp {
  font-family: 'Consolas', monospace;
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}

.blog-content address {
  font-style: italic;
  margin: 1rem 0;
  color: #666;
}

.blog-featured-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.blog-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.blog-back-link {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: opacity 0.2s;
}

.blog-back-link:hover {
  opacity: 0.8;
}

/* Listing Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card-image-placeholder {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-date {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}

.blog-card-title {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.blog-card-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog-card-readmore {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.conf-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.conf-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.conf-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.conf-gallery-item:hover img {
  transform: scale(1.06);
}
.conf-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}
.conf-gallery-featured {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 4 / 3;
}

/* ========== GALLERY RESPONSIVE ========== */
@media (max-width: 900px) {
  .conf-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .conf-gallery {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .conf-gallery-item {
    aspect-ratio: 1 / 1;
  }
  .conf-gallery-caption {
    font-size: 0.9rem;
    padding: 1.5rem 0.75rem 0.6rem;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-content {
    font-size: 1.05rem;
  }
  .blog-content h1 { font-size: 1.6rem; }
  .blog-content h2 { font-size: 1.4rem; }
  .blog-content h3 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .conf-gallery-featured {
    grid-column: span 1;
  }
}



