/* ==========================================================================
   MACON ANIMALS - Modern Animal Rescue Website v2
   ========================================================================== */

:root {
  --green-dark: #1a5d1a;
  --green-mid: #3a8a3a;
  --green-light: #5cb85c;
  --green-pale: #e8f5e8;
  --orange-warm: #e8954a;
  --orange-light: #f4b06c;
  --orange-pale: #fff5eb;
  --cream: #faf8f5;
  --cream-warm: #f5f0e8;
  --text-dark: #2d3436;
  --text-mid: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --shadow: rgba(26, 93, 26, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.12);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--green-dark);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
p { margin-bottom: var(--space-sm); }
a { color: var(--green-dark); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--orange-warm); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); position: relative; z-index: 1; }
.container-narrow { max-width: 800px; }
.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: var(--green-dark); color: var(--white); padding: var(--space-sm) var(--space-md); border-radius: var(--radius-sm); z-index: 9999; }
.skip-link:focus { top: var(--space-sm); color: var(--white); }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(26, 93, 26, 0.08);
  z-index: 1000;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem var(--space-md); max-width: 1400px; margin: 0 auto; }
.logo img { height: 55px; transition: transform var(--transition-medium); }
.logo:hover img { transform: scale(1.05); }
.nav { display: flex; align-items: center; gap: var(--space-xs); }
.nav-list { display: flex; align-items: center; list-style: none; gap: 0.25rem; }
.nav-link { display: block; padding: 0.5rem 0.875rem; font-family: var(--font-display); font-weight: 500; font-size: 0.9375rem; color: var(--text-dark); border-radius: var(--radius-full); transition: all var(--transition-fast); }
.nav-link:hover { background: var(--green-pale); color: var(--green-dark); }
.nav-link.active { background: var(--green-dark); color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.375rem; cursor: pointer; }
.nav-dropdown-toggle::after { content: ''; border: solid var(--text-mid); border-width: 0 2px 2px 0; padding: 2.5px; transform: rotate(45deg); margin-top: -2px; transition: transform var(--transition-fast); }
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(-135deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--white); border-radius: var(--radius-md); box-shadow: 0 10px 40px var(--shadow-dark); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition-fast); padding: 0.5rem; margin-top: 0.5rem; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-link { display: block; padding: 0.625rem 1rem; font-size: 0.9375rem; color: var(--text-dark); border-radius: var(--radius-sm); transition: all var(--transition-fast); }
.nav-dropdown-link:hover { background: var(--green-pale); color: var(--green-dark); }
.nav-cta { background: linear-gradient(135deg, var(--orange-warm), var(--orange-light)); color: var(--white) !important; padding: 0.625rem 1.25rem !important; font-weight: 600; box-shadow: 0 4px 15px rgba(232, 149, 74, 0.25); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232, 149, 74, 0.35); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; }

/* Hero */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  padding-top: 80px; overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--green-pale) 50%, var(--cream-warm) 100%);
}
.hero::before { content: ''; position: absolute; top: 20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, var(--orange-pale) 0%, transparent 70%); opacity: 0.7; }
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.hero-text { animation: fadeInUp 0.8s ease forwards; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; color: var(--orange-warm); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-md); }
.hero-eyebrow::before { content: '🐾'; }
.hero h1 { margin-bottom: var(--space-md); }
.hero-highlight { color: var(--orange-warm); position: relative; }
.hero-highlight::after { content: ''; position: absolute; bottom: 0.1em; left: 0; right: 0; height: 0.15em; background: var(--orange-warm); opacity: 0.3; border-radius: 2px; }
.hero-description { font-size: 1.25rem; color: var(--text-mid); margin-bottom: var(--space-lg); max-width: 520px; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.hero-stats { display: flex; gap: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid rgba(26, 93, 26, 0.1); }
.hero-stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--green-dark); line-height: 1; margin-bottom: 0.25rem; }
.hero-stat-label { font-size: 0.875rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-image { position: relative; animation: fadeInRight 0.8s ease 0.2s forwards; opacity: 0; }
.hero-image-wrapper { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); }
.hero-image img { width: 100%; height: 550px; object-fit: cover; }
.hero-image-badge { position: absolute; bottom: var(--space-md); left: var(--space-md); background: var(--white); padding: 0.875rem 1.25rem; border-radius: var(--radius-lg); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); display: flex; align-items: center; gap: 0.75rem; }
.hero-image-badge-icon { width: 40px; height: 40px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hero-image-badge-icon svg { width: 20px; height: 20px; fill: var(--green-dark); }
.hero-image-badge-text { font-family: var(--font-display); font-weight: 600; font-size: 0.875rem; color: var(--green-dark); }
.hero-image-badge-text span { display: block; font-weight: 400; color: var(--text-light); font-size: 0.75rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.75rem; font-family: var(--font-display); font-size: 1rem; font-weight: 600; border: none; border-radius: var(--radius-full); cursor: pointer; transition: all var(--transition-medium); }
.btn-primary { background: var(--green-dark); color: var(--white); box-shadow: 0 4px 15px rgba(26, 93, 26, 0.25); }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(26, 93, 26, 0.3); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--green-dark); border: 2px solid var(--green-dark); padding: calc(0.875rem - 2px) calc(1.75rem - 2px); }
.btn-secondary:hover { background: var(--green-dark); color: var(--white); }
.btn-accent { background: linear-gradient(135deg, var(--orange-warm), var(--orange-light)); color: var(--white); box-shadow: 0 4px 20px rgba(232, 149, 74, 0.3); }
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(232, 149, 74, 0.4); color: var(--white); }
.btn-large { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* Sections */
.section { padding: var(--space-2xl) 0; position: relative; overflow: hidden; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-green { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%); color: var(--white); }
.section-green h2, .section-green h3 { color: var(--white); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto var(--space-xl); }
.section-eyebrow { display: inline-flex; font-family: var(--font-display); font-size: 0.8125rem; font-weight: 600; color: var(--orange-warm); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: var(--space-sm); }
.section-header p { font-size: 1.125rem; color: var(--text-mid); margin-top: var(--space-sm); margin-bottom: 0; }
.section-green .section-header p { color: rgba(255, 255, 255, 0.85); }
.section-green .section-eyebrow { color: var(--orange-light); }

/* Impact Stats */
.impact-section { background: var(--white); border-top: 1px solid rgba(26, 93, 26, 0.08); border-bottom: 1px solid rgba(26, 93, 26, 0.08); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.impact-item { text-align: center; padding: var(--space-md); }
.impact-icon { width: 60px; height: 60px; margin: 0 auto var(--space-sm); background: linear-gradient(135deg, var(--green-pale), var(--cream)); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.impact-icon svg { width: 28px; height: 28px; fill: var(--green-dark); }
.impact-number { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--green-dark); line-height: 1; margin-bottom: 0.25rem; }
.impact-label { font-size: 0.9375rem; color: var(--text-mid); }

/* Feature Cards */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-lg); }
.feature-card { position: relative; text-align: center; padding: var(--space-xl) var(--space-lg); background: var(--white); border-radius: var(--radius-xl); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); border: 1px solid rgba(26, 93, 26, 0.06); transition: all var(--transition-medium); }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); border-color: var(--green-light); }
.feature-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: linear-gradient(90deg, var(--green-light), var(--orange-warm)); border-radius: 0 0 4px 4px; opacity: 0; transition: opacity var(--transition-medium); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 80px; height: 80px; margin: 0 auto var(--space-md); background: linear-gradient(135deg, var(--green-pale) 0%, var(--orange-pale) 100%); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; transition: transform var(--transition-medium); }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }
.feature-icon svg { width: 36px; height: 36px; fill: var(--green-dark); }
.feature-card h3 { margin-bottom: var(--space-sm); }
.feature-card p { color: var(--text-mid); margin-bottom: 0; }

/* Info Blocks */
.info-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.info-block.reverse { direction: rtl; }
.info-block.reverse > * { direction: ltr; }
.info-block-image { position: relative; }
.info-block-image-wrapper { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12); }
.info-block-image img { width: 100%; height: 450px; object-fit: cover; }
.info-block-image-accent { position: absolute; width: 200px; height: 200px; border-radius: 50%; z-index: -1; }
.info-block-image-accent-1 { top: -30px; right: -30px; background: var(--orange-pale); }
.info-block-image-accent-2 { bottom: -30px; left: -30px; background: var(--green-pale); }
.info-block-eyebrow { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 600; color: var(--orange-warm); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-sm); }
.info-block-content h2 { margin-bottom: var(--space-md); }
.info-block-content p { color: var(--text-mid); margin-bottom: var(--space-sm); font-size: 1.0625rem; line-height: 1.8; }
.info-block-content .btn { margin-top: var(--space-md); }

/* Quote Section */
.quote-section { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); padding: var(--space-xl) 0; text-align: center; position: relative; overflow: hidden; }
.quote-section::before, .quote-section::after { content: '"'; position: absolute; font-family: Georgia, serif; font-size: 20rem; color: rgba(255, 255, 255, 0.03); line-height: 1; }
.quote-section::before { top: -50px; left: 5%; }
.quote-section::after { bottom: -150px; right: 5%; transform: rotate(180deg); }
.quote-text { font-family: var(--font-display); font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 500; color: var(--white); max-width: 800px; margin: 0 auto; line-height: 1.5; position: relative; z-index: 1; }
.quote-author { margin-top: var(--space-md); font-size: 1rem; color: rgba(255, 255, 255, 0.7); position: relative; z-index: 1; }

/* Petfinder Widget */
.petfinder-section { padding: var(--space-2xl) 0; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
.petfinder-container { background: var(--white); border-radius: var(--radius-xl); padding: var(--space-xl); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06); border: 1px solid rgba(26, 93, 26, 0.06); }
#pf_widget { min-height: 400px; }

/* 3-3-3 Rule Cards */
.rule-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--space-lg); }
.rule-card { background: var(--white); border-radius: var(--radius-xl); padding: var(--space-lg); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); border: 1px solid rgba(26, 93, 26, 0.06); position: relative; overflow: hidden; transition: all var(--transition-medium); }
.rule-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green-dark), var(--green-light)); }
.rule-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); }
.rule-card-header { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-md); padding-bottom: var(--space-md); border-bottom: 1px solid rgba(26, 93, 26, 0.08); }
.rule-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; background: linear-gradient(135deg, var(--orange-warm), var(--orange-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.rule-card-header h3 { font-size: 1.375rem; }
.rule-card-header p { color: var(--text-light); font-size: 0.875rem; margin: 0; }
.rule-card ul { list-style: none; }
.rule-card li { position: relative; padding-left: 1.75rem; margin-bottom: 0.75rem; color: var(--text-mid); font-size: 0.9375rem; line-height: 1.5; }
.rule-card li::before { content: '🐾'; position: absolute; left: 0; font-size: 0.75rem; }
.rule-card li:last-child { margin-bottom: 0; }

/* Process Steps */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-lg); margin-top: var(--space-xl); }
.process-step { text-align: center; padding: var(--space-lg); }
.process-number { width: 64px; height: 64px; margin: 0 auto var(--space-md); background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: var(--white); font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 25px rgba(26, 93, 26, 0.25); position: relative; }
.process-number::after { content: ''; position: absolute; inset: -4px; border: 2px dashed var(--green-light); border-radius: 50%; opacity: 0.5; }
.process-step h3 { margin-bottom: var(--space-sm); }
.process-step p { color: var(--text-mid); font-size: 0.9375rem; margin-bottom: 0; }

/* Donate Section */
.donate-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--space-xl); align-items: start; }
.donate-content h2 { margin-bottom: var(--space-md); }
.donate-content p { color: var(--text-mid); margin-bottom: var(--space-sm); font-size: 1.0625rem; line-height: 1.8; }
.donate-highlight { background: linear-gradient(135deg, var(--green-pale), var(--cream)); padding: var(--space-md); border-radius: var(--radius-lg); border-left: 4px solid var(--green-dark); margin: var(--space-lg) 0; }
.donate-highlight p { color: var(--green-dark); font-weight: 600; font-size: 1.125rem; margin: 0; }
.donate-cta { position: sticky; top: 120px; text-align: center; padding: var(--space-xl); background: var(--white); border-radius: var(--radius-xl); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06); border: 1px solid rgba(26, 93, 26, 0.06); }
.donate-cta h3 { margin-bottom: var(--space-md); }
.donate-button { display: inline-block; margin-bottom: var(--space-md); transition: transform var(--transition-fast); }
.donate-button:hover { transform: scale(1.05); }
.donate-button img { height: 55px; }
.donate-impact { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); margin-top: var(--space-lg); }
.donate-impact-item { background: var(--cream); padding: var(--space-md); border-radius: var(--radius-md); text-align: center; }
.donate-impact-amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--green-dark); }
.donate-impact-desc { font-size: 0.8125rem; color: var(--text-mid); margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-xl); }
.contact-info h2 { margin-bottom: var(--space-md); }
.contact-info > p { color: var(--text-mid); margin-bottom: var(--space-lg); font-size: 1.0625rem; line-height: 1.8; }
.contact-details { list-style: none; }
.contact-details li { display: flex; align-items: flex-start; gap: var(--space-sm); margin-bottom: var(--space-md); padding: var(--space-md); background: var(--white); border-radius: var(--radius-md); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); }
.contact-details li:last-child { margin-bottom: 0; }
.contact-icon { width: 44px; height: 44px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; fill: var(--green-dark); }
.contact-details strong { display: block; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); margin-bottom: 0.25rem; }
.contact-details a { font-size: 1.125rem; font-weight: 600; }
.contact-form-wrapper { background: var(--white); border-radius: var(--radius-xl); padding: var(--space-xl); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06); border: 1px solid rgba(26, 93, 26, 0.06); }
.contact-form-wrapper h3 { margin-bottom: var(--space-lg); }
.form-group { margin-bottom: var(--space-md); }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9375rem; color: var(--text-dark); }
.form-input, .form-textarea { width: 100%; padding: 0.875rem 1rem; border: 2px solid #e2e8f0; border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; transition: all var(--transition-fast); background: var(--white); }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--green-mid); box-shadow: 0 0 0 3px var(--green-pale); }
.form-textarea { resize: vertical; min-height: 140px; }

/* Rental Cards */
.rentals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: var(--space-lg); }
.rental-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); border: 1px solid rgba(26, 93, 26, 0.06); transition: all var(--transition-medium); }
.rental-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); }
.rental-card-image { height: 220px; overflow: hidden; }
.rental-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.rental-card:hover .rental-card-image img { transform: scale(1.08); }
.rental-card-body { padding: var(--space-lg); }
.rental-card-body h3 { margin-bottom: 0.5rem; }
.rental-card-body p { color: var(--text-mid); font-size: 0.9375rem; margin-bottom: var(--space-sm); }

/* Page Header */
.page-header { padding: 140px 0 var(--space-xl); background: linear-gradient(160deg, var(--cream) 0%, var(--green-pale) 50%, var(--cream-warm) 100%); text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, var(--orange-pale) 0%, transparent 70%); opacity: 0.3; }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { margin-bottom: var(--space-sm); }
.page-header p { font-size: 1.25rem; color: var(--text-mid); max-width: 600px; margin: 0 auto; }

/* Footer */
.footer { background: var(--green-dark); color: var(--white); padding: var(--space-2xl) 0 var(--space-lg); position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green-light), var(--orange-warm), var(--green-light)); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer-brand img { height: 70px; margin-bottom: var(--space-md); filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255, 255, 255, 0.75); font-size: 0.9375rem; max-width: 280px; line-height: 1.7; margin-bottom: 0; }
.footer h4 { color: var(--white); font-size: 0.875rem; margin-bottom: var(--space-md); text-transform: uppercase; letter-spacing: 0.1em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: 0.9375rem; transition: all var(--transition-fast); display: inline-block; }
.footer-links a:hover { color: var(--white); transform: translateX(4px); }
.footer-newsletter p { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; margin-bottom: var(--space-md); line-height: 1.6; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input { flex: 1; padding: 0.75rem 1rem; border: none; border-radius: var(--radius-full); font-size: 0.9375rem; background: rgba(255, 255, 255, 0.1); color: var(--white); }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-form input:focus { outline: none; background: rgba(255, 255, 255, 0.15); }
.newsletter-form button { padding: 0.75rem 1.5rem; background: var(--orange-warm); color: var(--white); border: none; border-radius: var(--radius-full); font-family: var(--font-display); font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: background var(--transition-fast); }
.newsletter-form button:hover { background: var(--orange-light); }
.footer-bottom { padding-top: var(--space-lg); border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm); }
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; margin: 0; }
.footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom a:hover { color: var(--white); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: var(--space-xl); }
  .hero-text { order: 2; }
  .hero-image { order: 1; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .info-block { grid-template-columns: 1fr; gap: var(--space-xl); text-align: center; }
  .info-block.reverse { direction: ltr; }
  .info-block-content .btn { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-xl: 3rem; --space-2xl: 4rem; }
  .nav-list { position: fixed; top: 70px; left: 0; right: 0; bottom: 0; flex-direction: column; background: var(--white); padding: var(--space-lg); transform: translateX(-100%); transition: transform var(--transition-medium); gap: var(--space-sm); overflow-y: auto; }
  .nav-list.active { transform: translateX(0); }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: var(--space-md); display: none; margin-top: 0.5rem; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .mobile-toggle { display: flex; }
  .hero { min-height: auto; padding: 100px 0 var(--space-xl); }
  .hero-image img { height: 350px; }
  .hero-stats { flex-wrap: wrap; gap: var(--space-lg); }
  .donate-grid, .contact-grid { grid-template-columns: 1fr; }
  .donate-cta { position: static; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: var(--space-lg); }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .impact-number { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: var(--space-md); }
  .newsletter-form { flex-direction: column; }
  .feature-grid, .rule-cards, .process-grid, .rentals-grid { grid-template-columns: 1fr; }
  .donate-impact { grid-template-columns: 1fr; }
}
