/* =============================================
   SDAP LTD — Main Stylesheet
   ============================================= */

/* CSS Reset & Variables */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #2d6a4f;
  --green-dark:  #1b4332;
  --green-light: #52b788;
  --amber:       #f4a261;
  --amber-dark:  #e76f51;
  --cream:       #fdf8f0;
  --off-white:   #f5f0e8;
  --gray-100:    #f8f9fa;
  --gray-200:    #e9ecef;
  --gray-400:    #ced4da;
  --gray-600:    #6c757d;
  --gray-800:    #343a40;
  --dark:        #1a1a2e;
  --white:       #ffffff;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);

  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .04em; }
p  { color: var(--gray-600); }

a { color: inherit; text-decoration: none; transition: color var(--transition); }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.bg-light { background: var(--off-white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; }

.section-cta { text-align: center; margin-top: 48px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.col-text h2 { margin: 16px 0 20px; }
.col-text p  { margin-bottom: 14px; }
.col-text .btn { margin-top: 10px; }

/* ─── Eyebrow Labels ─── */
.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}
.eyebrow-light { color: var(--green-light); }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,.3);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline-dark:hover {
  background: var(--green-dark);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 22px;
  font-size: .88rem;
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-sm:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-large { padding: 18px 48px; font-size: 1.05rem; }

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 12px 0;
}
.navbar.scrolled .logo-text { color: var(--dark); }
.navbar.scrolled .nav-links a { color: var(--gray-800); }
.navbar.scrolled .nav-links a:hover { color: var(--green); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  transition: color var(--transition);
}
.logo-text span { color: var(--amber); }
.logo-light .logo-text { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); }

.btn-nav-donate {
  background: var(--amber) !important;
  color: var(--dark) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
}
.btn-nav-donate:hover {
  background: var(--amber-dark) !important;
  color: var(--white) !important;
}
.navbar.scrolled .btn-nav-donate { background: var(--green) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 40%, #40916c 70%, #52b788 100%);
}
/* Decorative pattern */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(244,162,97,.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(82,183,136,.2) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27,67,50,.3) 0%, rgba(27,67,50,.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}
.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.5;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--green-dark);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--amber);
  font-weight: 700;
}
.stat-label {
  display: block;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  margin-top: 4px;
}

/* ─── Mission Image ─── */
.mission-img-wrap { position: relative; }
.mission-img {
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
}
.mission-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--amber);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: 4px;
}

/* ─── Programs Grid ─── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-icon { font-size: 2.2rem; margin-bottom: 18px; }
.program-card h3 { margin-bottom: 12px; color: var(--dark); }
.link-more {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-weight: 600;
  font-size: .9rem;
}
.link-more:hover { color: var(--green-dark); }

/* ─── Animals ─── */
.animals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.animal-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.animal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.animal-img { height: 240px; width: 100%; }
.animal-info { padding: 24px; }
.animal-tag {
  display: inline-block;
  background: var(--off-white);
  color: var(--green);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.animal-info h3 { margin-bottom: 8px; color: var(--dark); }
.animal-info p  { font-size: .9rem; margin-bottom: 16px; }

/* ─── Donate CTA ─── */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(244,162,97,.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(82,183,136,.2) 0%, transparent 50%);
}
.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.cta-content h2 { color: var(--white); margin: 12px 0 16px; font-size: clamp(2rem, 4vw, 3rem); }
.cta-content > p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 40px; font-size: 1.05rem; }

.donate-amounts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.amount-btn {
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
}
.amount-btn:hover, .amount-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--dark);
}
.amount-custom { border-style: dashed; }

.cta-note {
  margin-top: 20px !important;
  color: rgba(255,255,255,.55) !important;
  font-size: .82rem !important;
}

/* ─── News ─── */
.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.news-card:hover { transform: translateY(-4px); }
.news-card-featured { grid-row: span 2; display: flex; flex-direction: column; }
.news-card-featured .news-img { height: 280px; }
.news-img { height: 180px; width: 100%; }
.news-body { padding: 24px; flex: 1; }
.news-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.news-body h3 { margin-bottom: 10px; color: var(--dark); font-size: 1.2rem; }

/* ─── Volunteer Banner ─── */
.volunteer-banner {
  background: var(--amber);
  padding: 60px 0;
}
.volunteer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.volunteer-text h2 { color: var(--green-dark); margin-bottom: 8px; }
.volunteer-text p  { color: var(--green-dark); opacity: .85; max-width: 520px; }

/* ─── Footer ─── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { margin-top: 16px; font-size: .9rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-col ul a:hover { color: var(--amber); }
.footer-contact li { margin-bottom: 12px; font-size: .9rem; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: var(--amber); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-weight: 700;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--green); color: var(--white); }

.footer-bottom { padding: 24px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.5); font-size: .82rem; }
.footer-legal a:hover { color: var(--amber); }

/* ─── Image Placeholders ─── */
.img-placeholder {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}
.img-dog    { background: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 440'%3E%3Crect width='400' height='440' fill='%232d6a4f'/%3E%3Cellipse cx='200' cy='200' rx='120' ry='110' fill='%2352b788'/%3E%3Ccircle cx='200' cy='160' r='60' fill='%23f4a261'/%3E%3Ccircle cx='178' cy='150' r='8' fill='%231b4332'/%3E%3Ccircle cx='222' cy='150' r='8' fill='%231b4332'/%3E%3Cellipse cx='200' cy='170' rx='12' ry='8' fill='%23e76f51'/%3E%3Cpath d='M176 185 Q200 200 224 185' stroke='%231b4332' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cellipse cx='158' cy='128' rx='18' ry='28' fill='%23f4a261' transform='rotate(-15 158 128)'/%3E%3Cellipse cx='242' cy='128' rx='18' ry='28' fill='%23f4a261' transform='rotate(15 242 128)'/%3E%3C/svg%3E"); }
.img-cat1   { background: linear-gradient(135deg, #40916c 0%, #74c69d 100%); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 240'%3E%3Crect width='400' height='240' fill='%2340916c'/%3E%3Cellipse cx='200' cy='140' rx='80' ry='70' fill='%2374c69d'/%3E%3Ccircle cx='200' cy='110' r='45' fill='%23f4a261'/%3E%3Ccircle cx='185' cy='103' r='7' fill='%231b4332'/%3E%3Ccircle cx='215' cy='103' r='7' fill='%231b4332'/%3E%3Cellipse cx='200' cy='118' rx='9' ry='6' fill='%23e76f51'/%3E%3Cpath d='M178 130 Q200 142 222 130' stroke='%231b4332' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3Cpath d='M168 78 L180 95' stroke='%23f4a261' stroke-width='3'/%3E%3Cpath d='M178 72 L183 92' stroke='%23f4a261' stroke-width='3'/%3E%3Cpath d='M232 78 L220 95' stroke='%23f4a261' stroke-width='3'/%3E%3Cpath d='M222 72 L217 92' stroke='%23f4a261' stroke-width='3'/%3E%3C/svg%3E"); }
.img-dog2   { background: linear-gradient(135deg, #1b4332 0%, #40916c 100%); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 240'%3E%3Crect width='400' height='240' fill='%231b4332'/%3E%3Cellipse cx='200' cy='150' rx='100' ry='80' fill='%2340916c'/%3E%3Ccircle cx='200' cy='110' r='50' fill='%23f4a261'/%3E%3Ccircle cx='182' cy='103' r='8' fill='%231b4332'/%3E%3Ccircle cx='218' cy='103' r='8' fill='%231b4332'/%3E%3Cellipse cx='200' cy='118' rx='10' ry='7' fill='%23e76f51'/%3E%3Cpath d='M180 130 Q200 144 220 130' stroke='%231b4332' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cellipse cx='168' cy='88' rx='16' ry='26' fill='%23f4a261' transform='rotate(-12 168 88)'/%3E%3Cellipse cx='232' cy='88' rx='16' ry='26' fill='%23f4a261' transform='rotate(12 232 88)'/%3E%3C/svg%3E"); }
.img-rabbit { background: linear-gradient(135deg, #52b788 0%, #95d5b2 100%); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 240'%3E%3Crect width='400' height='240' fill='%2352b788'/%3E%3Cellipse cx='200' cy='155' rx='70' ry='65' fill='%2395d5b2'/%3E%3Ccircle cx='200' cy='115' r='42' fill='%23fdf8f0'/%3E%3Ccircle cx='186' cy='108' r='6' fill='%231b4332'/%3E%3Ccircle cx='214' cy='108' r='6' fill='%231b4332'/%3E%3Cellipse cx='200' cy='122' rx='7' ry='5' fill='%23e76f51'/%3E%3Crect x='185' y='73' width='12' height='38' rx='6' fill='%23fdf8f0'/%3E%3Crect x='203' y='73' width='12' height='38' rx='6' fill='%23fdf8f0'/%3E%3C/svg%3E"); }
.img-news1  { background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%); }
.img-news2  { background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%); }
.img-news3  { background: linear-gradient(135deg, #52b788 0%, #74c69d 100%); }

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 160px 0 80px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin: 12px 0; }
.page-hero p  { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: var(--amber); }

/* Form styles */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: .92rem;
  color: var(--gray-800);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--dark);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(27,67,50,.97);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: rgba(255,255,255,.9) !important; font-size: 1rem; }

  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .col-image { order: -1; }
  .mission-img { height: 300px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .programs-grid { grid-template-columns: 1fr; }
  .animals-grid  { grid-template-columns: 1fr; }

  .news-grid { grid-template-columns: 1fr; }
  .news-card-featured { grid-row: span 1; }

  .volunteer-inner { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .donate-amounts { gap: 8px; }
  .amount-btn { padding: 10px 20px; font-size: .88rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding-top: 80px; }
}
