/* ===========================================================
   Nuestra Historia — reutiliza variables y estilos de style.css
   =========================================================== */

.nosotros-header { justify-content: space-between; }
.back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.back-link:hover { color: var(--gold); }

.nh-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

/* ---- Hero ---- */
.nh-hero {
  position: relative;
  height: 60vh;
  min-height: 340px;
  max-height: 560px;
  overflow: hidden;
}
.nh-hero img { width: 100%; height: 100%; object-fit: cover; }
.nh-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}
.nh-hero-overlay .nh-eyebrow { color: var(--gold); }
.nh-hero-overlay h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.15;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* ---- Layout general ---- */
.nh-main { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.nh-section { padding: 56px 0; border-bottom: 1px solid var(--border-dark); }
.nh-section:last-child { border-bottom: none; }
.nh-section h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 20px;
}

/* ---- Historia ---- */
.nh-story p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 0 16px;
}

/* ---- Galería ---- */
.nh-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.nh-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--card-bg);
}
.nh-gallery .nh-g-wide {
  grid-column: span 3;
  height: 320px;
}
@media (max-width: 700px) {
  .nh-gallery { grid-template-columns: repeat(2, 1fr); }
  .nh-gallery .nh-g-wide { grid-column: span 2; height: 220px; }
  .nh-gallery img { height: 150px; }
}

/* ---- Instagram ---- */
.nh-ig-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 24px;
}
.nh-ig-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.nh-ig-handle { font-weight: 700; font-size: 15px; margin: 0 0 4px; }
.nh-ig-followers { font-size: 14px; color: var(--text-muted); margin: 0 0 14px; line-height: 1.5; }
@media (max-width: 560px) {
  .nh-ig-card { flex-direction: column; text-align: center; }
}

/* ---- Botones ---- */
.nh-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.nh-btn-gold { background: var(--gold); color: #1c0a0c; }
.nh-btn-gold:hover { filter: brightness(1.08); }
.nh-btn-ghost { border: 1px solid var(--border); color: var(--text); }
.nh-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Visita ---- */
.nh-visit-line { font-size: 15px; color: var(--text-muted); margin: 0 0 6px; }
.nh-visit-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
