/* ─── Hero Section ─── */
.section-hero {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  color: var(--color-white);
}


/* ─── Image Slider ─── */
.hero__media {
  position: absolute;
  inset: 0;
  bottom: -20%;        /* extra room below for parallax movement */
  z-index: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  visibility: hidden;
}

.hero__slide--current {
  visibility: visible;
}

/* Full size — scaleX handles the stretch parallax, no oversizing needed */
.hero__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  will-change: transform;
}

/* Gradient overlay — removed opacity, kept element for future use */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
  pointer-events: none;
}


/* ─── Label Rows ─── */
.hero__row {
  position: absolute;
  left: 50px;
  right: 50px;
  z-index: 2;
}

/* y: 359 / 1146 = 31.3% */
.hero__row--1 { top: 31.3%; }

/* y: 623 / 1146 = 54.4% */
.hero__row--2 { top: 54.4%; }

.hero__row-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
}

.hero__row-labels span {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
  letter-spacing: 0;
}

.hero__row-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}


/* ─── Bottom Content ─── */
.hero__bottom {
  position: absolute;
  bottom: 50px;
  left: 50px;
  right: 50px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.65vw, 70px);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: 0;
  flex-shrink: 0;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
  flex-shrink: 0;
}

.hero__meta span,
.hero__availability {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

#hero-clock {
  text-transform: none;
}

.hero__availability {
  text-transform: uppercase;
}


/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero__row {
    left: 20px;
    right: 20px;
  }

  .hero__row-labels span {
    font-size: 10px;
  }

  .hero__bottom {
    left: 20px;
    right: 20px;
    bottom: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero__meta {
    align-items: flex-start;
    text-align: left;
  }

  .hero__meta span,
  .hero__availability {
    font-size: 11px;
  }
}
