/* Luxury fluid home hero — Dulce Bonito */

.hero-band {
  width: 100%;
  margin-top: var(--space-sm, 0.75rem);
  padding: 0;
  border: none;
  background: transparent;
}

.hero-band__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  width: 100%;
  padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1.5rem, 3.5vw, 2.75rem);
  border-radius: var(--radius-lg, 22px);
  border: 1px solid rgba(201, 162, 126, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(190, 74, 111, 0.06) 100%);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  min-height: min(420px, 48vh);
  max-height: none;
  box-sizing: border-box;
}

.hero-band__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 92% 50%, rgba(201, 162, 126, 0.16), transparent 58%),
    radial-gradient(ellipse 40% 50% at 8% 20%, rgba(167, 139, 250, 0.1), transparent 50%);
  pointer-events: none;
}

.hero-band__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 126, 0.5), transparent);
  pointer-events: none;
}

.hero-band__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-band__copy .eyebrow {
  color: var(--rose, #c9a27e);
  letter-spacing: 0.18em;
}

.hero-band__copy h1 {
  font-size: clamp(1.85rem, 3.8vw + 0.5rem, 3rem);
  line-height: 1.08;
  margin: 0.4rem 0 0;
  letter-spacing: -0.02em;
}

.hero-band__copy .subtext {
  margin-top: 0.85rem;
  font-size: clamp(0.92rem, 1.2vw + 0.4rem, 1.05rem);
  line-height: 1.55;
  max-width: 36rem;
  opacity: 0.92;
}

.hero-band__copy .hero-actions {
  margin-top: 1.1rem;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-band__copy .trust-strip {
  margin-top: 0.85rem;
  gap: 0.4rem 0.85rem;
  font-size: 0.74rem;
}

.hero-band__copy .trust-strip a {
  color: var(--rose);
  text-decoration: none;
}

.hero-band__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(320px, 38vh);
  height: 100%;
}

.hero-band__visual .media-slot--ratio-hero {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 100%;
  max-height: min(380px, 44vh);
  min-height: min(280px, 34vh);
  flex: 0 1 auto;
  align-self: center;
  border-radius: var(--radius-md, 16px);
  border: 1px solid rgba(201, 162, 126, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.hero-band__visual .media-slot img {
  object-fit: cover;
  object-position: center center;
}

html[data-theme="light"] .hero-band__inner {
  border-color: rgba(26, 16, 36, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(251, 113, 133, 0.06) 100%);
  box-shadow: 0 24px 56px rgba(26, 16, 36, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.luxe-main > .hero-band:first-child {
  margin-top: var(--space-sm, 0.75rem);
}

@media (max-width: 900px) {
  .hero-band__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.35rem 1.25rem;
  }

  .hero-band__visual {
    min-height: auto;
  }

  .hero-band__visual .media-slot--ratio-hero {
    max-height: 280px;
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }
}
