/* ================================================
   RAÍCES GERONTOLÓGICAS – DESIGN SYSTEM & STYLES
   ================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Color Palette */
  --cream:          #f8f4ed;
  --cream-dark:     #f0e9dc;
  --cream-mid:      #ede4d3;
  --green-deep:     #2c4a28;
  --green-forest:   #3a5a36;
  --green-mid:      #4e7a48;
  --green-light:    #7aab72;
  --green-pale:     #d6e8d3;
  --gold:           #b8860b;
  --gold-light:     #d4a843;
  --gold-bright:    #f0c04a;
  --gold-pale:      #fdf3d7;
  --text-primary:   #2c3e28;
  --text-secondary: #4a5c45;
  --text-muted:     #7a8f74;
  --white:          #ffffff;
  --shadow-sm:      0 2px 8px rgba(44,74,40,0.08);
  --shadow-md:      0 6px 24px rgba(44,74,40,0.12);
  --shadow-lg:      0 16px 48px rgba(44,74,40,0.16);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 8rem;

  /* Typography */
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Border radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:   0.15s var(--ease-smooth);
  --transition-normal: 0.3s var(--ease-smooth);
  --transition-slow:   0.6s var(--ease-smooth);
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px; /* Base 18px as required */
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--green-deep);
}

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

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

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(184,134,11,0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248,244,237,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,134,11,0.2);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-full);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
}

.logo-accent {
  color: var(--gold);
  display: block;
}

/* Navigation */
.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-forest);
  background: var(--green-pale);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.burger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green-forest);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  transform-origin: center;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 74, 40, 0.72) 0%,
    rgba(44, 74, 40, 0.45) 50%,
    rgba(184, 134, 11, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(248,244,237,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(240,192,74,0.5);
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: var(--radius-full);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-title em {
  color: var(--gold-bright);
  font-style: normal;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 580px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ================================================
   INTRO STRIP
   ================================================ */
.intro-strip {
  background: var(--cream);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--cream-dark);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 2.5rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

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

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
  padding: var(--space-2xl) 0;
  background: var(--cream);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-lg);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(184,134,11,0.25);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-normal);
}

.service-card:hover .card-icon-wrap {
  background: linear-gradient(135deg, var(--green-forest), var(--green-mid));
}

.card-icon {
  width: 30px;
  height: 30px;
  color: var(--green-forest);
  transition: color var(--transition-normal);
}

.service-card:hover .card-icon {
  color: var(--white);
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}

/* ================================================
   ACTIVITIES SECTION
   ================================================ */
.activities-section {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.activities-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(74,122,72,0.06) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(184,134,11,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.activities-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.activities-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.image-frame:hover .activities-img {
  transform: scale(1.03);
}

.image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(248,244,237,0.95);
  backdrop-filter: blur(8px);
  border: 2px solid var(--gold-light);
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

/* Content column */
.activities-content-col .section-title {
  margin-bottom: 1rem;
}

.activities-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.activities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.activity-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.activity-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.activity-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--green-forest);
}

.activity-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
}

.activity-text p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================
   QUOTE SECTION
   ================================================ */
.quote-section {
  padding: var(--space-lg) 0;
  background: var(--cream);
}

.quote-card {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-forest) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.quote-leaf {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 1.25rem;
}

.quote-author {
  font-size: 0.95rem;
  font-style: normal;
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ================================================
   FOOTER / CONTACT
   ================================================ */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.85);
  padding-top: 0;
  position: relative;
}

.footer-wave {
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  display: block;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
  align-items: start;
}

/* Brand col */
.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-full);
  border: 3px solid rgba(184,134,11,0.5);
  margin-bottom: 1rem;
  background: var(--cream);
  padding: 4px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  word-break: break-all;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--gold-bright);
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-light);
}

/* Contact form col */
.contact-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.75rem;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
  padding: var(--space-2xl) 0;
  background: var(--cream-dark);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--green-light), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonials-grid .testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.testimonials-grid .testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.testimonials-grid .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}

.testimonials-grid .testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testimonials-grid .testimonial-text {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.testimonials-grid .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green-mid), var(--green-forest));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.testimonials-grid .testimonial-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-deep);
}

.testimonials-grid .testimonial-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ================================================
   TESTIMONIALS (footer – mantener para no romper nada)
   ================================================ */
.footer-testimonials { display: none; }
.testimonials-list   { display: none; }

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--gold-light);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  margin: 0;
  transition: background var(--transition-fast);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.11);
}

.testimonial-text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.testimonial-role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ================================================
   HOURS
   ================================================ */
.footer-hours {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-top: 1.25rem;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.25rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-day {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours-day-icon {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.hours-time {
  color: var(--gold-bright);
  font-weight: 600;
}

.hours-closed .hours-time {
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

.hours-contact-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.hours-contact-note svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.hours-contact-note p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}

.hours-note { display: none; } /* reemplazado por hours-contact-note */

/* Footer bottom */
.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-mission {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ================================================
   SCROLL ANIMATION
   ================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

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

.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  html { font-size: 17px; }

  .activities-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .activities-image-col {
    order: -1;
  }

  .activities-img {
    height: 340px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .quote-card {
    padding: var(--space-md);
  }

  .quote-card::before {
    font-size: 7rem;
    top: -0.25rem;
    left: 1rem;
  }
}

@media (max-width: 640px) {
  html { font-size: 16px; }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--gold-light);
    padding: 1rem var(--space-md) 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition-normal);
    pointer-events: none;
    z-index: 99;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    text-align: center;
  }

  .stat-item {
    padding: 0.75rem 1.25rem;
  }

  .stat-divider {
    display: none;
  }

  .stats-row {
    gap: 0.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .activities-img {
    height: 280px;
  }
}

/* ================================================
   UTILITIES
   ================================================ */
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: var(--cream);
}
*::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: var(--radius-full);
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--green-forest);
}
