:root {
  --green: #2E8B57;
  --green-dark: #1f6b41;
  --yellow: #F4C430;
  --orange: #F58220;
  --orange-dark: #d96c0f;
  --cream: #FFF9EF;
  --ink: #2b2b2b;
  --muted: #5f6b63;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(46, 139, 87, 0.15);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  color: var(--green-dark);
}

a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  box-shadow: var(--shadow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.12); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green-dark);
}
.site-brand:hover { text-decoration: none; }
.brand-paw { font-size: 1.5rem; }

.site-nav { display: flex; align-items: center; gap: 22px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--ink);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: .95rem;
}
.nav-menu a:hover { color: var(--orange-dark); text-decoration: none; }
.nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 800;
}
.nav-cta:hover { background: var(--green-dark); color: var(--white); text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: .25s;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}
.hero-title { color: var(--white); font-size: 2.6rem; margin: 0 0 16px; }
.hero-subtitle { font-size: 1.25rem; max-width: 640px; margin: 0 auto 30px; opacity: .95; }

/* Sections */
.section { padding: 70px 0; }
.section-mission { background: var(--white); }
.section-title { font-size: 2rem; text-align: center; margin: 0 0 24px; }
.section-text { font-size: 1.08rem; max-width: 820px; margin: 0 auto 24px; text-align: center; color: var(--muted); }

.address-card {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
  background: var(--cream);
  border: 2px dashed var(--yellow);
  border-radius: var(--radius);
  padding: 18px 24px;
}
.address-card p { margin: 0; font-weight: 700; color: var(--green-dark); }
.address-icon { font-size: 1.6rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.contact-info p { margin: 0 0 16px; }
.social-links { display: flex; gap: 16px; }
.social-links a { font-weight: 800; }
.contact-cta { text-align: center; }

/* Footer */
.site-footer { background: var(--green-dark); color: #eafff2; margin-top: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 50px 20px;
}
.footer-brand { color: var(--yellow); margin: 0 0 12px; font-size: 1.1rem; }
.footer-col h4 { color: var(--yellow); margin: 0 0 12px; }
.footer-col p { margin: 0 0 8px; font-size: .95rem; }
.footer-col a { color: #eafff2; }
.footer-bottom {
  background: rgba(0,0,0,.2);
  text-align: center;
  padding: 16px 0;
  font-size: .9rem;
}
.footer-bottom p { margin: 0; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .45);
  z-index: 200;
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); text-decoration: none; }

/* Pages / posts */
.page-article, .single-article { max-width: 800px; margin: 0 auto; }
.page-article .section-title, .single-article .section-title { text-align: left; }
.entry-content { font-size: 1.05rem; color: var(--ink); }
.privacy-page h2 { margin-top: 30px; font-size: 1.25rem; }
.privacy-page p { color: var(--muted); }
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 26px;
}
.post-card-body { padding: 22px; }
.post-meta { color: var(--muted); font-size: .9rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    box-shadow: 0 8px 18px rgba(0,0,0,.1);
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-menu li { border-bottom: 1px solid #eee; }
  .nav-menu a { display: block; padding: 12px 0; }
  .nav-cta { text-align: center; margin-top: 12px; }
  .hero-title { font-size: 2rem; }
  .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { padding: 24px; }
}
