/* =========================
HERO
========================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at center, rgba(250,249,247,0.78) 0%, rgba(245,240,235,0.12) 100%);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(201, 164, 106, 0.38) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  align-items: center;
  padding-top: var(--headerH);
}
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 0 20px;
  justify-content: center;
  min-height: calc(100svh - var(--headerH));
}
.hero-sub {
  color: var(--gray-text);
  margin: 14px auto 0;
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  max-width: 56ch;
  text-align: center;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.micro {
  font-size: 0.83rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.micro strong {
  font-weight: 700;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 0;
  background: var(--charcoal);
  color: var(--white-warm);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px var(--shadow-xl);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cta:hover {
  background: #111111;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

/* ── HERO PRICE ── */
.hero-price {
  margin-top: 14px;
  font-family: "Lato", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(250, 249, 247, 0.72);
  text-transform: uppercase;
}
.hero-price strong {
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

/* =========================
RESPONSIVE
========================= */

/* TABLET PORTRAIT: 768px - 1024px */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* Permitir wrap en títulos iPad vertical */
  h1 .line1,
  h1 .line2 {
    white-space: normal;
  }
}

/* MOBILE: 767px y menor */
@media (max-width: 767px) {
  .hero-grid {
    padding: 0 16px;
  }

  /* Centrar cojines en hero móvil (ligeramente hacia derecha) */
  .hero-media img {
    object-position: 45% 35%;
  }
}
