/* ==========================================================================
   ELEVA YOGA — estilos base del sitio
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Paleta — Terracotta */
  --terracotta-900: #8A4319;
  --terracotta-700: #A95624;
  --terracotta-400: #D4A780;
  --terracotta-200: #EAD3B8;

  /* Paleta — Green */
  --green-900: #22261F;
  --green-700: #3A4232;
  --green-400: #8A9B7B;
  --green-100: #E1E8D9;

  /* Paleta — Blue */
  --blue-700: #4E86B3;
  --blue-100: #E6F1FA;

  /* Crema — reemplaza cualquier fondo blanco */
  --cream: #F6EBDA;
  --white: #FFFEFB;
  --ink: var(--green-900);

  --font-display: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 12px 32px -12px rgba(34, 38, 31, 0.25);

  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.section-lead {
  max-width: 620px;
  color: var(--green-700);
  font-size: 1.05rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--green-700);
  margin: 0;
}

.section-head-tight h2 { margin-bottom: 0; }
.section-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: var(--blue-700);
  margin: 2px 0 0;
}

.title-upper { text-transform: uppercase; }

section { position: relative; }

.section-pad { padding: 88px 0; }

@media (max-width: 720px) {
  .section-pad { padding: 56px 0; }
}

/* ---------------------------------- Botones ---------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--blue-700);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-700); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-light {
  background: var(--cream);
  color: var(--blue-700);
}
.btn-light:hover { background: var(--blue-100); }

.btn-block { width: 100%; }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------------------------------- Header ---------------------------------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(246, 235, 218, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(34,38,31,0.08);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link { display: flex; align-items: center; height: 26px; }
.logo-link img { height: 100%; width: auto; }

.logo-mask {
  display: inline-block;
  width: 135px;
  height: 100%;
  background-color: var(--blue-700);
  -webkit-mask-image: url('../images/logos/logo-negro-wordmark.png');
  mask-image: url('../images/logos/logo-negro-wordmark.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: left center;
  mask-position: left center;
}

@media (max-width: 480px) {
  .logo-link { height: 20px; }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-700);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:not(.btn):hover {
  color: var(--blue-700);
  border-color: var(--blue-700);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 880px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(34,38,31,0.08);
    box-shadow: 0 16px 24px -16px rgba(0,0,0,0.15);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav a:not(.btn) {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(34,38,31,0.06);
  }
  .main-nav .btn { margin-top: 12px; }
  .nav-toggle { display: flex; }
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------- Hero ---------------------------------- */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 20%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,38,31,0.15) 0%, rgba(34,38,31,0.25) 45%, rgba(34,38,31,0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 64px;
  width: 100%;
}

.hero-content .eyebrow { color: var(--blue-100); }

.hero-title {
  font-size: clamp(2.2rem, 5.4vw, 3.8rem);
  max-width: 780px;
  color: var(--white);
}

.hero-subtitle {
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--green-100);
  margin-bottom: 32px;
}

.hero-lines { margin-bottom: 32px; }
.hero-lines .hero-subtitle { margin-bottom: 4px; }

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.hero-links a:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.hero .card-actions a.btn-outline { border-color: rgba(255,255,255,0.7); color: var(--white); }
.hero .card-actions a.btn-outline:hover { background: var(--white); color: var(--green-900); }

/* ---------------------------------- Mini bio ---------------------------------- */

.bio-section { background: var(--cream); }

.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: center;
}

.bio-photo {
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.bio-text p { font-size: 1.08rem; color: var(--green-700); }

.bio-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

@media (max-width: 860px) {
  .bio-grid { grid-template-columns: 1fr; gap: 32px; }
  .bio-photo { max-width: 340px; margin: 0 auto; }
}

/* ---------------------------------- Cards de secciones (resumen) ---------------------------------- */

.cards-section .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 780px) {
  .card-grid { grid-template-columns: 1fr; }
  .cards-section .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

.summary-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.summary-card:hover { transform: translateY(-4px); }

.summary-card .card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.summary-card .card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.summary-card:hover .card-photo img { transform: scale(1.05); }

.summary-card .card-body {
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

@media (max-width: 780px) {
  .summary-card .card-body { padding: 28px; }
}

.card-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-700);
}

.summary-card h3 { font-size: 1.4rem; margin-bottom: 4px; }

.summary-card.accent-terracotta h3 {
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 0;
}

.big-card-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.02;
  margin-bottom: 14px;
}
.big-card-title span {
  display: block;
  font-size: 0.38em;
  font-weight: 700;
  color: var(--blue-100);
  margin-top: 10px;
}

.card-centered { justify-content: center; }

.text-center-all { align-items: center; text-align: center; }
.text-center-all .schedule-list { align-items: center; }
.text-center-all .card-actions { justify-content: center; }

.summary-card .card-meta {
  font-size: 0.92rem;
  color: var(--green-700);
  margin-bottom: 4px;
}

.summary-card p.card-desc { color: var(--green-700); }

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Talleres / formaciones: tarjeta destacada en verde oscuro */
.summary-card.accent-terracotta {
  background: var(--green-700);
  color: var(--white);
}
.summary-card.accent-terracotta .card-tag { color: var(--blue-100); }
.summary-card.accent-terracotta .big-card-title { color: var(--white); }
.summary-card.accent-terracotta .card-meta,
.summary-card.accent-terracotta p.card-desc { color: var(--green-100); }
.summary-card.accent-terracotta .card-actions a.btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.summary-card.accent-terracotta .card-actions a.btn-outline:hover {
  background: var(--white);
  color: var(--green-900);
}

/* ---------------------------------- Mentorías full-bleed (prueba) ---------------------------------- */

.fullbleed-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  border-top: 10px solid var(--cream);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fullbleed-photo { position: relative; overflow: hidden; }
.fullbleed-photo img { width: 100%; height: 100%; object-fit: cover; }
.fullbleed-body {
  background: var(--green-700);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  gap: 12px;
}
.fullbleed-heading { margin-bottom: 2px; }
.fullbleed-heading .section-title { color: var(--white); margin-bottom: 2px; }
.fullbleed-heading .tagline-lower {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--blue-100);
  margin: 0;
}

.fullbleed-body h3 { color: var(--white); font-size: 1.7rem; }
.fullbleed-body p { color: var(--green-100); }
.fullbleed-body .card-actions a.btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.fullbleed-body .card-actions a.btn-outline:hover { background: var(--white); color: var(--green-900); }

@media (max-width: 780px) {
  .fullbleed-split { grid-template-columns: 1fr; }
  .fullbleed-photo { min-height: 340px; }
  .fullbleed-body { padding: 40px 28px; }
}

/* ---------------------------------- Clases (detalle en home) ---------------------------------- */

.split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green-700);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-card .split-photo { min-height: 340px; }
.split-card .split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-card .split-body {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.split-card .split-body .eyebrow { color: var(--blue-100); }
.split-card .split-body h3 { color: var(--white); font-size: 1.7rem; }
.split-card .split-body p { color: var(--green-100); }
.split-card .card-actions a.btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.split-card .card-actions a.btn-outline:hover { background: var(--white); color: var(--green-900); }

@media (max-width: 780px) {
  .split-card { grid-template-columns: 1fr; }
  .split-card .split-photo { min-height: 220px; }
  .split-card .split-body { padding: 28px; }
}

.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.schedule-list li strong {
  font-family: var(--font-display);
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.schedule-list li span {
  display: block;
  color: var(--green-100);
  font-size: 0.92rem;
  line-height: 1.4;
}

/* ---------------------------------- Páginas de detalle: hero horizontal ---------------------------------- */

.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 720px) {
  .page-hero { min-height: 46vh; }
}

.page-hero-caption {
  background: var(--green-700);
  padding: 32px 0;
}
.page-hero-caption .section-title { color: var(--white); margin-bottom: 2px; }
.page-hero-caption .tagline-lower { color: var(--blue-100); }

/* ---------------------------------- Páginas de detalle: info-grid, galería, CTA ---------------------------------- */

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}
.feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--green-700);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-700);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}
.info-item p { margin: 6px 0 0; color: var(--green-700); }

@media (max-width: 780px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .info-grid { grid-template-columns: 1fr; }
}

.carousel-gallery {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.carousel-gallery-track {
  display: flex;
  transition: transform 0.4s ease;
}
.carousel-gallery-slide {
  flex: 0 0 100%;
  aspect-ratio: 4 / 3;
}
.carousel-gallery-slide img { width: 100%; height: 100%; object-fit: cover; }

.carousel-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--green-900);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background 0.15s ease;
}
.carousel-gallery-btn:hover { background: var(--white); }
.carousel-gallery-btn.prev { left: 14px; }
.carousel-gallery-btn.next { right: 14px; }

@media (max-width: 640px) {
  .carousel-gallery-btn { width: 36px; height: 36px; font-size: 1.3rem; }
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.photo-gallery-item {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 780px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .photo-gallery { grid-template-columns: 1fr; }
}

.schedule-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.schedule-card {
  background: var(--cream);
  border-top: 4px solid var(--blue-700);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  text-align: center;
}
.schedule-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.schedule-card p {
  color: var(--green-700);
  margin: 0;
  font-size: 1.05rem;
}
.schedule-card p + p { margin-top: 2px; }

@media (max-width: 640px) {
  .schedule-cards { grid-template-columns: 1fr; }
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 480px;
}
.price-list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(34,38,31,0.1);
  font-size: 1.1rem;
  color: var(--green-700);
}
.price-list li:last-child { border-bottom: none; }
.price-list li strong {
  font-family: var(--font-display);
  color: var(--blue-700);
  font-size: 1.2rem;
}

.cta-band {
  background: var(--green-700);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--green-100); max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band .card-actions a.btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.cta-band .card-actions a.btn-outline:hover { background: var(--white); color: var(--green-900); }

/* ---------------------------------- Testimonios ---------------------------------- */

.testimonials-section { background: var(--blue-100); }

.testimonial-carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 180px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.testimonial-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--blue-700);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}
.testimonial-arrow:hover { background: var(--blue-700); color: var(--white); }

@media (max-width: 640px) {
  .testimonial-arrow { width: 34px; height: 34px; font-size: 1.2rem; }
}

.testimonial-slide {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease;
}
.testimonial-slide.is-active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 18px;
}
.testimonial-quote::before { content: "\201C"; }
.testimonial-quote::after { content: "\201D"; }

.testimonial-author {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-900);
}
.testimonial-author span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--green-700);
  margin-top: 2px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.carousel-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(78,134,179,0.3);
  cursor: pointer;
  padding: 0;
}
.carousel-dots button.is-active { background: var(--blue-700); }


/* ---------------------------------- FAQ teaser ---------------------------------- */

.faq-teaser {
  background: var(--blue-100);
  text-align: center;
}
.faq-teaser h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.faq-teaser p { max-width: 520px; margin-left: auto; margin-right: auto; color: var(--green-700); }

/* ---------------------------------- FAQ acordeón ---------------------------------- */

.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(34,38,31,0.14);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
}
.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--blue-700);
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 4px 20px;
  margin: 0;
  color: var(--green-700);
}
.faq-item.is-open .faq-answer { max-height: 320px; }

/* ---------------------------------- Footer ---------------------------------- */

.site-footer {
  background: var(--green-900);
  color: var(--green-100);
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(225,232,217,0.15);
}

.footer-logo img { height: 30px; margin-bottom: 14px; }
.footer-logo p { color: var(--green-400); max-width: 280px; font-size: 0.92rem; }

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-100);
  margin-bottom: 4px;
}
.footer-links a, .footer-contact a, .footer-contact span {
  color: var(--green-100);
  font-size: 0.95rem;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--blue-100); }

.footer-cols { display: flex; gap: 64px; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--green-400);
}

@media (max-width: 640px) {
  .footer-cols { gap: 36px; flex-wrap: wrap; }
}
