.at-hero {
  position: relative;
  color: #faf4ef;
  background: #160f07;
  overflow: hidden;
}

.at-hero__inner {
  margin: 0 auto;
  padding: 210px 20px 88px;
  min-height: clamp(560px, 72vh, 760px);
  position: relative;
}

.at-hero__left {
  position: relative;
  z-index: 3;
  max-width: 520px;
  min-height: inherit;
  display: flex;
  flex-direction: column;
}

.at-hero__title {
  margin: 0;
  font-size: clamp(56px, 5.2vw, 92px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.at-hero__card {
  margin-top: auto;
  width: min(500px, 100%);
  padding: 24px 26px 22px;
  border-radius: 40px;
  background: rgba(46, 36, 25, 0.85);
}
.at-hero__card-header {
  display: flex;
  align-content: center;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}

.at-hero__card-num {
  margin: 0;
  width: 35px;
  height: 35px;
  border-radius: 999px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 103, 73, 0.9);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.at-hero__card-num::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 400px;
  border: 1px solid #8b6749;
  box-shadow: 0 0 0 10px rgba(250, 244, 239, 0.08);
  opacity: 0.9;
}

.at-hero__card-num-value {
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: rgba(250, 244, 239, 0.9);
}

.at-hero__card-label {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 244, 239, 0.78);
}

.at-hero__card-title {
  margin: 0 0 0px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #faf4ef;
}

.at-hero__card-text {
  margin: 0 0 32px;
  color: #faf4ef;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.8px;
}

.at-hero__card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  text-decoration: underline;
  color: #faf4ef !important;
  width: 100%;
  transition:
    transform 0.12s ease,
    background-color 0.12s ease,
    border-color 0.12s ease;
}
.at-hero__card-link:hover,
.at-hero__card-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(245, 208, 176, 0.55);
}

.at-hero__right {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.at-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 60% center;
  transform: scale(1.02);
}

.at-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1200px 800px at 35% 40%,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    linear-gradient(0deg, rgba(22, 15, 7, 0.6), rgba(22, 15, 7, 0.25));
}

.at-hero__hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.at-hero__hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #faf4ef;
  background: rgba(205, 167, 141, 0.2);
  box-shadow: 0 0 0 10px rgba(250, 244, 239, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.12s ease,
    background-color 0.12s ease,
    box-shadow 0.12s ease;
}

.at-hero__hotspot-ring {
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 1px solid rgba(139, 103, 73, 0.5);
  opacity: 1;
  box-shadow: 0 0 0 10px rgba(250, 244, 239, 0.08);
}

.at-hero__hotspot-num {
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.at-hero__hotspot:hover,
.at-hero__hotspot:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(205, 167, 141, 0.2);
  box-shadow:
    0 0 0 1px rgba(245, 208, 176, 0.22),
    0 16px 34px rgba(0, 0, 0, 0.28);
  outline: none;
}

.at-hero__hotspot.is-active {
  background: rgba(139, 103, 73, 0.9);
  box-shadow: 0 0 0 10px rgba(250, 244, 239, 0.08);
}

.at-hero__hotspot.is-active .at-hero__hotspot-ring {
  opacity: 1;
  border-color: rgba(245, 208, 176, 0.32);
}

@media (max-width: 1023px) {
  .at-hero--desktop-only {
    display: none;
  }
}

@media (max-width: 1280px) {
  .at-hero__inner {
    padding-bottom: 70px;
  }
  .at-hero__card-title {
    font-size: 28px;
  }
}
