/* ============================================
   SHIKÚ — Hero Section
   ============================================ */

.hero {
  position: relative;
  height: 760px;
  overflow: hidden;
  background: #e8e0d6;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .4s;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.18) 0%, transparent 65%);
}

/* headline text — bottom left */
.hero__text {
  position: absolute;
  left: var(--px-desktop);
  bottom: 200px;
  max-width: 480px;
}
.hero__title-txt {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

/* controls row — bottom */
.hero__controls {
  position: absolute;
  right: var(--px-desktop);
  bottom: 80px;
  width: 864px;
  max-width: calc(100% - 128px);
}
.hero__counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__counter {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  color: var(--color-beige);
}
.hero__nav-arrows { display: flex; gap: 8px; align-items: center; }
.hero__nav-btn { width: 32px; height: 32px; transition: opacity .2s; cursor: pointer; }
.hero__nav-btn:hover { opacity: .7; }
.hero__nav-btn svg { width: 100%; height: 100%; }

.hero__divider {
  margin-top: 10px;
  width: 100%;
  height: 1px;
  background: rgba(222,213,193,.5);
}
.hero__divider-inner {
  width: 0%;
  height: 3px;
  background: var(--color-beige);
  margin-top: -1px;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero { height: 760px; }
  .hero__text {
    left: var(--px-mobile);
    bottom: 160px;
    max-width: 300px;
  }
  .hero__title-txt { font-size: 28px; letter-spacing: -0.5px; }
  .hero__controls {
    right: var(--px-mobile);
    left: var(--px-mobile);
    bottom: 60px;
    width: auto;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .hero__title-txt { font-size: 24px; letter-spacing: -0.5px; }
}
