/* ============================================
   HERO COMPONENTS — home + service detail
   ============================================ */

/* ---- Home hero (CMS plugin rendered) ---- */
.hero-section {
  position: relative;
  min-height: 85dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-section__bg img,
.hero-section__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,15,15,0.85) 0%,
    rgba(15,15,15,0.4) 60%,
    transparent 100%
  );
}

.hero-section__content {
  position: relative;
  z-index: 1;
  padding: var(--sp-16) var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}

.hero-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.hero-section__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 7vw, 5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--sp-5);
  max-width: 14ch;
}

.hero-section__title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-section__sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.75);
  max-width: 45ch;
  margin-bottom: var(--sp-8);
  font-weight: var(--weight-light);
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* ---- Service hero ---- */
.service-hero {
  position: relative;
  min-height: 60dvh;
  display: flex;
  align-items: flex-end;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.9) 0%, rgba(15,15,15,0.3) 60%, transparent 100%);
}

.service-hero__content {
  position: relative;
  z-index: 1;
  padding: var(--sp-12) var(--container-pad);
}

.service-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  color: #fff;
  margin-bottom: var(--sp-4);
}

.service-hero__sub {
  color: rgba(255,255,255,0.7);
  max-width: 55ch;
  margin-bottom: var(--sp-6);
}

/* ---- Masseuse hero ---- */
.masseuse-hero {
  display: grid;
  grid-template-columns: minmax(0, 480px) 1fr;
  gap: var(--sp-8);
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--sp-8) var(--container-pad);
  align-items: start;
}

@media (max-width: 900px) {
  .masseuse-hero {
    grid-template-columns: 1fr;
  }
}

.masseuse-hero__gallery {
  position: sticky;
  top: calc(var(--header-h-md) + var(--sp-4));
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.masseuse-hero__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.masseuse-hero__name {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--gold-light);
}

.masseuse-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.masseuse-hero__description {
  color: var(--text-muted);
}

.masseuse-hero__cta { margin-top: var(--sp-4); }

/* ---- Age gate ---- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: var(--z-top);
  background: rgba(10,10,10,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}

.age-gate[hidden] { display: none; }

.age-gate__card {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  text-align: center;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-glow);
}

.age-gate__logo { margin-inline: auto; margin-bottom: var(--sp-8); }

.age-gate__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold-light);
  margin-bottom: var(--sp-4);
}

.age-gate__text {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-8);
  max-width: 40ch;
  margin-inline: auto;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
