@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');






/* ════════════ UTILITY BAR ════════════ */
.u-bar { background: #1B5E20; padding: 7px 0; }
.u-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.u-tagline { font-size: 12px; color: rgba(255,255,255,0.75); letter-spacing: 0.02em; font-style: italic; font-family: 'Inter', sans-serif; }
.u-links { display: flex; align-items: center; gap: 16px; }
.u-links a { font-size: 11.5px; color: rgba(255,255,255,0.65); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color 0.2s; font-family: 'Inter', sans-serif; }
.u-links a:hover { color: #fff; }
.u-links i { font-size: 13px; }
.u-div { width: 1px; height: 12px; background: rgba(255,255,255,0.2); }

/* ════════════ MAIN BAR ════════════ */
.m-bar { background: #fff; border-bottom: 1.5px solid #e8e8e8; padding: 0 24px; }
.m-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; height: 68px; gap: 0; }

/* ════════════ BRAND ════════════ */
.brand-block { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo-placeholder { width: 60px; height: 60px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.logo-placeholder img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-acronym { font-family: 'Playfair Display', Georgia, serif; font-size: 17px; font-weight: 700; color: #1B5E20; line-height: 1; letter-spacing: 0.01em; }
.brand-fullname { font-size: 10px; font-weight: 500; color: #666; line-height: 1.3; max-width: 280px; letter-spacing: 0.01em; text-transform: uppercase; font-family: 'Inter', sans-serif; }

/* ════════════ DIVIDER ════════════ */
.divider-v { width: 1px; height: 32px; background: #e0e0e0; margin: 0 24px; flex-shrink: 0; }

/* ════════════ NAV LINKS ════════════ */
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: #444; text-decoration: none; padding: 6px 13px; border-radius: 6px; transition: background 0.15s, color 0.15s; white-space: nowrap; font-family: 'Inter', sans-serif; }
.nav-links a:hover { background: #f0f7f0; color: #1B5E20; }
.nav-links a.active { color: #1B5E20; font-weight: 600; }

/* ════════════ ACTIONS ════════════ */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }
.donate-btn { display: inline-flex; align-items: center; gap: 7px; background: #1B5E20; color: #fff; font-size: 13px; font-weight: 600; padding: 9px 20px; border-radius: 24px; text-decoration: none; transition: filter 0.2s; white-space: nowrap; font-family: 'Inter', sans-serif; }
.donate-btn:hover { filter: brightness(1.1); color: #fff; }
.donate-btn i { font-size: 14px; }

/* ════════════ HAMBURGER ════════════ */
.ham { display: none; flex-direction: column; gap: 5px; width: 24px; cursor: pointer; background: none; border: 0; padding: 0; }
.ham span { display: block; height: 2px; width: 100%; background: #444; border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease; transform-origin: center; }
.ham span:nth-child(2) { width: 70%; }
.ham.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.is-open span:nth-child(2) { opacity: 0; width: 0; }
.ham.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════ MOBILE MENU ════════════ */
.mobile-menu { display: block; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 24px; background: #fff; border-top: 1px solid #eee; }
.mobile-menu.mobile-show { max-height: 400px; padding: 12px 24px 20px; }
.mob-links { list-style: none; margin: 0 0 16px; padding: 0; }
.mob-links li a { display: flex; align-items: center; gap: 10px; color: #333; text-decoration: none; font-size: 14.5px; font-weight: 500; padding: 12px 8px; border-bottom: 1px solid #f2f2f2; transition: padding-left 0.15s, color 0.15s; font-family: 'Inter', sans-serif; }
.mob-links li a:hover { padding-left: 14px; color: #1B5E20; }
.mob-links li a i { font-size: 18px; color: #999; }
.mob-donate { display: flex; align-items: center; justify-content: center; gap: 8px; background: #1B5E20; color: #fff; font-size: 14px; font-weight: 600; padding: 13px 20px; border-radius: 24px; text-decoration: none; font-family: 'Inter', sans-serif; }

/* ════════════ NAV RESPONSIVE ════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .divider-v { display: none; }
  .donate-btn { display: none; }
  .ham { display: flex; }
  .brand-fullname { display: none; }
}

@media (max-width: 600px) {
  .u-tagline { display: none; }
  .brand-acronym { font-size: 15px; }
  .m-bar { padding: 0 16px; }
  .mobile-menu { padding: 0 16px; }
  .mobile-menu.mobile-show { padding: 12px 16px 20px; }
}

/* ===================== HERO SECTION ===================== */
.hero-section {
  position: relative;
  overflow: visible;
  margin: 0;
  padding-top: 80px;
}

@media (min-width: 768px) {
  .hero-slides-wrapper {
    position: relative;
    height: 92vh;
    max-height: 720px;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
  }

  .hero-slide.active {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.50) 45%,
      rgba(0,0,0,0.10) 100%
    );
  }

  .hero-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding-bottom: 72px;
  }

  .hero-gate {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, #1a9e55, #0f6e3b);
    z-index: 3;
  }

  .hero-controls {
    position: absolute;
    bottom: 24px; left: 0; right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 5;
  }
}

@media (max-width: 767.98px) {
  .hero-slides-wrapper {
    position: relative;
    overflow: hidden;
  }

  .hero-slide {
    display: none;
    width: 100%;
  }

  .hero-slide.active {
    display: block;
  }

  .hero-slide img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center top;
  }

  .hero-mobile-text {
background: linear-gradient(135deg, #1F3A5F 0%, #2C5282 100%);
color: #FFFFFF;
    padding: 24px 20px 32px;
  }

  .hero-gate {
    display: none;
  }

  .hero-controls {
    position: absolute;
    top: 220px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 5;
  }
}

.hero-inner { max-width: 680px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 158, 85, 0.22);
  border: 1px solid rgba(26, 158, 85, 0.45);
  color: #7fd99a;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 0 0 14px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 4.5vw, 3rem);
}

.hero-mobile-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0 0 12px;
}

.hero-desc {
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 24px;
  font-size: clamp(0.82rem, 2vw, 1rem);
  max-width: 560px;
}

.hero-mobile-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 575.98px) {
  .hero-btns {
    flex-direction: column;
  }
  .hero-btn,
  .hero-btn-ghost {
    justify-content: center;
    width: 100%;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #1a9e55;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 28px;
  font-size: 0.875rem;
  padding: 10px 20px;
  box-shadow: 0 4px 14px rgba(26,158,85,0.35);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,158,85,0.5);
  filter: brightness(1.08);
  color: #fff;
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.38);
  font-weight: 600;
  text-decoration: none;
  border-radius: 28px;
  font-size: 0.875rem;
  padding: 10px 20px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.hero-btn-ghost:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.hero-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.2s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.28); }

.hero-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  min-width: 78px;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, width 0.25s, border-radius 0.25s;
}
.hero-dot.active {
  background: #1a9e55;
  width: 22px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .hero-gate {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, #1a9e55, #0f6e3b);
    z-index: 3;
  }
}


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero picture,
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.35) 35%,
    rgba(0,0,0,.15) 60%,
    rgba(0,0,0,0) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 600px;
  color: #fff;
}

.hero-logo {
  width: 140px;
  margin-bottom: 30px;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #f5f5f5;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: .3s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #111;
}

@media (max-width: 992px) {
  .hero { min-height: 600px; }
  .hero-content { padding: 40px; }
  .hero-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .hero { min-height: 550px; }
  .hero-overlay { background: rgba(0,0,0,.55); }
  .hero-content { text-align: center; justify-content: center; padding: 30px 20px; }
  .hero-text { max-width: 100%; }
  .hero-logo { width: 110px; margin: 0 auto 25px; }
  .hero-title { font-size: 2rem; }
  .hero-description { font-size: 1rem; line-height: 1.7; }
}

@media (max-width: 480px) {
  .hero { min-height: 500px; }
  .hero-title { font-size: 1.7rem; }
  .hero-description { font-size: .95rem; }
  .hero-btn { width: 100%; max-width: 250px; }
}






/* ===== AFTER HERO SECTION ===== */

.ms-wrap {
  background: #fff;
  font-family: 'Inter', sans-serif;
  padding: 0;
  overflow: hidden;
}

/* TEAL BACKGROUND — text + stats column only */
.ms-text-card {
  background-color:#1B5E20;
  padding: 3rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.ms-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.ms-heading em {
  font-style: italic;
  color: #ccfbf1;
}

.ms-divider {
  width: 56px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  border-radius: 2px;
  flex-shrink: 0;
}

.ms-body {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  font-weight: 400;
}

.ms-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d1f14;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 0;
  transition: background 0.25s, gap 0.25s;
  align-self: flex-start;
  white-space: nowrap;
}

.ms-btn:hover { background: #fff; color: #0d1f14; gap: 16px; }
.ms-btn-arrow { font-size: 1rem; transition: transform 0.25s; }
.ms-btn:hover .ms-btn-arrow { transform: translateX(4px); }

.ms-stats-wrapper {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 28px;
}

.ms-stats {
  display: flex;
  gap: 0;
}

.ms-stat {
  flex: 1;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  margin-right: 20px;
}

.ms-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.ms-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.ms-stat-num span { color: #ccfbf1; }

.ms-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ===== IMAGE GRID ===== */

.ms-col-imgs {
  padding: 0 !important;
  background: #fff;
}

.ms-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "imgA imgB"
    "imgC imgC";
  gap: 8px;
  padding: 12px;
  height: 100%;
  box-sizing: border-box;
}

.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.img-wrap:hover img { transform: scale(1.06); }

.img-wrap-a {
  grid-area: imgA;
  height: 280px;
}

.img-wrap-b {
  grid-area: imgB;
  height: 280px;
}

.img-wrap-c {
    grid-area: imgC;
    height: 550px;
}

.img-wrap-c img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills the container */
    display: block;
}

.img-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 18px 16px;
  background: linear-gradient(to top, rgba(13,31,20,0.75) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.img-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5DCAA5;
  flex-shrink: 0;
}

.img-tag-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.img-border-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #1D9E75;
}

/* ===== RESPONSIVE ===== */

/* Tablet landscape */
@media (max-width: 1199px) {
  .ms-text-card { padding: 2.5rem 2rem; }
  .img-wrap-a, .img-wrap-b { height: 240px; }
  .img-wrap-c { height: 220px; }
}

/* Tablet portrait — columns stack */
@media (max-width: 991px) {
  .ms-text-card {
    padding: 2.5rem 2rem;
    height: auto;
  }

  .ms-col-imgs {
    padding: 0 !important;
  }

  .ms-img-grid {
    padding: 0 12px 12px;
    gap: 10px;
  }

  .img-wrap-a, .img-wrap-b { height: 230px; }
  .img-wrap-c { height: 210px; }
}

/* Large mobile */
@media (max-width: 767px) {
  .ms-text-card { padding: 2rem 1.5rem; }

  .ms-heading { font-size: clamp(1.25rem, 5vw, 1.6rem); }

  .ms-body { font-size: 0.93rem; }

  .ms-btn {
    align-self: stretch;
    justify-content: center;
  }

  .ms-stats-wrapper { margin-top: 28px; padding-top: 22px; }

  .ms-img-grid {
    padding: 12px;
    gap: 10px;
  }

  .img-wrap-a, .img-wrap-b { height: 200px; }
  .img-wrap-c { height: 190px; }
}

/* Small mobile */
@media (max-width: 575px) {
  .ms-text-card { padding: 1.75rem 1.1rem; }

  .ms-heading {
    font-size: clamp(1.15rem, 5.5vw, 1.45rem);
    margin-bottom: 16px;
  }

  .ms-divider { margin-bottom: 16px; }

  .ms-body {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 22px;
  }

  .ms-btn {
    padding: 13px 20px;
    font-size: 0.76rem;
    align-self: stretch;
    justify-content: center;
  }

  .ms-stats-wrapper { margin-top: 24px; padding-top: 18px; }

  .ms-stats { flex-direction: column; gap: 0; }

  .ms-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0 0 14px 0;
    margin: 0 0 14px 0;
  }

  .ms-stat:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .ms-stat-num { font-size: 1.5rem; }

  .ms-img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "imgA imgB"
      "imgC imgC";
    padding: 10px;
    gap: 8px;
  }

  .img-wrap-a, .img-wrap-b { height: 160px; }
  .img-wrap-c { height: 170px; }
}

/* Extra small mobile */
@media (max-width: 380px) {
  .ms-text-card { padding: 1.5rem 1rem; }
  .img-wrap-a, .img-wrap-b { height: 130px; }
  .img-wrap-c { height: 140px; }
}

  





/* DONATION  BAR */

  :root{
    --green-50:  #F0FDFA;
    --green-100: #CCFBF1;
    --green-200: #99F6E4;
    --green-400: #2DD4BF;
    --green-500: #14B8A6;
    --green-600: #0D9488;
    --green-700: #0F766E;
    --green-900: #134E4A;
    --ink:       #0B1F1D;
    --slate:     #506A67;
    --white:     #FFFFFF;
  }


  a:focus-visible, button:focus-visible, input:focus-visible{
    outline:2px solid var(--green-500);
    outline-offset:3px;
  }

  /* ---------- shared type ---------- */

  .title{
    font-family:'Fraunces', serif;
    font-weight:500;
    font-size:clamp(2rem, 4vw, 2.85rem);
    line-height:1.15;
    letter-spacing:-0.01em;
  }
  .title em{
    font-style:italic;
    font-weight:500;
    color:var(--green-600);
    background-image:linear-gradient(var(--green-200), var(--green-200));
    background-repeat:no-repeat;
    background-size:100% 3px;
    background-position:0 90%;
    padding-bottom:2px;
  }
  .section-dark .title em{
    color:var(--white);
    background-image:linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,.45));
  }

  .badge-line{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--green-600);
    margin-bottom:1.1rem;
  }
  .badge-line::before{
    content:'';
    width:26px;
    height:2px;
    background:var(--green-500);
    display:inline-block;
  }
  .section-dark .badge-line{ color:rgba(255,255,255,.85); }
  .section-dark .badge-line::before{ background:var(--white); }
  .section-dark .badge-line.justify-content-center::before{ order:-1; }

  .text-secondary{ color:var(--slate) !important; }

  /* ---------- reveal-on-scroll ---------- */

  .reveal{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .7s ease, transform .7s ease;
  }
  .reveal.in-view{ opacity:1; transform:translateY(0); }

  /* ---------- buttons ---------- */

  .btn-premium{
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    font-weight:600;
    font-size:.95rem;
    color:var(--white);
    background:var(--green-500);
    border:none;
    padding:.95rem 1.85rem;
    border-radius:999px;
    text-decoration:none;
    box-shadow:0 16px 30px -12px rgba(13,148,136,.55);
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  }
  .btn-premium:hover{
    background:var(--green-600);
    color:var(--white);
    transform:translateY(-2px);
    box-shadow:0 20px 36px -12px rgba(13,148,136,.65);
  }
  .btn-premium.btn-on-dark{
    background:var(--white);
    color:var(--green-700);
    box-shadow:0 16px 30px -12px rgba(0,0,0,.35);
  }
  .btn-premium.btn-on-dark:hover{
    background:var(--green-50);
    color:var(--green-700);
  }

  /* ---------- SECTION 1 — light ---------- */

.section-light{
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
    background-image: url('./images/DE.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
  .section-light::before{
    content:'';
    position:absolute;
    top:-130px; right:-130px;
    width:440px; height:440px;
    border-radius:50%;
    background:radial-gradient(circle at 30% 30%, var(--green-100), transparent 70%);
    pointer-events:none;
  }
  .section-light .container{ position:relative; z-index:1; }

  .diamond-chain{ position:relative; }
  .diamond-chain::before{
    content:'';
    position:absolute;
    top:6%; bottom:6%; left:50%;
    width:2px;
    background:linear-gradient(var(--green-100), var(--green-400), var(--green-100));
    transform:translateX(-50%);
    z-index:0;
  }
  .diamond{
    position:relative;
    z-index:1;
    width:148px; height:148px;
    border-radius:26px;
    transform:rotate(45deg);
    overflow:hidden;
    background:var(--white);
    border:5px solid var(--white);
    outline:1px solid var(--green-100);
    box-shadow:0 22px 40px -14px rgba(19,78,74,.28);
    transition:transform .35s ease, box-shadow .35s ease;
  }
  .diamond:hover{
    transform:rotate(45deg) translateY(-6px);
    box-shadow:0 28px 46px -14px rgba(19,78,74,.36);
  }
  .diamond img{
    width:100%; height:100%;
    object-fit:cover;
    transform:rotate(-45deg) scale(1.46);
  }
  .diamond:nth-child(1){ align-self:flex-start; margin-left:-6px; }
  .diamond:nth-child(2){ align-self:flex-end;   margin-right:-6px; }
  .diamond:nth-child(3){ align-self:flex-start; margin-left:-6px; }

  /* ---------- SECTION 2 — teal dark ---------- */

  .section-dark{
    position:relative;
    overflow:hidden;
    background:linear-gradient(165deg, var(--green-600), var(--green-900));
    color:var(--white);
    padding:7rem 0;
  }
  .section-dark::before{
    content:'';
    position:absolute; inset:0;
    background-image:radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size:24px 24px;
    pointer-events:none;
  }
  .section-dark .container{ position:relative; z-index:1; }

  .input-premium{
    background:transparent;
    border:none;
    border-bottom:2px solid rgba(255,255,255,.45);
    color:var(--white);
    font-family:'Fraunces', serif;
    font-style:italic;
    font-weight:500;
    font-size:2.1rem;
    text-align:center;
    width:150px;
    padding:.15rem .3rem;
    outline:none;
    transition:border-color .25s ease;
  }
  .input-premium::placeholder{ color:rgba(255,255,255,.4); }
  .input-premium:focus{ border-color:var(--white); }
  .input-premium::-webkit-outer-spin-button,
  .input-premium::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
  .input-premium[type=number]{ -moz-appearance:textfield; }

  .calc-text{
    font-size:1.1rem;
    color:rgba(255,255,255,.85);
  }

  .card-premium{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(6px);
    border-radius:22px 22px 22px 4px;
    padding:2.1rem 1rem;
    height:100%;
    transition:transform .3s ease, background .3s ease;
  }
  .card-premium:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.12);
  }
  .card-number{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-weight:500;
    font-size:clamp(2.1rem, 4vw, 2.9rem);
    line-height:1;
    color:var(--white);
  }
  .card-premium small{
    display:block;
    margin-top:.65rem;
    font-size:.7rem;
    font-weight:600;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:rgba(255,255,255,.65);
  }

  .summary{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;
    padding:1.7rem 1.9rem;
    max-width:680px;
    margin:0 auto;
    font-size:1.05rem;
    line-height:1.75;
    color:rgba(255,255,255,.92);
  }
  .summary strong{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-weight:600;
    color:var(--white);
  }

  /* ---------- floating impact badge ---------- */

  .diamond-wrap{ position:relative; max-width:100%; }
  .impact-badge{
    display:flex;
    align-items:center;
    gap:.7rem;
    background:var(--white);
    border:1px solid var(--green-100);
    border-radius:999px;
    padding:.55rem 1.1rem .55rem .55rem;
    box-shadow:0 18px 34px -14px rgba(19,78,74,.32);
    position:absolute;
    right:-6%;
    bottom:4%;
    z-index:2;
    white-space:nowrap;
  }
  .badge-avatar{
    width:42px; height:42px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid var(--white);
    box-shadow:0 0 0 2px var(--green-400);
    flex-shrink:0;
  }
  .impact-badge strong{
    display:block;
    font-family:'Fraunces', serif;
    font-style:italic;
    font-weight:600;
    font-size:1.05rem;
    color:var(--ink);
    line-height:1.1;
  }
  .impact-badge span{
    font-size:.68rem;
    font-weight:600;
    letter-spacing:.04em;
    color:var(--slate);
    text-transform:uppercase;
  }

  /* ---------- background photo layer ---------- */

  .bg-photo{
    position:absolute;
    inset:0;
    background-image:url('https://images.unsplash.com/photo-1509062522246-3755977927d7?w=1600');
    background-size:cover;
    background-position:center;
    opacity:.16;
    filter:grayscale(35%);
  }
  .bg-photo::after{
    content:'';
    position:absolute; inset:0;
    background:linear-gradient(165deg, var(--green-600), var(--green-900));
    opacity:.92;
  }

  /* ---------- donor avatar row ---------- */

  .donor-row{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:.7rem;
    margin-top:1.6rem;
  }
  .avatar-stack{ display:flex; align-items:center; }
  .avatar-stack img{
    width:38px; height:38px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid var(--green-700);
    box-shadow:0 0 0 2px rgba(255,255,255,.9);
    margin-left:-12px;
  }
  .avatar-stack img:first-child{ margin-left:0; }
  .donor-row span{
    font-size:.85rem;
    color:rgba(255,255,255,.75);
  }

  /* ============ RESPONSIVE ============ */

  @media (max-width: 991.98px){
    .diamond{ width:118px; height:118px; }
    .input-premium{ font-size:1.65rem; width:115px; }
    .impact-badge{
      position:static;
      margin:1.4rem auto 0;
      width:max-content;
    }
  }

  @media (max-width: 767.98px){
    .section-light, .section-dark{ padding:4.5rem 0; }
    .card-premium{ padding:1.6rem .75rem; }
    .summary{ padding:1.4rem 1.3rem; font-size:.98rem; }
    .btn-premium{ padding:.85rem 1.5rem; }
  }

  @media (max-width: 575.98px){
    .diamond{ width:92px; height:92px; border-radius:20px; }
    .diamond-chain.gap-3{ gap:.6rem !important; }
    .input-premium{ font-size:1.4rem; width:95px; }
    .calc-text{ font-size:.95rem; }
    .card-premium{ border-radius:18px 18px 18px 4px; padding:1.3rem .5rem; }
    .card-number{ font-size:1.7rem; }
    .card-premium small{ font-size:.6rem; }
    .impact-badge{ padding:.45rem .9rem .45rem .45rem; }
    .badge-avatar{ width:34px; height:34px; }
    .impact-badge strong{ font-size:.92rem; }
    .donor-row{ flex-direction:column; gap:.6rem; }
  }

  @media (min-width: 992px) and (max-width: 1199.98px){
    .impact-badge{ right:0; }
  }

  @media (min-width: 768px){
    .w-md-auto{ width:auto !important; }
  }
   



  /* BEFORE LAST SESION */

  :root {
      --tef-blue:       #1F3A5F;
      --tef-blue-light: #2C5282;
      --tef-gold:       #c9a84c;
    }

    .tef-section {
  background-color: #fff;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 50px;
}
    .tef-eyebrow {
      display: inline-block;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--tef-blue);
      border-left: 3px solid var(--tef-gold);
      padding-left: .6rem;
      margin-bottom: 1.1rem;
    }

    .tef-heading {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 800;
      line-height: 1.3;
      color: #111;
      margin-bottom: 1.4rem;
    }
    .tef-heading em {
      font-style: normal;
      color: var(--tef-blue);
    }

    .tef-body p {
      color: #555;
      font-size: .97rem;
      line-height: 1.85;
      margin-bottom: .9rem;
    }
    .tef-body p:first-child {
      font-size: 1.05rem;
      font-weight: 600;
      color: #222;
    }

    .btn-tef {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      margin-top: 1.6rem;
      padding: .65rem 1.7rem;
      background: linear-gradient(135deg, #1F3A5F 0%, #2C5282 100%);
      color: #fff;
      font-weight: 600;
      font-size: .9rem;
      letter-spacing: .04em;
      border: 2px solid var(--tef-blue);
      border-radius: 3px;
      text-decoration: none;
      transition: background .22s, color .22s;
    }
    .btn-tef:hover {
      background: transparent;
      color: var(--tef-blue);
    }
    .btn-tef::after { content: ' →'; }

    .tef-divider {
      width: 3px;
      height: 56px;
      background: linear-gradient(to bottom, #1F3A5F, var(--tef-gold));
      border-radius: 2px;
      margin-bottom: 1.4rem;
    }

    /* ── Image card ── */
    .tef-image-wrap {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(31, 58, 95, .25);
    }

    .tef-image-wrap img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* Dark overlay gradient over image */
    .tef-image-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(31, 58, 95, .05) 25%,
        rgba(31, 58, 95, .88) 100%
      );
      pointer-events: none;
    }

    /* Top border accent */
    .tef-image-wrap::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #1F3A5F, var(--tef-gold));
      z-index: 3;
    }

    /* Stats overlay */
    .tef-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 2;
      padding: 1.8rem;
    }

    .tef-badge {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      background: var(--tef-gold);
      color: #fff;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      padding: .3rem .75rem;
      border-radius: 3px;
      margin-bottom: 1.2rem;
    }

    .tef-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .75rem;
    }

    .tef-stat {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(8px);
      border-radius: 6px;
      padding: .9rem 1rem;
    }

    .tef-stat-number {
      font-size: 1.7rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }

    .tef-stat-label {
      font-size: .7rem;
      color: rgba(255,255,255,.76);
      margin-top: .25rem;
      text-transform: uppercase;
      letter-spacing: .07em;
    }

    /* Vertical ribbon */
    .tef-ribbon {
      position: absolute;
      top: 2rem;
      left: -1px;
      z-index: 3;
      background: linear-gradient(135deg, #1F3A5F 0%, #2C5282 100%);
      color: #fff;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      padding: .9rem .45rem;
      border-radius: 0 4px 4px 0;
    }

    /* ── Responsive ── */
    @media (max-width: 991px) {
      .tef-image-wrap img { height: 420px; }
    }
    @media (max-width: 767px) {
      .tef-section { padding: 60px 0; }
      .tef-image-wrap img { height: 320px; }
      .tef-stat-number { font-size: 1.4rem; }
      .tef-overlay { padding: 1.2rem; }
      .tef-stat-grid { gap: .5rem; }
    }
    @media (max-width: 480px) {
      .tef-image-wrap img { height: 260px; }
      .tef-ribbon { display: none; }
    }


    /* FOOTER */
.footer-main{
    background:#fff;
    color:#111;
    position:relative;
}

.footer-main a{
    color:#333;
    text-decoration:none;
    transition:.3s ease;
}

.footer-main a:hover{
    color:#000;
    padding-left:4px;
}

.footer-logo{
    max-width:220px;
}

.footer-description{
    color:#222;
    font-size:1rem;
    line-height:1.8;
    max-width:500px;
}

.footer-heading{
    color:#111;
    font-weight:700;
    margin-bottom:1rem;
    font-size:1.1rem;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
    color:#222;
}

.footer-links li{
    margin-bottom:.75rem;
}

.social-links{
    display:flex;
    gap:12px;
}

.social-links a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#f2f2f2;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.1rem;
    transition:.3s ease;
    color:#111;
}

.social-links a:hover{
    background:#ddd;
    color:#000;
    transform:translateY(-3px);
}

.footer-divider{
    border-color:#ddd;
}

.footer-bottom{
    color:#333;
    font-size:.9rem;
}

.footer-badge{
    display:inline-block;
    padding:8px 18px;
    background:#f2f2f2;
    border-radius:50px;
    margin-bottom:1rem;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:.5px;
    color:#111;
}

@media(max-width:768px){
    .footer-main{
        text-align:center;
    }

    .social-links{
        justify-content:center;
    }
}









