/* ─── LEGACY & BUDDHA QUOTE ───────────────────────────────────────── */
#buddha-quote,
.legacy-quote {
  padding: 10rem 4rem;
  background: var(--cedar);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#buddha-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(184,131,42,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 30%, rgba(122,59,46,0.12) 0%, transparent 60%);
}
.buddha-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bq-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--saffron);
  opacity: 0.85;
  margin-bottom: 4rem;
  display: block;
}
.bq-text {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--stone);
  margin-bottom: 4rem;
}
.bq-text strong {
  font-weight: 400;
  color: var(--saffron);
  font-style: italic;
}
.bq-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.bq-line { flex:1; height:1px; background: rgba(237,232,224,0.12); }
.bq-attr {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(237,232,224,0.35);
}

@media (max-width: 768px) {
  #buddha-quote {
    padding: 6rem 5%;
    text-align: center;
  }

  .bq-eyebrow {
    margin-bottom: 2rem;
  }

  .bq-text {
    font-size: 1.8rem; /* Igualado a la sección de Motivación */
    line-height: 1.4;
    margin-bottom: 3rem;
  }

  .bq-divider {
    justify-content: center;
  }

  .bq-line {
    display: none; /* Quitamos las líneas laterales en móvil para centrar la atribución */
  }
}
