/* ==========================================
   SEGUNDO GALOPE — Estilos principales
   ========================================== */

:root {
  --cream:        #F5F0E8;
  --cream-dark:   #EDE5D0;
  --cream-deeper: #E0D4BA;
  --brown:        #6B4226;
  --brown-light:  #A0704A;
  --brown-dark:   #3E2112;
  --brown-hover:  #7A4D2D;
  --text:         #2C1810;
  --text-muted:   #7A6050;
  --white:        #FFFFFF;

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

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(62, 33, 18, 0.08);
  --shadow-md: 0 8px 24px rgba(62, 33, 18, 0.12);
  --shadow-lg: 0 20px 48px rgba(62, 33, 18, 0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

em { font-style: italic; color: var(--brown); }

p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-light);
  background: rgba(107, 66, 38, 0.08);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label.light {
  color: var(--cream);
  background: rgba(245, 240, 232, 0.2);
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--brown-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}
.btn-primary:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.6);
}
.btn-outline:hover {
  background: rgba(245, 240, 232, 0.15);
  border-color: var(--cream);
}

.btn-cream {
  background: var(--cream);
  color: var(--brown-dark);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.5);
}
.btn-outline-cream:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: var(--cream);
}

.btn-full { width: 100%; }

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brown-dark);
  height: var(--nav-height);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.logo-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border: none;
  outline: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--cream);
  background: rgba(245, 240, 232, 0.1);
}

.nav-link.nav-cta {
  background: var(--brown);
  color: var(--cream);
  margin-left: 8px;
  padding: 8px 20px;
}
.nav-link.nav-cta:hover {
  background: var(--brown-hover);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero-outer {
  height: 300vh;
  position: relative;
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(62, 33, 18, 0.55) 0%,
    rgba(62, 33, 18, 0.7) 60%,
    rgba(62, 33, 18, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 24px;
}

.hero-tagline {
  color: var(--cream-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-title {
  color: var(--cream);
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-title em {
  color: var(--cream-dark);
  font-style: italic;
}

.hero-subtitle {
  color: rgba(245, 240, 232, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 240, 232, 0.6);
  width: 36px;
  height: 36px;
  animation: bounce 2s infinite;
  z-index: 1;
  transition: color var(--transition);
}
.hero-scroll:hover { color: var(--cream); }
.hero-scroll svg { width: 100%; height: 100%; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-title { margin-top: 12px; }

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-deeper);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-image { position: relative; }

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.image-frame:hover img { transform: scale(1.04); }

.image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(62, 33, 18, 0.85);
  backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}
.image-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: #e05c5c;
}

/* ===== PROGRAMS ===== */
.programs { background: var(--cream-dark); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cream-deeper);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(107, 66, 38, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brown);
  transition: background var(--transition);
}
.program-card:hover .card-icon {
  background: rgba(107, 66, 38, 0.18);
}
.card-icon svg {
  width: 28px;
  height: 28px;
}

.program-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.program-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62, 33, 18, 0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
}

/* ===== DONATIONS ===== */
.donate {
  position: relative;
  background: url('https://images.unsplash.com/photo-1534307671554-9a6d81f4d629?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  background-attachment: fixed;
  padding: 120px 0;
}

.donate-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62, 33, 18, 0.92) 0%, rgba(107, 66, 38, 0.88) 100%);
}

.donate .container { position: relative; z-index: 1; }

.donate-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.donate-content .section-title {
  color: var(--cream);
  margin-bottom: 20px;
}
.donate-content .section-title em {
  color: var(--cream-dark);
}

.donate-desc {
  color: rgba(245, 240, 232, 0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

.donate-impact {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.impact-item { text-align: center; }

.impact-amount {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}

.impact-desc {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.7);
  letter-spacing: 0.04em;
}

.donate-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact { background: var(--cream-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-top: 12px; margin-bottom: 20px; }
.contact-info > p { margin-bottom: 32px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brown);
}
.contact-item a:hover { color: var(--brown); }

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 18px;
  border: 1.5px solid rgba(107, 66, 38, 0.3);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

/* ===== FORM ===== */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream-dark);
  border: 1.5px solid var(--cream-deeper);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(107, 66, 38, 0.12);
}
.form-group select { cursor: pointer; }

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
}

.modal-content h3 {
  margin-bottom: 24px;
  color: var(--text);
}

.qr-image {
  max-width: 300px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
}

.modal-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark);
  color: rgba(245, 240, 232, 0.7);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  margin-bottom: 16px;
}
.footer-tagline {
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }

.footer-contact a {
  display: block;
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--cream); }

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.2);
  color: rgba(245, 240, 232, 0.6);
  transition: all var(--transition);
  margin-bottom: 0;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover {
  background: rgba(245, 240, 232, 0.12);
  border-color: rgba(245, 240, 232, 0.5);
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: rgba(245, 240, 232, 0.4); margin-bottom: 0; }

/* ===== ADOPTION ===== */
.adopt { background: var(--cream); }

.adopt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.adopt-step {
  position: relative;
  padding: 36px 28px 36px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--brown-light);
  transition: all var(--transition);
}
.adopt-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(107, 66, 38, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.adopt-step h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}

.adopt-step p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.adopt-cta { margin-top: 16px; }

.adopt-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
}

.adopt-cta-text h3 {
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.adopt-cta-text p {
  color: rgba(245, 240, 232, 0.75);
  margin: 0;
  max-width: 480px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .logo-icon { width: 40px; height: 40px; }
  .nav-logo { font-size: 1rem; gap: 8px; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--brown-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; text-align: left; }
  .nav-link.nav-cta { margin-left: 0; text-align: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .image-frame img { height: 360px; }
  .about-stats { gap: 24px; }

  /* Programs */
  .programs-grid { grid-template-columns: 1fr; }

  /* Adopt */
  .adopt-grid { grid-template-columns: 1fr; }
  .adopt-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }
  .adopt-cta-text p { max-width: 100%; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  /* Donate */
  .donate { background-attachment: scroll; }
  .donate-impact { gap: 32px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .donate-actions { flex-direction: column; align-items: center; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
  }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 24px; }
}
