/* =============================================================
   SECCIÓN 02 — FILOSOFÍA / SOBRE NOSOTROS
   Layout vanguardista: pullquote + imagen asimétrica
   Capricho del Mar by Z
============================================================= */

/* ── BANDA DE LOCALIDAD ──────────────────────────────────── */
.band-data {
  background: var(--c-deep-2);
  overflow: hidden;
}
.band-data-inner--simple {
  display: flex;
  align-items: center; justify-content: center;
  padding: clamp(1.25rem, 2.5vh, 2rem) var(--sp-side);
  max-width: 1400px; margin: 0 auto;
}
.band-location {
  font-family: var(--font-body);
  font-size: var(--sz-label);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-sea-mist);
}

/* ── SECCIÓN FILOSOFÍA PRINCIPAL ─────────────────────────── */
#filosofia {
  padding: var(--sp-section) var(--sp-side);
  max-width: 1400px; margin: 0 auto;
}

/* Pullquote grande — sin eyebrow label */
.philosophy-pullquote {
  margin-bottom: clamp(1.5rem, 4vw, 3.5rem);
}
.philosophy-pullquote-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--c-deep);
  max-width: 18ch;
}
.philosophy-pullquote-text .hl {
  color: var(--c-azure);
}
.philosophy-pullquote-rule {
  display: block;
  width: 48px; height: 2px;
  background: var(--c-gold);
  margin-top: 2.25rem;
}

/* Bloque imagen + texto — proporción 62/38 */
.philosophy-body-wrap {
  display: grid;
  grid-template-columns: 62fr 38fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.philosophy-image {
  position: relative; overflow: hidden;
}
.philosophy-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 0.9s var(--ease-luxury);
}
.philosophy-image:hover img { transform: scale(1.04); }

/* Marco decorativo */
.philosophy-image::after {
  content: '';
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 55%; height: 55%;
  border: 1px solid rgba(201,169,110,0.28);
  pointer-events: none;
  z-index: -1;
}

.philosophy-text-col {
  padding-top: 1.5rem;
}
.philosophy-body {
  font-size: var(--sz-body);
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-muted);
  margin-bottom: 2.5rem;
}
.philosophy-location {
  font-size: var(--sz-label);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.philosophy-address {
  font-size: var(--sz-body);
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .philosophy-body-wrap {
    grid-template-columns: 1fr;
  }
  .philosophy-pullquote-text {
    font-size: clamp(2rem, 8vw, 3.5rem);
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .band-data-inner { gap: 2rem; }
  .band-divider { display: none; }
}
