 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --red: #C0392B;
    --red-dark: #922B21;
    --red-deep: #641E16;
    --red-light: #F1948A;
    --red-pale: #FDEDEC;
    --red-glow: rgba(192, 57, 43, 0.15);
    --white: #FFFFFF;
    --off-white: #FEF9F9;
    --cream: #FDF3F3;
    --gray: #7B7B7B;
    --dark: #1A0A0A;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 5%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(192,57,43,0.1);
    transition: box-shadow 0.3s;
  }

  nav.scrolled { box-shadow: 0 4px 30px rgba(192,57,43,0.12); }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-drop {
    width: 36px; height: 36px;
    background: var(--red);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(192,57,43,0.4);
    animation: pulse-drop 2s ease-in-out infinite;
  }

  @keyframes pulse-drop {
    0%, 100% { box-shadow: 0 4px 15px rgba(192,57,43,0.4); }
    50% { box-shadow: 0 4px 30px rgba(192,57,43,0.7); }
  }

  .logo-drop::after {
    content: '';
    width: 14px; height: 14px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: rotate(45deg);
  }

  .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red-dark);
    letter-spacing: -0.5px;
  }

  .logo-text span { color: var(--red); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--red); }

  .nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  .btn-outline {
    padding: 0.55rem 1.4rem;
    border: 2px solid var(--red);
    color: var(--red);
    background: transparent;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
  }

  .btn-outline:hover {
    background: var(--red);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.3);
  }

  .btn-solid {
    padding: 0.55rem 1.4rem;
    background: var(--red);
    color: white;
    border: 2px solid var(--red);
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
  }

  .btn-solid:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.4);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 5% 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 55%, #FDEDEC 100%);
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,57,43,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-content { position: relative; z-index: 2; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-pale);
    border: 1px solid rgba(192,57,43,0.2);
    color: var(--red-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease both;
  }

  .hero-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s 0.1s ease both;
  }

  h1 em {
    font-style: italic;
    color: var(--red);
    position: relative;
    display: inline-block;
  }

  h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 4px;
    background: var(--red-light);
    border-radius: 2px;
    opacity: 0.5;
  }

  .hero-sub {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 0.7s 0.2s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.3s ease both;
  }

  .btn-hero {
    padding: 1rem 2.2rem;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(192,57,43,0.35);
  }

  .btn-hero:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(192,57,43,0.5);
  }

  .btn-hero svg.arrow { transition: transform 0.3s; }
  .btn-hero:hover svg.arrow { transform: translateX(4px); }

  .btn-ghost {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--red-dark);
    border: 2px solid rgba(192,57,43,0.3);
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }

  .btn-ghost:hover {
    border-color: var(--red);
    background: var(--red-pale);
    transform: translateY(-2px);
  }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    animation: fadeInUp 0.7s 0.4s ease both;
  }

  .stat-item { text-align: left; }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
  }

  /* ── HERO IMAGE SIDE ── */
  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s 0.3s ease both;
  }

  .hero-img-container {
    position: relative;
    width: 100%;
    max-width: 520px;
  }

  .hero-img-container img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 30px 30px 30px 90px;
    display: block;
    box-shadow: 0 30px 80px rgba(192,57,43,0.25);
  }

  .hero-img-overlay {
    position: absolute;
    inset: 0;
    border-radius: 30px 30px 30px 90px;
    background: linear-gradient(to top, rgba(192,57,43,0.2) 0%, transparent 60%);
  }

  .floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .card-left {
    bottom: 60px;
    left: -40px;
    animation-delay: 0s;
  }

  .card-right {
    top: 60px;
    right: -30px;
    animation-delay: 1.5s;
  }

  .card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--red-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--red);
  }

  .card-text-title {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 400;
  }

  .card-text-val {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
  }

  /* ── SECTION COMMONS ── */
  section { padding: 6rem 5%; }

  .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.2rem;
  }

  .section-title em {
    font-style: italic;
    color: var(--red);
  }

  /* ── STORY SECTION ── */
  .story {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .story-images {
    position: relative;
    height: 520px;
  }

  .story-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 72%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }

  .story-img-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 58%;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    border: 6px solid white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }

  .story-quote {
    position: absolute;
    bottom: 140px;
    left: -20px;
    background: var(--red);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    max-width: 200px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
    box-shadow: 0 10px 30px rgba(192,57,43,0.4);
  }

  .story-quote::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
    opacity: 0.6;
  }

  .story-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
  }

  .story-highlight {
    background: var(--red-pale);
    border-left: 4px solid var(--red);
    padding: 1.2rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
  }

  .story-highlight p {
    font-size: 1rem;
    color: var(--red-dark);
    font-weight: 500;
    line-height: 1.7;
  }

  /* ── IMPACT ── */
  .impact {
    background: var(--dark);
    color: white;
    text-align: center;
  }

  .impact .section-title { color: white; }
  .impact .section-label { color: var(--red-light); }

  .impact-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto 4rem;
    line-height: 1.8;
  }

  .impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .impact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .impact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192,57,43,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .impact-card:hover::before { opacity: 1; }
  .impact-card:hover {
    border-color: rgba(192,57,43,0.5);
    transform: translateY(-6px);
  }

  .impact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(192,57,43,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
  }

  .impact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--red-light);
  }

  .impact-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--red-light);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .impact-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
  }

  /* ── HOW IT WORKS ── */
  .how {
    background: var(--white);
    text-align: center;
  }

  .how-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 4rem;
    line-height: 1.8;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
    z-index: 0;
  }

  .step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .step-num {
    width: 56px; height: 56px;
    background: white;
    border: 3px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
    margin: 0 auto 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 0 0 6px var(--cream);
  }

  .step:hover .step-num {
    background: var(--red);
    color: white;
    box-shadow: 0 0 0 6px var(--red-pale), 0 8px 25px rgba(192,57,43,0.3);
  }

  .step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.6rem;
  }

  .step-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
  }

  /* ── CHILDREN GALLERY ── */
  .children {
    background: var(--cream);
    text-align: center;
  }

  .children-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
  }

  .gallery-item:first-child {
    grid-row: span 2;
    border-radius: 24px;
  }

  .gallery-item:hover { transform: scale(1.03); }

  .gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
  }

  .gallery-item:first-child img { min-height: 100%; }

  .gallery-item:hover img { transform: scale(1.08); }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(100,30,22,0.85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-name {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .gallery-age {
    color: var(--red-light);
    font-size: 0.8rem;
  }

  /* ── TESTIMONIAL ── */
  .testimonial {
    background: white;
    padding: 6rem 5%;
  }

  .testimonial-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .big-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    position: relative;
  }

  .big-quote::before {
    content: '\201C';
    font-size: 8rem;
    color: var(--red-pale);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    z-index: -1;
  }

  .quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .author-img {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--red-light);
  }

  .author-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
  }

  .author-role {
    font-size: 0.85rem;
    color: var(--gray);
  }

  /* ── DONATE CTA ── */
  .donate-cta {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-deep) 100%);
    color: white;
    text-align: center;
    padding: 7rem 5%;
    position: relative;
    overflow: hidden;
  }

  .donate-cta::before {
    content: '';
    position: absolute;
    top: -300px; left: -300px;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
  }

  .donate-cta::after {
    content: '';
    position: absolute;
    bottom: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
  }

  .donate-cta .section-label { color: var(--red-light); }

  .donate-cta .section-title {
    color: white;
    max-width: 680px;
    margin: 0 auto 1.5rem;
  }

  .donate-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 3rem;
    line-height: 1.8;
  }

  .donate-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  .btn-white {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--red-dark);
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  }

  .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.35);
  }

  .btn-white svg {
    width: 18px;
    height: 18px;
    color: var(--red);
  }

  .btn-white-outline {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-white-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
  }

  .btn-white-outline svg {
    width: 18px;
    height: 18px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 3rem 5%;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
  }

  .footer-drop {
    width: 28px; height: 28px;
    background: var(--red);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
  }

  .footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
  }

  .footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--red-light); }

  .footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
  }
/* ── FOOTER APP ICONS ── */
.footer-apps {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-apps a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer-apps a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.footer-apps svg {
  width: 24px;
  height: 24px;
}
  /* ── ANIMATIONS ── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 8rem; }
    .hero-sub { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 3rem; }
    .card-left { left: 0; }
    .card-right { right: 0; }
    .story { grid-template-columns: 1fr; }
    .story-images { height: 350px; }
    .impact-grid { grid-template-columns: 1fr; max-width: 360px; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { grid-row: auto; }
    .nav-links { display: none; }
  }
  