/* ================================
   HOME HERO
================================ */

.home-main {
  position: relative;
  overflow: hidden;
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--border-soft);
}

.home-hero__picture {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: var(--color-bg-warm);
}

.home-hero__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

/* головне розмиття зліва, як у макеті */
.home-hero__blur {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(
    90deg,
    rgba(251, 247, 239, 0.98) 0%,
    rgba(251, 247, 239, 0.96) 18%,
    rgba(251, 247, 239, 0.84) 31%,
    rgba(251, 247, 239, 0.48) 43%,
    rgba(251, 247, 239, 0.12) 57%,
    rgba(251, 247, 239, 0) 72%
  );
  backdrop-filter: blur(5px);
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.65) 54%,
    transparent 72%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.65) 54%,
    transparent 72%
  );
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      circle at 23% 42%,
      rgba(255, 255, 255, 0.64),
      transparent 24rem
    ),
    linear-gradient(180deg, rgba(255, 250, 242, 0.18), rgba(239, 228, 212, 0.2));
  pointer-events: none;
}

.home-hero__inner {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 42px;
}

.home-hero__content {
  width: min(100%, 570px);
  padding-left: clamp(0px, 2.5vw, 34px);
  transform: translateY(-4px);
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--color-gold-dark);
  font-family: var(--font-accent);
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.home-hero__eyebrow::before {
  content: '';
  width: 46px;
  height: 1px;
  background: currentColor;
}

.home-hero__title {
  max-width: 540px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(3.05rem, 5vw, 5.55rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.home-hero__title span {
  display: block;
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
}

.home-hero__text {
  max-width: 430px;
  margin-top: 26px;
  color: var(--color-text-soft);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.72;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.home-hero__actions .btn {
  min-width: 220px;
  height: 54px;
  border-radius: 7px;
}

.home-hero__actions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* декоративні листочки зліва */
.home-hero__decor {
  position: absolute;
  z-index: -1;
  color: rgba(183, 138, 74, 0.28);
  pointer-events: none;
}

.home-hero__decor svg {
  width: 100%;
  height: 100%;
}

.home-hero__decor path {
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero__decor--left {
  left: -18px;
  bottom: 38px;
  width: 92px;
  height: 220px;
}

/* нижня тонка декоративна лінія */
.home-hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 42px;
  border-top: 1px solid rgba(183, 138, 74, 0.22);
  background: rgba(251, 247, 239, 0.5);
  pointer-events: none;
}

.home-hero__bottom::before,
.home-hero__bottom::after {
  content: '';
  position: absolute;
  bottom: 9px;
  width: 82px;
  height: 24px;
  border-bottom: 1px solid rgba(183, 138, 74, 0.38);
}

.home-hero__bottom::before {
  left: 0;
  border-right: 1px solid rgba(183, 138, 74, 0.28);
  border-bottom-right-radius: 28px;
}

.home-hero__bottom::after {
  right: 0;
  border-left: 1px solid rgba(183, 138, 74, 0.28);
  border-bottom-left-radius: 28px;
}

/* ================================
   HERO RESPONSIVE
================================ */

@media (max-width: 1180px) {
  .home-hero__content {
    width: min(100%, 520px);
  }

  .home-hero__title {
    font-size: clamp(2.9rem, 5.2vw, 4.8rem);
  }

  .home-hero__text {
    max-width: 400px;
  }
}

@media (max-width: 900px) {
  .home-hero__picture img {
    object-position: 64% center;
  }

  .home-hero__blur {
    background: linear-gradient(
      90deg,
      rgba(251, 247, 239, 0.98) 0%,
      rgba(251, 247, 239, 0.94) 30%,
      rgba(251, 247, 239, 0.7) 52%,
      rgba(251, 247, 239, 0.18) 78%,
      transparent 100%
    );
  }

  .home-hero__content {
    width: min(100%, 500px);
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 100svh;
  }

  .home-hero__picture img {
    object-position: center bottom;
  }

  .home-hero__blur {
    background: linear-gradient(
      180deg,
      rgba(251, 247, 239, 0.96) 0%,
      rgba(251, 247, 239, 0.92) 34%,
      rgba(251, 247, 239, 0.72) 56%,
      rgba(251, 247, 239, 0.18) 100%
    );
    backdrop-filter: blur(4px);
    mask-image: none;
    -webkit-mask-image: none;
  }

  .home-hero__inner {
    align-items: flex-start;
    min-height: calc(100svh - var(--header-height));
    padding-top: 46px;
    padding-bottom: 120px;
  }

  .home-hero__content {
    width: 100%;
    padding-left: 0;
  }

  .home-hero__eyebrow {
    margin-bottom: 18px;
    font-size: 0.68rem;
  }

  .home-hero__eyebrow::before {
    width: 34px;
  }

  .home-hero__title {
    max-width: 430px;
    font-size: clamp(2.65rem, 11vw, 4.2rem);
  }

  .home-hero__text {
    max-width: 390px;
    margin-top: 22px;
    font-size: 0.96rem;
  }

  .home-hero__actions {
    margin-top: 24px;
  }

  .home-hero__decor--left {
    left: -36px;
    bottom: 86px;
    width: 82px;
    height: 190px;
  }
}

@media (max-width: 560px) {
  .home-hero__inner {
    padding-top: 34px;
    padding-bottom: 100px;
  }

  .home-hero__title {
    max-width: 340px;
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .home-hero__text {
    max-width: 330px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .home-hero__actions .btn {
    width: auto;
    min-width: 205px;
    height: 50px;
    font-size: 0.72rem;
  }

  .home-hero__bottom {
    height: 34px;
  }
}

@media (max-width: 380px) {
  .home-hero__title {
    font-size: 2.35rem;
  }

  .home-hero__actions .btn {
    width: 100%;
  }
}
.home-worlds {
  position: relative;
  padding-top: 54px;
  padding-bottom: 84px;
  background:
    radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.72),
      transparent 32rem
    ),
    linear-gradient(180deg, #fbf7ef 0%, #f6efe4 100%);
  border-top: 1px solid rgba(183, 138, 74, 0.16);
  overflow: hidden;
}

.home-worlds .container {
  position: relative;
  z-index: 2;
}

.home-worlds__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  margin-bottom: 34px;
  text-align: center;
}

.home-worlds__title {
  color: var(--color-text);
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-worlds__ornament {
  display: block;
  width: clamp(112px, 12vw, 178px);
  height: 22px;
  object-fit: contain;
  object-position: center;
  opacity: 0.82;
  pointer-events: none;
  user-select: none;
}

.home-worlds__ornament--right {
  transform: scaleX(-1);
}

.home-worlds__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.world-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(183, 138, 74, 0.26);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.36),
      rgba(255, 250, 242, 0.78)
    ),
    #fbf7ef;
  box-shadow: 0 18px 54px rgba(35, 27, 17, 0.06);
  overflow: hidden;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.world-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(183, 138, 74, 0.08);
  pointer-events: none;
}

.world-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -2;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(215, 183, 130, 0.14),
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.world-card:hover {
  transform: translateY(-8px);
  border-color: rgba(183, 138, 74, 0.54);
  box-shadow: 0 26px 72px rgba(35, 27, 17, 0.13);
}

.world-card:hover::after {
  opacity: 1;
}

.world-card__media {
  position: relative;
  display: block;
  height: clamp(190px, 15vw, 250px);
  overflow: hidden;
  background: var(--color-bg-warm);
}

.world-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(10, 10, 9, 0.22)),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.14),
      transparent 48%
    );
  pointer-events: none;
}

.world-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform var(--transition-slow),
    filter var(--transition-slow);
}

.world-card:hover .world-card__media img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.world-card__icon {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: -44px auto 0;
  border: 1px solid rgba(183, 138, 74, 0.42);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 18%,
    #ffffff 0%,
    #fffaf2 52%,
    #f3eadc 100%
  );
  color: var(--color-gold-dark);
  box-shadow:
    0 18px 38px rgba(42, 32, 19, 0.1),
    inset 0 0 0 8px rgba(255, 255, 255, 0.44);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    color var(--transition-base);
}

.world-card:hover .world-card__icon {
  transform: translateY(-4px) rotate(-2deg);
  color: var(--color-gold);
  box-shadow:
    0 22px 44px rgba(183, 138, 74, 0.2),
    inset 0 0 0 8px rgba(255, 255, 255, 0.48);
}

.world-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.world-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 22px 34px 38px;
  text-align: center;
}

.world-card__body h3 {
  margin-bottom: 18px;
  color: var(--color-text);
  font-family: var(--font-accent);
  font-size: clamp(1.18rem, 1.35vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.world-card__body p {
  max-width: 320px;
  margin-inline: auto;
  color: var(--color-text-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.world-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--color-gold-dark);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color var(--transition-base),
    gap var(--transition-base);
}

.world-card__link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.world-card__link:hover {
  gap: 15px;
  color: var(--color-text);
}

@media (max-width: 1024px) {
  .home-worlds {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .home-worlds__grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .world-card__media {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .home-worlds__head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .home-worlds__ornament {
    width: 74px;
    height: 18px;
  }

  .home-worlds__title {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }

  .world-card__body {
    padding: 20px 24px 34px;
  }

  .world-card__body p {
    font-size: 0.92rem;
  }
}

@media (max-width: 560px) {
  .home-worlds {
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .home-worlds__ornament {
    display: none;
  }

  .world-card__media {
    height: 210px;
  }

  .world-card__icon {
    width: 76px;
    height: 76px;
    margin-top: -38px;
  }

  .world-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .world-card__body h3 {
    margin-bottom: 14px;
    font-size: 1.12rem;
  }

  .world-card__link {
    padding-top: 24px;
    font-size: 0.72rem;
  }
}
.home-vip {
  position: relative;
  background:
    radial-gradient(
      circle at 76% 50%,
      rgba(215, 183, 130, 0.16),
      transparent 28rem
    ),
    linear-gradient(180deg, #f6efe4 0%, #fbf7ef 100%);
  border-top: 1px solid rgba(183, 138, 74, 0.18);
  border-bottom: 1px solid rgba(183, 138, 74, 0.18);
  overflow: hidden;
}

.home-vip__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 360px;
}

.home-vip__media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #17130f;
}

.home-vip__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 72%, rgba(251, 247, 239, 0.24)),
    radial-gradient(circle at 30% 40%, transparent 0%, rgba(0, 0, 0, 0.14) 100%);
  pointer-events: none;
}

.home-vip__media::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  z-index: 2;
  width: 1px;
  height: 100%;
  background: rgba(183, 138, 74, 0.28);
}

.home-vip__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.home-vip__content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 360px;
  padding: clamp(52px, 6vw, 86px) clamp(28px, 7vw, 120px);
  overflow: hidden;
}

.home-vip__content::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(183, 138, 74, 0.08);
  pointer-events: none;
}

.home-vip__text {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
}

.home-vip__eyebrow {
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.home-vip__title {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 3.4vw, 4.1rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.home-vip__title span {
  color: var(--color-gold-dark);
  font-style: italic;
  font-weight: 400;
}

.home-vip__description {
  max-width: 440px;
  margin-top: 22px;
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.home-vip__btn {
  margin-top: 30px;
  min-width: 210px;
  height: 52px;
  border-radius: 7px;
}

.home-vip__btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-vip__signature {
  position: absolute;
  right: clamp(28px, 8vw, 110px);
  top: 50%;
  transform: translateY(-50%) rotate(-7deg);
  color: rgba(183, 138, 74, 0.15);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 16vw, 17rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.08em;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1024px) {
  .home-vip__grid {
    grid-template-columns: 1fr;
  }

  .home-vip__media {
    min-height: 340px;
  }

  .home-vip__media::before {
    background:
      linear-gradient(180deg, transparent 66%, rgba(251, 247, 239, 0.24)),
      radial-gradient(
        circle at 30% 40%,
        transparent 0%,
        rgba(0, 0, 0, 0.12) 100%
      );
  }

  .home-vip__media::after {
    top: auto;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
  }

  .home-vip__content {
    min-height: auto;
    padding: 58px 24px 66px;
  }

  .home-vip__text {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .home-vip__signature {
    right: 24px;
    font-size: clamp(8rem, 28vw, 14rem);
  }
}

@media (max-width: 768px) {
  .home-vip__media {
    min-height: 280px;
  }

  .home-vip__content {
    padding: 46px 20px 56px;
  }

  .home-vip__content::before {
    inset: 12px;
  }

  .home-vip__eyebrow {
    font-size: 0.72rem;
  }

  .home-vip__title {
    font-size: clamp(2.2rem, 9vw, 3.25rem);
  }

  .home-vip__description {
    margin-top: 18px;
    font-size: 0.94rem;
  }

  .home-vip__signature {
    right: -12px;
    opacity: 0.75;
  }
}

@media (max-width: 560px) {
  .home-vip__media {
    min-height: 230px;
  }

  .home-vip__content {
    padding: 40px 16px 48px;
  }

  .home-vip__btn {
    width: auto;
    min-width: 205px;
    height: 50px;
    font-size: 0.72rem;
  }

  .home-vip__signature {
    top: 62%;
    right: -32px;
    font-size: 7.5rem;
  }
}
.home-features {
  position: relative;
  padding: 0;
  background: #fbf7ef;
  border-top: 1px solid rgba(183, 138, 74, 0.16);
  border-bottom: 1px solid rgba(183, 138, 74, 0.16);
  overflow: hidden;
}

.home-features .container {
  width: min(100%, 1440px);
  position: relative;
}

.home-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.78),
      transparent 32rem
    ),
    linear-gradient(180deg, #fffaf2 0%, #f7efe3 100%);
}

.feature-item {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  min-height: 150px;
  padding: 28px clamp(22px, 2.2vw, 40px) 26px;
}

.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 0;
  width: 1px;
  height: calc(100% - 48px);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(183, 138, 74, 0.24) 18%,
    rgba(183, 138, 74, 0.24) 82%,
    transparent 100%
  );
}

.feature-item__top {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 18px;
  margin-bottom: 18px;
}

.feature-item__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--color-gold-dark);
}

.feature-item__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 0.95vw, 1.02rem);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-item p {
  max-width: 280px;
  margin: 0;
  padding-left: 70px;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1180px) {
  .home-features .container {
    width: min(100% - 32px, 980px);
  }

  .home-features {
    padding: 52px 0;
  }

  .home-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(183, 138, 74, 0.16);
  }

  .feature-item:nth-child(2)::after {
    display: none;
  }

  .feature-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(183, 138, 74, 0.16);
  }
}

@media (max-width: 768px) {
  .home-features {
    padding: 42px 0;
  }

  .home-features .container {
    width: min(100% - 24px, 620px);
  }

  .home-features__grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: auto;
    padding: 26px 22px;
  }

  .feature-item:not(:last-child)::after {
    display: none;
  }

  .feature-item:not(:last-child) {
    border-bottom: 1px solid rgba(183, 138, 74, 0.16);
  }

  .feature-item__top {
    grid-template-columns: 46px 1fr;
    gap: 16px;
    margin-bottom: 12px;
  }

  .feature-item__icon {
    width: 42px;
    height: 42px;
  }

  .feature-item__icon svg {
    width: 34px;
    height: 34px;
  }

  .feature-item h3 {
    font-size: 0.9rem;
  }

  .feature-item p {
    max-width: 100%;
    padding-left: 62px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .feature-item {
    padding: 24px 18px;
  }

  .feature-item__top {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .feature-item__icon {
    width: 38px;
    height: 38px;
  }

  .feature-item__icon svg {
    width: 31px;
    height: 31px;
  }

  .feature-item h3 {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .feature-item p {
    padding-left: 56px;
    font-size: 0.88rem;
  }
}
.home-cta {
  position: relative;
  isolation: isolate;
  min-height: 152px;
  overflow: hidden;
  background: #10232b;
  border-top: 1px solid rgba(183, 138, 74, 0.2);
  border-bottom: 1px solid rgba(183, 138, 74, 0.22);
}

.home-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.home-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(8, 31, 39, 0.94) 0%,
      rgba(8, 31, 39, 0.76) 28%,
      rgba(8, 31, 39, 0.2) 58%,
      rgba(8, 31, 39, 0.48) 100%
    ),
    linear-gradient(180deg, rgba(5, 7, 7, 0.18), rgba(5, 7, 7, 0.22));
}

.home-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 22% 50%,
      rgba(215, 183, 130, 0.18),
      transparent 26rem
    ),
    linear-gradient(90deg, rgba(5, 16, 20, 0.55), transparent 42%);
  pointer-events: none;
}

.home-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 152px;
  padding-top: 46px;
  padding-bottom: 46px;
}

.home-cta__title {
  max-width: 860px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.05rem, 3.2vw, 3.65rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.home-cta__title span {
  color: var(--color-gold-light);
}

.home-cta__title em {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
}

.home-cta__btn {
  flex: 0 0 auto;
  min-width: 220px;
  height: 56px;
  border: 1px solid rgba(215, 183, 130, 0.52);
  border-radius: 7px;
  background: rgba(8, 9, 9, 0.82);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.home-cta__btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1024px) {
  .home-cta {
    min-height: 220px;
  }

  .home-cta__inner {
    min-height: 220px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .home-cta__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(8, 31, 39, 0.94) 0%,
        rgba(8, 31, 39, 0.72) 52%,
        rgba(8, 31, 39, 0.42) 100%
      ),
      linear-gradient(180deg, rgba(5, 7, 7, 0.12), rgba(5, 7, 7, 0.24));
  }
}

@media (max-width: 768px) {
  .home-cta {
    min-height: 260px;
  }

  .home-cta__bg img {
    object-position: center;
  }

  .home-cta__inner {
    min-height: 260px;
    gap: 24px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .home-cta__title {
    max-width: 520px;
    font-size: clamp(2rem, 8vw, 3.1rem);
  }

  .home-cta__btn {
    min-width: 205px;
    height: 52px;
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .home-cta {
    min-height: 300px;
  }

  .home-cta__inner {
    min-height: 300px;
  }

  .home-cta__title {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .home-cta__btn {
    width: 100%;
  }
}
.home-casino-evenings {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(215, 183, 130, 0.18),
      transparent 30rem
    ),
    radial-gradient(
      circle at 88% 72%,
      rgba(183, 138, 74, 0.13),
      transparent 28rem
    ),
    linear-gradient(180deg, #f6efe4 0%, #fbf7ef 100%);
  border-top: 1px solid rgba(183, 138, 74, 0.14);
  overflow: hidden;
}

.home-casino-evenings::before {
  content: '♣';
  position: absolute;
  left: 4vw;
  top: 36px;
  color: rgb(183 138 74 / 82%);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 14vw, 17rem);
  line-height: 1;
  pointer-events: none;
}

.home-casino-evenings::after {
  content: '';
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(183, 138, 74, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.casino-evenings {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(183, 138, 74, 0.2);
  background:
    linear-gradient(
      135deg,
      rgba(255, 250, 242, 0.82),
      rgba(255, 255, 255, 0.42)
    ),
    #fbf7ef;
  box-shadow: 0 26px 80px rgba(35, 27, 17, 0.08);
  overflow: hidden;
}

.casino-evenings::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(183, 138, 74, 0.08);
  pointer-events: none;
}

.casino-evenings__content {
  position: relative;
  z-index: 2;
}

.casino-evenings__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--color-gold-dark);
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.casino-evenings__eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: currentColor;
}

.casino-evenings__title {
  max-width: 680px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.casino-evenings__title span {
  display: block;
  color: var(--color-gold-dark);
  font-style: italic;
  font-weight: 400;
}

.casino-evenings__text {
  max-width: 620px;
  margin-top: 24px;
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.casino-evenings__list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.casino-evenings__list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(183, 138, 74, 0.16);
}

.casino-evenings__list article:last-child {
  border-bottom: 1px solid rgba(183, 138, 74, 0.16);
}

.casino-evenings__list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(183, 138, 74, 0.38);
  border-radius: 50%;
  color: var(--color-gold-dark);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
}

.casino-evenings__list h3 {
  margin-bottom: 6px;
  color: var(--color-text);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.casino-evenings__list p {
  max-width: 560px;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.casino-evenings__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.casino-evenings__actions .btn {
  min-width: 190px;
  height: 52px;
  border-radius: 7px;
}

.casino-evenings__actions svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.casino-evenings__link {
  position: relative;
  color: var(--color-gold-dark);
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.casino-evenings__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0.45);
  transform-origin: left;
  background: currentColor;
  transition: transform var(--transition-base);
}

.casino-evenings__link:hover::after {
  transform: scaleX(1);
}

.casino-evenings__media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--color-dark);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.22);
}

.casino-evenings__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.36)),
    radial-gradient(
      circle at 50% 16%,
      rgba(215, 183, 130, 0.18),
      transparent 38%
    );
  pointer-events: none;
}

.casino-evenings__media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  transition:
    transform var(--transition-slow),
    filter var(--transition-slow);
}

.casino-evenings:hover .casino-evenings__media img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.04);
}

.casino-evenings__badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(215, 183, 130, 0.46);
  border-radius: var(--radius-full);
  background: rgba(8, 9, 9, 0.74);
  color: #fff;
  backdrop-filter: blur(14px);
}

.casino-evenings__badge strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.casino-evenings__badge span {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .casino-evenings {
    grid-template-columns: 1fr;
  }

  .casino-evenings__media {
    min-height: 440px;
  }

  .casino-evenings__media img {
    min-height: 440px;
  }
}

@media (max-width: 768px) {
  .home-casino-evenings {
    padding: 68px 0;
  }

  .casino-evenings {
    padding: 26px 20px;
  }

  .casino-evenings::before {
    inset: 10px;
  }

  .casino-evenings__title {
    font-size: clamp(2.45rem, 10vw, 3.8rem);
  }

  .casino-evenings__text {
    margin-top: 20px;
    font-size: 0.94rem;
  }

  .casino-evenings__list {
    margin-top: 26px;
  }

  .casino-evenings__list article {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .casino-evenings__list span {
    width: 38px;
    height: 38px;
  }

  .casino-evenings__media {
    min-height: 340px;
  }

  .casino-evenings__media img {
    min-height: 340px;
  }
}

@media (max-width: 520px) {
  .casino-evenings {
    padding: 24px 16px;
  }

  .casino-evenings__eyebrow {
    font-size: 0.68rem;
  }

  .casino-evenings__eyebrow::before {
    width: 32px;
  }

  .casino-evenings__title {
    font-size: 2.45rem;
  }

  .casino-evenings__actions {
    display: grid;
    gap: 18px;
  }

  .casino-evenings__actions .btn {
    width: 100%;
  }

  .casino-evenings__media {
    min-height: 280px;
  }

  .casino-evenings__media img {
    min-height: 280px;
  }

  .casino-evenings__badge {
    right: 14px;
    bottom: 14px;
  }
}
