.hero {
  padding: 0.5rem 0 2rem;
  min-height: calc(100vh - 6.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__container {
  width: 100%;
  max-width: 86rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.88fr);
  align-items: center;
  justify-content: center;
  column-gap: 4.5rem;
}


.hero__content {
  max-width: 34rem;
  justify-self: start;
}

.hero__title {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem); /* 🔥 менше */
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero__title span {
  color: var(--accent);
}

.hero__text {
  max-width: 39rem;
  margin: 0 0 3.5rem;
  color: var(--muted-text);
  font-size: 1.16rem;
  line-height: 1.75;
}

.hero__stats {
  display: flex;
  align-items: flex-start;
  gap: 3.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.25rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero__stat strong {
  color: var(--accent);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero__stat span {
  color: #9da3af;
  font-size: 1.05rem;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 4.4rem;
  padding: 1.2rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease,
    transform 0.3s ease, box-shadow 0.3s ease;
}

.btn--primary {
  min-width: 19rem;
  background-color: var(--accent);
  color: #111111;
  box-shadow: 0 0.9rem 2.2rem rgba(212, 175, 79, 0.16);

  transition: background-color 0.3s ease,
              transform 0.35s ease,
              box-shadow 0.35s ease;
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: var(--accent-dark);
  transform: translateY(-0.18rem);
  box-shadow: 0 1.4rem 3rem rgba(212, 175, 79, 0.22);
}

.btn--secondary {
  min-width: 15rem;
  border: 0.0625rem solid rgba(212, 175, 79, 0.38);
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.01);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background-color: rgba(212, 175, 79, 0.1);
  border-color: rgba(212, 175, 79, 0.7);
  transform: translateY(-0.16rem);
}

.btn__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.btn--primary:hover .btn__icon,
.btn--primary:focus .btn__icon {
  transform: translateX(0.25rem);
}

.hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  width: 100%;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 31rem;
  margin: 0 auto;
}

.hero__image {
  width: 100%;
  height: 43rem;
  object-fit: cover;
  object-position: center;
}

.info-card {
  position: absolute;
  padding: 1.65rem 1.7rem;
  min-width: 13.2rem;
  background: linear-gradient(
    180deg,
    rgba(14, 12, 8, 0.82) 0%,
    rgba(8, 7, 5, 0.78) 100%
  );
  border: 0.0625rem solid rgba(212, 175, 79, 0.22);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.info-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 500;
}

.info-card__stars {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  color: var(--accent);
}

.info-card__stars svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
  flex-shrink: 0;
}

.info-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.95rem;
  color: var(--accent);
}

.info-card__icon svg {
  width: 1.95rem;
  height: 1.95rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.info-card--rating {
  top: 4.2rem;
  left: -2.2rem;
}

.info-card--booking {
  top: 14rem;
  right: -1.8rem;
}

.info-card--locations {
  bottom: 4.3rem;
  left: -1.5rem;
}

.info-card--hours {
  bottom: 5.2rem;
  right: -1.7rem;
}


/* 1600-1750 */
@media (max-width: 110rem) {
  .container {
    max-width: 100rem;
  }

  .hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(30rem, 42rem);
    gap: 2.5rem;
  }

  .hero__title {
    font-size: clamp(3.6rem, 4.8vw, 5.2rem);
  }

  .hero__image-wrap {
    max-width: 38rem;
  }

  .hero__image {
    height: 40rem;
  }
}

/* 1366-1536 */
@media (max-width: 96rem) {
  .container {
    max-width: 92rem;
    padding: 0 1.75rem;
  }

  .hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(28rem, 38rem);
    gap: 2rem;
  }

  .hero__content {
    max-width: 36rem;
  }

  .hero__title {
    font-size: clamp(3.2rem, 4.6vw, 4.7rem);
    margin-bottom: 1.5rem;
  }

  .hero__text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 34rem;
  }

  .hero__stats {
    gap: 2.2rem;
    margin-bottom: 2.25rem;
  }

  .hero__image-wrap {
    max-width: 35rem;
  }

  .hero__image {
    height: 37rem;
  }

  .info-card {
    min-width: 11.5rem;
    padding: 1.4rem 1.3rem;
  }

  .info-card h3 {
    font-size: 0.95rem;
  }

  .info-card p {
    font-size: 0.8rem;
  }

  .info-card__stars {
    font-size: 0.9rem;
    letter-spacing: 0.18rem;
  }

  .info-card--rating {
    top: 4.7rem;
    left: -1.8rem;
  }

  .info-card--booking {
    top: 12rem;
    right: -1.25rem;
  }

  .info-card--locations {
    bottom: 4rem;
    left: -1.1rem;
  }

  .info-card--hours {
    bottom: 4.8rem;
    right: -1.4rem;
  }
}

/* 1200 and below */
@media (max-width: 75rem) {
  .hero {
    padding: 1.5rem 0 2.5rem;
    min-height: auto;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__content {
    max-width: 100%;
    padding-top: 0;
    margin-left: 0;
  }

  .hero__media {
    justify-content: center;
    margin-right: 0;
  }

  .hero__image-wrap {
    max-width: 34rem;
  }

  .hero__image {
    height: 34rem;
  }

  .hero__title {
    font-size: clamp(3rem, 7vw, 4.5rem);
  }
}

@media (max-width: 48rem) {
  .hero__title {
    font-size: clamp(2.3rem, 9vw, 3.4rem);
    margin-bottom: 1rem;
  }

  .hero__text {
    font-size: 0.97rem;
    margin-bottom: 1.5rem;
  }

  /* Статистика — завжди в ряд (3 рівні колонки) */
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 1.75rem;
  }

  .hero__stat {
    gap: 0.35rem;
  }

  .hero__stat strong {
    font-size: 1.35rem;
  }

  .hero__stat span {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  /* Лише основна кнопка на мобільному */
  .btn--primary {
    width: 100%;
    min-width: 0;
  }

  .btn--secondary {
    display: none;
  }

  /* Info-картки стають сіткою 2×2 під зображенням */
  .hero__image-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    max-width: 100%;
  }

  .hero__image {
    grid-column: 1 / -1;
    height: 26rem;
  }

  .info-card {
    position: static;
    min-width: 0;
    padding: 1rem;
  }

  .info-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .info-card p {
    font-size: 0.82rem;
  }

  .info-card__icon {
    margin-bottom: 0.6rem;
  }

  .info-card__icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .info-card__stars {
    margin-bottom: 0.6rem;
  }

  .info-card__stars svg {
    width: 0.95rem;
    height: 0.95rem;
  }
}

@media (max-width: 36rem) {
  .hero__image {
    height: 22rem;
  }
}

.hero__content {
  margin-left: clamp(1.5rem, 4vw, 4rem);
}

.hero__media {
  margin-right: clamp(1.5rem, 4vw, 4rem);
}

.hero__text {
  font-size: 1.08rem;
  margin-bottom: 2.75rem;
}

.hero__stat strong {
  font-size: 1.65rem;
}

.hero__stat span {
  font-size: 0.98rem;
}

.hero__text {
  font-size: 1.02rem;
  margin-bottom: 2rem;
}

.hero__stat strong {
  font-size: 1.45rem;
}

.hero__stat span {
  font-size: 0.94rem;
}