
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}


.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes kenBurns {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

.hero__slide--active img {
  animation: kenBurns 6s ease forwards;
}


.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 36, 32, 0.88) 0%, rgba(10, 36, 32, 0.55) 55%, rgba(10, 36, 32, 0.25) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
  z-index: 1;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(194, 157, 93, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 157, 93, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 2;
}


.hero__brand {
  position: absolute;
  top: 100px;
  left: 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__brand-logo {
  width: 48px;
  height: auto;
  opacity: 0.9;
}

.hero__brand-info {
  display: flex;
  flex-direction: column;
}

.hero__brand-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  line-height: 1.3;
}

.hero__brand-tagline {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}


.hero__info {
  position: absolute;
  bottom: 120px;
  left: 60px;
  right: 180px;
  z-index: 10;
  min-height: 280px;
}

.hero__info-slide {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
}

.hero__info-slide--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.hero__status {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero__location {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.hero__project-name {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
  margin: 0 0 18px;
}

.hero__project-sub {
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0 0 32px;
}


.hero__controls {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(194, 157, 93, 0.4);
  background: rgba(10, 36, 32, 0.45);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(4px);
  padding: 0;
}

.hero__arrow:hover {
  border-color: var(--gold);
  background: rgba(194, 157, 93, 0.12);
}

.hero__dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(194, 157, 93, 0.45);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  padding: 0;
}

.hero__dot--active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.5);
}


.hero__counter {
  position: absolute;
  bottom: 54px;
  right: 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__counter-cur {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.hero__counter-line {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(194, 157, 93, 0.4);
}

.hero__counter-tot {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}


.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  transition: background 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--gold-light); color: var(--bg-dark); }

.btn-outline {
  display: inline-block;
  padding: 16px 44px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline:hover { background: rgba(194, 157, 93, 0.08); color: var(--gold); }


@media (max-width: 1100px) {
  .hero__info {
    right: 140px;
  }
}

@media (max-width: 900px) {
  .hero__brand {
    top: 88px;
    left: 24px;
  }

  .hero__info {
    bottom: 110px;
    left: 24px;
    right: 24px;
    min-height: 240px;
  }

  .hero__info-slide {
    padding-left: 20px;
  }

  .hero__controls {
    bottom: 32px;
    gap: 14px;
  }

  .hero__arrow {
    width: 36px;
    height: 36px;
  }

  .hero__counter {
    bottom: 40px;
    right: 24px;
  }

  .hero__counter-cur { font-size: 32px; }
  .hero__counter-tot { font-size: 16px; }
}

@media (max-width: 600px) {
  .hero__brand-tagline { display: none; }
  .hero__counter { display: none; }

  .hero__info {
    bottom: 100px;
    left: 20px;
    right: 20px;
    min-height: 220px;
  }

  .hero__info-slide {
    padding-left: 16px;
  }
}
