/* ═══════════════════════════════════════════════════════
   NOSOTROS — nosotros.html
═══════════════════════════════════════════════════════ */

.ns-hero {
  background: var(--bg);
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
}
.ns-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(var(--space-xl), 5vw, var(--space-3xl));
  align-items: center;
}
@media (max-width: 900px) {
  .ns-hero__grid { grid-template-columns: 1fr; }
}
.ns-hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: var(--ls-tight);
  color: var(--text);
  margin: var(--space-md) 0 var(--space-lg);
}
.ns-hero__title em {
  font-style: italic;
  color: var(--terracota);
}
.ns-hero__lead {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--text-soft);
  max-width: 60ch;
}
.ns-hero__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--arena);
}
.ns-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Manifiesto 3 columnas */
.ns-mani {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.ns-mani__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(var(--space-xl), 4vw, var(--space-2xl));
}
@media (max-width: 900px) {
  .ns-mani__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

.ns-mani__col {
  position: relative;
  padding-top: var(--space-lg);
}
.ns-mani__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-xl);
  color: var(--mostaza-d);
  display: block;
  margin-bottom: var(--space-md);
}
.ns-mani__num::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--mostaza);
  margin-bottom: var(--space-md);
}
.ns-mani__h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-xl);
  color: var(--text);
  margin: 0 0 var(--space-md);
  line-height: 1.2;
}
.ns-mani__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ns-mani__list li {
  padding: var(--space-sm) 0;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--text-soft);
  border-bottom: 1px dashed var(--hueso);
}
.ns-mani__list li::before {
  content: "·";
  color: var(--terracota);
  margin-right: var(--space-sm);
  font-weight: 700;
}

/* Cita editorial */
.ns-quote {
  position: relative;
}
.ns-quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 var(--space-lg);
  letter-spacing: var(--ls-tight);
}
.ns-quote__by {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: var(--ls-xwide);
  color: var(--mostaza-d);
  font-weight: 500;
}

/* ── CTA final: estilos portados de catalogo.css (no se cargaba aquí) + más aire ── */
.cat-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding-block: clamp(4rem, 9vw, 7rem);
}
.cat-cta__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--text);
  margin: var(--space-md) 0 var(--space-md);
}
.cat-cta__title em { font-style: italic; color: var(--terracota); }
.cat-cta__lead {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--text-soft);
  max-width: 52ch;
  margin: 0 auto var(--space-xl);
}
.cat-cta__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}
