/* ─────────────────────────────────────────
   Hero — Full Viewport Dark Impact
───────────────────────────────────────── */

.dpope-hero {
  position: relative;
  background-color: var(--color-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle grain texture via SVG */
.dpope-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}

/* Bottom accent line */
.dpope-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primario) 30%, var(--color-primario) 70%, transparent 100%);
  z-index: 2;
}

.dpope-hero__container {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--sp-128) var(--sp-24) var(--sp-96);
  width: 100%;
}

/* Hero image hidden — text-first layout */
.dpope-hero__image { display: none; }

.dpope-hero__content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* Eyebrow label */
.dpope-hero__content::before {
  content: 'Carnicería Artesanal · Sanlúcar de Barrameda';
  display: block;
  font-family: var(--font-sans);
  font-size: var(--fs-11);
  font-weight: var(--fw-bold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primario);
  margin-bottom: var(--sp-24);
}

.dpope-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7.5vw, 5.5rem);
  font-weight: var(--fw-bold);
  color: white;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-24);
}

.dpope-hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-texto-cream);
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto var(--sp-48);
  line-height: 1.75;
  font-weight: var(--fw-light);
}

.dpope-hero__ctas {
  display: flex;
  gap: var(--sp-16);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-40);
}

/* Hero CTA buttons */
.dpope-hero__btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: var(--fs-11);
  font-weight: var(--fw-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: var(--transition-base);
  border-radius: 0;
  white-space: nowrap;
}

.dpope-hero__btn.primary {
  background-color: var(--color-primario);
  color: white;
  border-color: var(--color-primario);
}

.dpope-hero__btn.primary:hover {
  background-color: var(--color-primario-lt);
  border-color: var(--color-primario-lt);
  color: white;
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(139, 26, 26, 0.4);
}

.dpope-hero__btn.secondary {
  background-color: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.dpope-hero__btn.secondary:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
  opacity: 1;
  transform: translateY(-2px);
}

.dpope-hero__micro {
  font-family: var(--font-sans);
  font-size: var(--fs-12);
  color: var(--color-texto-muted);
  letter-spacing: 0.06em;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .dpope-hero { min-height: 90vh; }

  .dpope-hero__container {
    padding: var(--sp-80) var(--sp-16) var(--sp-64);
  }

  .dpope-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .dpope-hero__btn {
    text-align: center;
  }
}
