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

/* ─── VARIABLES ────────────────────────────────── */
:root {
  --bg:           #f7eede;
  --bg-alt:       #fffdf8;
  --bg-dark:      #2a3d22;
  --primary:      #3a6e2f;
  --sage:         #587c49;
  --sage-light:   #b7c8a8;
  --taupe:        #e4d2b6;
  --taupe-dark:   #c9b594;
  --text:         #2c2c2c;
  --text-muted:   #6b6b6b;
  --white:        #ffffff;
  --font-title:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── NAV ───────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 238, 222, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 210, 182, 0.6);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.nav-logo-mark {
  width: 1.25em;
  height: 1.25em;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  padding: 7px 15px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
  background: rgba(88,124,73,0.09);
}
.nav-links .nav-cta {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 9px 22px;
}
.nav-links .nav-cta:hover { background: var(--sage); }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(183,200,168,0.28), transparent 38%),
    radial-gradient(circle at 8% 82%, rgba(88,124,73,0.14), transparent 34%),
    linear-gradient(160deg, #f7eede 0%, #faf2e4 100%);
  padding: 76px 40px 88px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 64px;
  align-items: center;
}
.hero-logo-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}
.hero-logo {
  width: 258px;
  height: 258px;
  border-radius: 0%;
  object-fit: cover;
  box-shadow: 0 6px 28px rgba(58,110,47,0.2);
  border: 4px solid rgba(88,124,73,0.18);
  display: block;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(88,124,73,0.12);
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(38px, 5.2vw, 62px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--sage);
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(58,110,47,0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(58,110,47,0.32);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid rgba(58,110,47,0.22);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--sage);
  background: rgba(88,124,73,0.07);
}
.hero-photo-wrap { position: relative; }
.hero-photo-frame {
  border-radius: 40px 10px 40px 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow:
    0 28px 64px rgba(58,110,47,0.22),
    0 8px 24px rgba(58,110,47,0.12);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -22px;
  background: var(--white);
  border-radius: 22px;
  padding: 14px 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hero-badge .badge-num {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 900;
  color: var(--sage);
  line-height: 1;
}
.hero-badge .badge-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(183,200,168,0.22);
  pointer-events: none;
}
.hero-bg-blob.b1 { width: 380px; height: 380px; top: -100px; right: -70px; }
.hero-bg-blob.b2 { width: 220px; height: 220px; bottom: -50px; left: 34%; }

/* ─── STATS STRIP ───────────────────────────────── */
.stats-strip {
  background: var(--white);
  border-top: 1px solid rgba(228,210,182,0.5);
  border-bottom: 1px solid rgba(228,210,182,0.5);
  padding: 30px 40px;
}
.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 7px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ─── SECTION COMMONS ────────────────────────────── */
.section-wrap {
  max-width: 1180px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-block;
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 52px;
}

/* ─── MISSION ────────────────────────────────────── */
.mission {
  padding: 92px 40px;
  background: var(--bg);
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.mission-card {
  background: var(--white);
  border: 1px solid rgba(228,210,182,0.75);
  border-radius: 28px;
  padding: 34px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.2s;
}
.mission-card:hover {
  box-shadow: 0 14px 40px rgba(58,110,47,0.1);
  transform: translateY(-2px);
}
.mission-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(88,124,73,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.mission-body h3 {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.mission-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── GALLERY ────────────────────────────────────── */
.gallery {
  padding: 92px 40px;
  background: linear-gradient(180deg, #ede4d2 0%, var(--bg) 100%);
}
.gallery-header {
  max-width: 1180px;
  margin: 0 auto 48px;
}
.gallery-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.cat-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(228,210,182,0.82);
  border-radius: 24px;
  padding: 12px 12px 18px;
  box-shadow: 0 12px 34px rgba(58,110,47,0.08);
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s;
}
.cat-card:hover {
  border-color: rgba(88,124,73,0.38);
  box-shadow: 0 18px 44px rgba(58,110,47,0.13);
  transform: translateY(-3px);
}
.cat-card-photo {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--taupe);
}
.cat-card-photo img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  display: block;
  transform: translateZ(0) scale(1.01);
  backface-visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.cat-card:hover .cat-card-photo img { transform: translateZ(0) scale(1.07); }
.cat-card-name {
  margin-top: 14px;
  color: var(--primary);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.cat-card-sex {
  color: var(--sage);
  font-family: var(--font-body);
  font-size: 0.82em;
  font-weight: 700;
  margin-left: 6px;
  vertical-align: 0.04em;
}
.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ─── SOCIAL ─────────────────────────────────────── */
.social {
  padding: 92px 40px;
  background: var(--bg-alt);
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.social-card {
  border-radius: 32px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.social-card-tiktok {
  background: linear-gradient(135deg, #1a1a2e 60%, #2d2d4e 100%);
}
.social-card-instagram {
  background: linear-gradient(135deg, #6e2fa3 0%, #c93c3c 55%, #f5a623 100%);
}
.contact-direct {
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 15px;
  text-align: center;
}
.contact-direct a {
  color: var(--primary);
  font-weight: 700;
}
.contact-direct a:hover { color: var(--sage); }
.social-platform {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.social-handle {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
}
.social-desc {
  font-size: 14.5px;
  opacity: 0.82;
  font-weight: 300;
  line-height: 1.7;
  max-width: 360px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.16);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.28);
  width: fit-content;
  transition: background 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.26); }
.social-deco {
  position: absolute;
  right: 30px;
  bottom: 20px;
  font-size: 88px;
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ─── DONATE ─────────────────────────────────────── */
.donate {
  padding: 100px 40px;
  background:
    radial-gradient(circle at 18% 50%, rgba(90,158,71,0.28), transparent 42%),
    radial-gradient(circle at 82% 28%, rgba(183,200,168,0.18), transparent 36%),
    linear-gradient(140deg, #253e1c 0%, #3a6e2f 50%, #4d8a3f 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.donate-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.donate-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 30px;
}
.donate-title {
  font-family: var(--font-title);
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 20px;
}
.donate-title em {
  font-style: italic;
  color: var(--sage-light);
}
.donate-text {
  font-size: 16.5px;
  color: rgba(255,255,255,0.76);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 44px;
}
.donate-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 44px;
  min-height: 56px;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  transition: transform 0.15s, box-shadow 0.2s;
}
.donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}
.donate-btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.36);
  box-shadow: none;
}
.donate-btn-secondary:hover {
  box-shadow: 0 12px 34px rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.18);
}
.donate-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.46);
}
.donate-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.donate-blob.db1 { width: 540px; height: 540px; top: -200px; right: -120px; }
.donate-blob.db2 { width: 340px; height: 340px; bottom: -110px; left: -70px; }

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: #1f2d18;
  color: rgba(255,255,255,0.66);
  padding: 56px 40px 36px;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col ul a {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.9;
}
.footer-legal strong { color: rgba(255,255,255,0.66); }
.footer-legal code {
  font-family: monospace;
  color: rgba(255,255,255,0.52);
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.footer-social-btn svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.68);
  transition: fill 0.2s;
}
.footer-social-btn:hover {
  background: rgba(255,255,255,0.16);
}
.footer-social-btn:hover svg {
  fill: var(--white);
}

/* LEGAL PAGE */
.legal-page {
  padding: 72px 40px 92px;
  background: var(--bg);
}
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--font-title);
  font-size: clamp(34px, 4vw, 52px);
  color: var(--primary);
  line-height: 1.12;
  margin-bottom: 18px;
}
.legal-intro {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 44px;
}
.legal-section {
  border-top: 1px solid rgba(228,210,182,0.9);
  padding: 28px 0;
}
.legal-section h2 {
  color: var(--primary);
  font-family: var(--font-title);
  font-size: 24px;
  margin-bottom: 12px;
}
.legal-section p,
.legal-section li {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.8;
}
.legal-section ul {
  padding-left: 20px;
}
.legal-section a {
  color: var(--primary);
  font-weight: 700;
}
.legal-section a:hover {
  color: var(--sage);
}

/* ─── MOCKUP BADGE ───────────────────────────────── */
.mockup-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(42,61,34,0.96);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  z-index: 9999;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-photo-wrap { max-width: 400px; margin: 0 auto; }
  .hero-badge { left: 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .social-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 52px 20px 64px; }
  .mission, .gallery, .social, .donate { padding: 64px 20px; }
  .stats-strip { padding: 24px 20px; }
  .mission-card { flex-direction: column; gap: 14px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { border-radius: 18px; padding: 8px 8px 13px; }
  .cat-card-photo { border-radius: 13px; }
  .cat-card-name { font-size: 18px; margin-top: 10px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .site-footer { padding: 44px 20px 32px; }
  .donate-actions { flex-direction: column; align-items: stretch; }
  .donate-btn { width: 100%; padding: 16px 24px; }
}
