:root {
  --green: #0f4a35;
  --green-2: #176245;
  --orange: #f28c28;
  --cream: #fff6e8;
  --cream-2: #f7ead7;
  --brown: #8b5f36;
  --dark: #12251e;
  --ink: #203028;
  --muted: #69766f;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(18, 37, 30, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}
img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 96px 0; }
.cream-band { background: linear-gradient(180deg, var(--cream), #fffaf2); }
.dark-band { background: radial-gradient(circle at top left, #1c6a4a, var(--green) 42%, var(--dark)); color: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.78rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.eyebrow.green { color: var(--green); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1, h2 { font-family: "Playfair Display", serif; }
h1 { font-size: clamp(2.6rem, 6vw, 5.8rem); max-width: 950px; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); max-width: 820px; }
h3 { font-size: 1.2rem; }
p { margin: 0; color: var(--muted); }
.dark-band p, .hero p, .page-hero p, .site-footer p { color: rgba(255,255,255,0.78); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(22px, calc((100vw - 1160px) / 2));
  color: var(--white);
  transition: 0.3s ease;
}
.site-header.scrolled, .site-header.menu-open {
  background: rgba(18, 37, 30, 0.96);
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 900; line-height: 1.05; }
.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  padding: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.24);
}
.brand small { display: block; color: var(--orange); font-size: 0.78rem; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--dark);
  box-shadow: 0 0 0 6px rgba(242,140,40,0.18);
}
.main-nav { display: flex; align-items: center; gap: 30px; font-weight: 800; font-size: 0.92rem; }
.main-nav a { position: relative; opacity: 0.9; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  background: var(--orange);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  font-weight: 900;
  background: rgba(255,255,255,0.08);
}
.menu-toggle { display: none; border: 0; background: var(--orange); color: var(--dark); width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem; }

.hero, .page-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; color: var(--white); }
.page-hero { min-height: 62vh; }
.hero-bg, .hero-shade { position: absolute; inset: 0; }
.hero-bg { background-position: center; background-size: cover; transform: scale(1.04); animation: heroZoom 10s ease-out forwards; }
.hero-shade { background: linear-gradient(90deg, rgba(18,37,30,0.92), rgba(15,74,53,0.66), rgba(18,37,30,0.22)); }
.hero-content { position: relative; z-index: 2; padding-top: 112px; }
.hero-content p { max-width: 770px; margin-top: 22px; font-size: 1.15rem; }
.hero-actions, .donate-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--orange); color: var(--dark); box-shadow: 0 16px 34px rgba(242,140,40,0.35); }
.btn-light { background: var(--white); color: var(--green); }
.btn-whatsapp { background: #25d366; color: #062217; box-shadow: 0 16px 34px rgba(37,211,102,0.28); }
.pulse { animation: pulseGlow 2.5s ease-in-out infinite; }
.floating-icon {
  position: absolute;
  z-index: 1;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.72);
  font-size: 2rem;
  animation: floatIcon 6s ease-in-out infinite;
}
.paw-one { right: 12%; top: 28%; }
.paw-two { right: 24%; bottom: 16%; animation-delay: 1.2s; }

.strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: -128px; position: relative; z-index: 5; }
.strip-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--dark);
}
.strip-card img, .why-card img, .work-card img, .masonry-gallery img { height: 100%; transition: transform 0.6s ease; }
.strip-card:hover img, .why-card:hover img, .work-card:hover img, .masonry-gallery img:hover { transform: scale(1.08); }
.strip-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(18,37,30,0.82)); }
.strip-card span { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2; color: var(--white); font-weight: 900; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.image-stack { position: relative; }
.main-image { min-height: 560px; border-radius: 8px; box-shadow: var(--shadow); }
.mini-stat {
  position: absolute;
  right: -20px;
  bottom: 34px;
  width: 170px;
  padding: 22px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--dark);
  box-shadow: var(--shadow);
}
.mini-stat strong { display: block; font-size: 2rem; line-height: 1; }
.mini-stat span { font-weight: 900; font-size: 0.86rem; }
.section-copy p { margin-top: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--green); font-weight: 900; }
.section-head { margin-bottom: 42px; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform 0.25s ease, background 0.25s ease;
}
.work-card:hover, .why-card:hover, .testimonial:hover, .contact-card:hover, .value-card:hover { transform: translateY(-8px); }
.work-card img { height: 235px; }
.work-card div { padding: 25px; }
.work-card i, .value-card i, .contact-card i { color: var(--orange); font-size: 1.8rem; margin-bottom: 16px; }
.work-card h3 { margin-bottom: 10px; color: var(--white); }

.masonry-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.masonry-gallery img { height: 100%; border-radius: 8px; box-shadow: 0 12px 34px rgba(18,37,30,0.12); }
.masonry-gallery .tall { grid-row: span 2; }
.masonry-gallery .wide { grid-column: span 2; }

.impact { background: var(--green); color: var(--white); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.impact-card {
  padding: 34px 24px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  text-align: center;
}
.impact-card strong { display: block; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; font-family: "Playfair Display", serif; color: var(--orange); }
.impact-card span { display: block; margin-top: 10px; font-weight: 900; }

.poster-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.poster-frame {
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.poster-frame img {
  max-height: 980px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--cream);
}
.poster-points {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}
.poster-points span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(18,37,30,0.08);
}
.poster-points i { color: var(--orange); }

.testimonial-grid, .why-grid, .contact-grid, .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial, .value-card, .contact-card {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(18,37,30,0.08);
  transition: transform 0.25s ease;
}
.testimonial i { color: var(--orange); font-size: 1.7rem; margin-bottom: 14px; }
.testimonial p { margin-bottom: 16px; }
.stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 10px; }
.why-card { border-radius: 8px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); transition: transform 0.25s ease; }
.why-card img { height: 260px; }
.why-card h3, .why-card p { margin: 22px 24px 0; }
.why-card p { margin-bottom: 28px; }

.donate-cta { background: linear-gradient(135deg, var(--green), var(--dark)); color: var(--white); }
.donate-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
}
.donate-box h2 { color: var(--white); }
.donation-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.donation-details p {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.13);
}
.donation-details span { display: block; color: rgba(255,255,255,0.72); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; }
.donation-details strong { display: block; margin-top: 4px; color: var(--white); overflow-wrap: anywhere; }
.donation-details .donate-actions { grid-column: 1 / -1; margin-top: 8px; }
.qr-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0,0,0,0.18);
}
.qr-card img {
  width: 180px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 8px solid var(--cream);
}
.qr-card span {
  display: block;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}
.qr-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.2;
}

.contact-grid { grid-template-columns: repeat(4, 1fr); }
.contact-card { color: var(--ink); min-height: 220px; }
.contact-card span { display: block; color: var(--brown); font-weight: 900; margin-bottom: 8px; }
.contact-card strong { display: block; line-height: 1.45; overflow-wrap: anywhere; }
.values-grid { grid-template-columns: repeat(4, 1fr); }
.value-card h3 { margin-bottom: 10px; }
.statement { text-align: center; max-width: 850px; }
.statement h2 { margin: 0 auto; }
.statement p { margin: 20px auto 28px; max-width: 720px; }
.timeline { max-width: 900px; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(15,74,53,0.16);
}
.timeline-item span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--dark);
  font-weight: 900;
}

.site-footer { background: #0c1b16; color: var(--white); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr; gap: 36px; }
.footer-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--white);
  padding: 6px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
}
.site-footer h3, .site-footer h4 { margin: 0 0 16px; }
.site-footer a, .site-footer p { display: block; margin: 8px 0; color: rgba(255,255,255,0.72); }
.footer-bottom { margin-top: 54px; padding: 22px; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.62); }
.float-btn {
  position: fixed;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 14px 34px rgba(0,0,0,0.24);
  animation: floatButton 2.8s ease-in-out infinite;
}
.call-float { left: 22px; background: var(--orange); color: var(--dark); }
.whatsapp-float { right: 22px; background: #25d366; color: #062217; animation-delay: 0.5s; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.strip-card:nth-child(2), .work-card:nth-child(2), .why-card:nth-child(2) { transition-delay: 0.08s; }
.strip-card:nth-child(3), .work-card:nth-child(3), .why-card:nth-child(3) { transition-delay: 0.16s; }
.strip-card:nth-child(4), .work-card:nth-child(4) { transition-delay: 0.24s; }
.strip-card:nth-child(5), .work-card:nth-child(5) { transition-delay: 0.32s; }

@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.01); } }
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 16px 34px rgba(242,140,40,0.35); } 50% { box-shadow: 0 18px 48px rgba(242,140,40,0.62); } }
@keyframes floatIcon { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(8deg); } }
@keyframes floatButton { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

@media (max-width: 980px) {
  .menu-toggle { display: grid; place-items: center; }
  .header-phone { display: none; }
  .main-nav {
    position: absolute;
    top: 92px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: rgba(18,37,30,0.98);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }
  .site-header.menu-open .main-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px; }
  .main-nav a::after { display: none; }
  .strip-grid, .work-grid, .testimonial-grid, .why-grid, .impact-grid, .values-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .donate-box, .poster-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section-pad { padding: 68px 0; }
  .site-header { height: 70px; padding: 0 14px; }
  .brand { gap: 9px; font-size: 0.86rem; }
  .brand img { width: 54px; height: 54px; padding: 3px; }
  .brand-mark { width: 38px; height: 38px; }
  .main-nav { top: 70px; left: 14px; right: 14px; }
  .hero, .page-hero { min-height: 78vh; }
  .home-hero { min-height: 100vh; }
  .hero-content { padding-bottom: 120px; }
  .hero-content p { font-size: 1rem; }
  .hero-actions, .donate-actions { display: grid; }
  .btn { width: 100%; padding-left: 16px; padding-right: 16px; }
  .strip-grid, .work-grid, .testimonial-grid, .why-grid, .impact-grid, .contact-grid, .values-grid, .footer-grid, .donation-details { grid-template-columns: 1fr; }
  .strip-grid { margin-top: -80px; }
  .strip-card { min-height: 190px; }
  .main-image { min-height: 390px; }
  .mini-stat { right: 12px; bottom: 14px; width: 145px; padding: 17px; }
  .masonry-gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .masonry-gallery .tall, .masonry-gallery .wide { grid-row: auto; grid-column: auto; }
  .donate-box { padding: 26px; }
  .qr-card { grid-template-columns: 1fr; text-align: center; }
  .qr-card img { width: min(260px, 100%); margin: 0 auto; }
  .poster-frame { padding: 10px; }
  .poster-frame img { max-height: none; }
  .footer-logo { width: 92px; height: 92px; }
  .timeline-item { grid-template-columns: 1fr; gap: 14px; }
  .floating-icon { display: none; }
}
