/* ==========================================================================
   HOME HERO
   ========================================================================== */

.home-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 760px;
  height: 100svh;
  max-height: 920px;
  overflow: hidden;
  padding-top: var(--header-height);
  background: var(--color-bg-deep);
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 10, 0.98) 0%,
      rgba(5, 6, 10, 0.84) 24%,
      rgba(5, 6, 10, 0.42) 54%,
      rgba(5, 6, 10, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 6, 10, 0.42) 0%,
      rgba(5, 6, 10, 0.08) 38%,
      rgba(5, 6, 10, 0.82) 100%
    );
}

.home-hero__shade::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 48%, rgba(82, 33, 65, 0.34), transparent 32%),
    radial-gradient(
      circle at 60% 10%,
      rgba(217, 164, 204, 0.09),
      transparent 34%
    );
}

.home-hero__glow {
  position: absolute;
  z-index: -2;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
}

.home-hero__glow--one {
  left: -180px;
  top: 18%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(185, 101, 161, 0.2),
    transparent 68%
  );
}

.home-hero__glow--two {
  right: 14%;
  bottom: 10%;
  width: 360px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(217, 164, 204, 0.12),
    transparent 70%
  );
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(22px, 4vh, 48px);
  padding-bottom: clamp(26px, 5vh, 58px);
}

.home-hero__content {
  width: min(100%, 650px);
  margin-top: clamp(24px, 4vh, 48px);
}

.home-hero__eyebrow {
  margin-bottom: 18px;
  font-size: clamp(0.75rem, 1vw, 0.92rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-lilac-soft);
}

.home-hero__title {
  max-width: 640px;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-size: clamp(4.1rem, 8.2vw, 8.35rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  color: var(--color-text);
}

.home-hero__title span {
  display: inline-block;
  color: var(--color-lilac);
  text-shadow: 0 0 34px rgba(217, 164, 204, 0.24);
}

.home-hero__text {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.7;
  color: var(--color-text-soft);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 34px;
}

.home-hero__casino-link {
  gap: 10px;
}

.home-hero__casino-link svg {
  position: relative;
  z-index: 2;
  width: 17px;
  height: 17px;
  fill: currentColor;
  color: var(--color-lilac-soft);
}

.home-hero__notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 430px;
}

.home-hero__notice-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(217, 164, 204, 0.58);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-lilac-soft);
  background:
    radial-gradient(
      circle at 35% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 34%
    ),
    rgba(7, 8, 13, 0.42);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.025),
    0 0 26px rgba(217, 164, 204, 0.12);
}

.home-hero__notice p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Bottom smooth transition to next section */

.home-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(7, 8, 13, 0.58) 46%,
    var(--color-bg) 100%
  );
}

/* ==========================================================================
   HOME HERO RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .home-hero {
    min-height: 720px;
    max-height: none;
  }

  .home-hero__content {
    width: min(100%, 590px);
  }

  .home-hero__title {
    font-size: clamp(3.8rem, 9vw, 6.8rem);
  }
}

@media (max-width: 768px) {
  .home-hero {
    align-items: flex-end;
    min-height: 720px;
    height: auto;
    padding-top: calc(var(--header-height) + 44px);
  }

  .home-hero__media img {
    object-position: center top;
  }

  .home-hero__shade {
    background:
      linear-gradient(
        180deg,
        rgba(5, 6, 10, 0.42) 0%,
        rgba(5, 6, 10, 0.62) 34%,
        rgba(5, 6, 10, 0.94) 100%
      ),
      linear-gradient(
        90deg,
        rgba(5, 6, 10, 0.9) 0%,
        rgba(5, 6, 10, 0.55) 58%,
        rgba(5, 6, 10, 0.38) 100%
      );
  }

  .home-hero__inner {
    padding-top: 120px;
    padding-bottom: 74px;
  }

  .home-hero__content {
    width: 100%;
    margin-top: 0;
  }

  .home-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
  }

  .home-hero__title {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: clamp(3.05rem, 15vw, 5rem);
    line-height: 0.92;
  }

  .home-hero__text {
    max-width: 500px;
    margin-bottom: 24px;
    font-size: 0.96rem;
  }

  .home-hero__actions {
    gap: 12px;
    margin-bottom: 26px;
  }

  .home-hero__actions .btn {
    width: auto;
    min-width: 172px;
  }

  .home-hero__notice {
    max-width: 390px;
  }
}

@media (max-width: 520px) {
  .home-hero {
    min-height: 690px;
    padding-top: calc(var(--header-height) + 24px);
  }

  .home-hero__inner {
    padding-top: 96px;
    padding-bottom: 62px;
  }

  .home-hero__title {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .home-hero__text {
    font-size: 0.92rem;
  }

  .home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .home-hero__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .home-hero__notice {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .home-hero__notice-badge {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .home-hero__notice p {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .home-hero {
    min-height: 660px;
  }

  .home-hero__title {
    font-size: 2.55rem;
  }

  .home-hero__actions {
    max-width: none;
  }
}
/* ==========================================================================
   HOME WORLD CARDS
   ========================================================================== */

.home-world {
  position: relative;
  z-index: 3;
  margin-top: clamp(-90px, -7vw, -54px);
}

.home-world::before {
  content: '';
  position: absolute;
  inset: 10% 0 auto;
  z-index: -1;
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(82, 33, 65, 0.32), transparent 36%),
    radial-gradient(
      circle at 82% 4%,
      rgba(217, 164, 204, 0.12),
      transparent 34%
    );
}

.home-world__top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 54px);
}

.home-world__top .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.home-world__top h2 {
  max-width: 800px;
  font-size: clamp(2.45rem, 5vw, 5.15rem);
  line-height: 0.96;
}

.home-world__top p:not(.eyebrow) {
  max-width: 470px;
  justify-self: end;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.home-world__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.home-world-card {
  position: relative;
  min-width: 0;
}

.home-world-card__link {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 204, 0.28);
  border-radius: 14px;
  color: var(--color-text);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.01)
    ),
    rgba(10, 11, 18, 0.9);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  isolation: isolate;
  transition:
    border-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.home-world-card__link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(217, 164, 204, 0.18),
      transparent 36%
    ),
    linear-gradient(180deg, transparent 45%, rgba(217, 164, 204, 0.05));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.home-world-card__link::after {
  content: '';
  position: absolute;
  inset: 10px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(217, 164, 204, 0.16);
  border-radius: 10px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.home-world-card__link:hover {
  border-color: rgba(217, 164, 204, 0.52);
  background:
    linear-gradient(
      180deg,
      rgba(217, 164, 204, 0.055),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(10, 11, 18, 0.94);
  box-shadow:
    0 26px 74px rgba(0, 0, 0, 0.38),
    0 0 44px rgba(217, 164, 204, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.home-world-card__link:hover::before,
.home-world-card__link:hover::after {
  opacity: 1;
}

.home-world-card__image {
  position: relative;
  height: clamp(190px, 16vw, 244px);
  overflow: hidden;
  background: var(--color-bg-soft);
}

.home-world-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 38%, rgba(7, 8, 13, 0.7) 100%),
    radial-gradient(
      circle at 50% 0%,
      rgba(217, 164, 204, 0.08),
      transparent 52%
    );
}

.home-world-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter var(--transition-slow),
    opacity var(--transition-slow);
}

.home-world-card__link:hover .home-world-card__image img {
  filter: saturate(1.08) contrast(1.05);
  opacity: 0.94;
}

.home-world-card__body {
  position: relative;
  display: grid;
  min-height: 270px;
  padding: 58px clamp(22px, 2vw, 34px) clamp(24px, 2.5vw, 34px);
  background:
    radial-gradient(circle at 50% 0%, rgba(82, 33, 65, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(10, 11, 18, 0.68), rgba(8, 9, 15, 0.98));
}

.home-world-card__icon {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(217, 164, 204, 0.54);
  border-radius: 50%;
  color: var(--color-lilac-soft);
  background:
    radial-gradient(
      circle at 35% 18%,
      rgba(255, 255, 255, 0.16),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(82, 33, 65, 0.96), rgba(18, 15, 28, 0.96));
  box-shadow:
    0 0 0 8px rgba(7, 8, 13, 0.76),
    0 0 34px rgba(217, 164, 204, 0.18);
  transform: translate(-50%, -50%);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.home-world-card__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.home-world-card__link:hover .home-world-card__icon {
  border-color: rgba(217, 164, 204, 0.82);
  background:
    radial-gradient(
      circle at 35% 18%,
      rgba(255, 255, 255, 0.2),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(107, 43, 86, 0.98), rgba(26, 18, 35, 0.98));
  box-shadow:
    0 0 0 8px rgba(7, 8, 13, 0.82),
    0 0 42px rgba(217, 164, 204, 0.28);
}

.home-world-card__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-world-card__label {
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-lilac-soft);
}

.home-world-card h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.home-world-card__content > p:not(.home-world-card__label) {
  margin-bottom: 26px;
  font-size: 0.94rem;
  line-height: 1.72;
  color: var(--color-text-soft);
}

.home-world-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-lilac-soft);
  transition:
    color var(--transition-base),
    gap var(--transition-base);
}

.home-world-card__cta svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.home-world-card__link:hover .home-world-card__cta {
  gap: 14px;
  color: #ffffff;
}

/* Featured middle card */

.home-world-card--featured .home-world-card__link {
  border-color: rgba(217, 164, 204, 0.36);
}

.home-world-card--featured .home-world-card__body {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(185, 101, 161, 0.32),
      transparent 38%
    ),
    linear-gradient(180deg, rgba(10, 11, 18, 0.7), rgba(8, 9, 15, 0.98));
}

/* ==========================================================================
   HOME WORLD RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .home-world {
    margin-top: -46px;
  }

  .home-world__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-world__top .eyebrow {
    margin-bottom: 0;
  }

  .home-world__top p:not(.eyebrow) {
    justify-self: start;
    max-width: 680px;
  }

  .home-world__grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .home-world-card__image {
    height: clamp(220px, 42vw, 330px);
  }

  .home-world-card__body {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .home-world {
    margin-top: -34px;
  }

  .home-world__top {
    margin-bottom: 28px;
  }

  .home-world__top h2 {
    font-size: clamp(2.25rem, 10vw, 3.75rem);
  }

  .home-world-card__link {
    border-radius: 16px;
  }

  .home-world-card__image {
    height: 220px;
  }

  .home-world-card__body {
    padding: 52px 22px 24px;
  }

  .home-world-card__icon {
    width: 54px;
    height: 54px;
  }

  .home-world-card h3 {
    font-size: 2.15rem;
  }
}

@media (max-width: 520px) {
  .home-world {
    margin-top: -24px;
  }

  .home-world__top {
    display: none;
  }

  .home-world__grid {
    gap: 16px;
  }

  .home-world-card__image {
    height: 178px;
  }

  .home-world-card__body {
    padding: 48px 20px 22px;
  }

  .home-world-card__content > p:not(.home-world-card__label) {
    font-size: 0.88rem;
  }

  .home-world-card__cta {
    font-size: 0.7rem;
  }
}
/* ==========================================================================
   HOME GALLERY PREVIEW
   ========================================================================== */

.home-gallery-preview {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 58vw, 720px);
  overflow: hidden;
  padding-block: clamp(86px, 9vw, 150px);
  border-top: 1px solid rgba(217, 164, 204, 0.14);
  border-bottom: 1px solid rgba(217, 164, 204, 0.14);
  background: var(--color-bg-deep);
}

.home-gallery-preview__media {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.home-gallery-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.home-gallery-preview__shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(7, 8, 13, 0.98) 0%,
      rgba(7, 8, 13, 0.9) 25%,
      rgba(7, 8, 13, 0.62) 48%,
      rgba(7, 8, 13, 0.2) 82%,
      rgba(7, 8, 13, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 8, 13, 0.56) 0%,
      rgba(7, 8, 13, 0.08) 44%,
      rgba(7, 8, 13, 0.78) 100%
    );
}

.home-gallery-preview__shade::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 48%, rgba(82, 33, 65, 0.44), transparent 36%),
    radial-gradient(
      circle at 72% 12%,
      rgba(217, 164, 204, 0.16),
      transparent 34%
    );
}

.home-gallery-preview::before {
  content: '';
  position: absolute;
  left: -140px;
  top: 50%;
  z-index: -2;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(185, 101, 161, 0.18),
    transparent 70%
  );
  transform: translateY(-50%);
  filter: blur(8px);
}

.home-gallery-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 70%);
}

.home-gallery-preview__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: clamp(28px, 4vw, 54px);
  border-left: 1px solid rgba(217, 164, 204, 0.28);
  background:
    linear-gradient(90deg, rgba(7, 8, 13, 0.58), rgba(7, 8, 13, 0.12)),
    radial-gradient(circle at 0% 0%, rgba(217, 164, 204, 0.12), transparent 42%);
  backdrop-filter: blur(2px);
}

.home-gallery-preview__eyebrow {
  margin-bottom: 20px;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--color-lilac-soft);
}

.home-gallery-preview h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.2vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.home-gallery-preview p:not(.home-gallery-preview__eyebrow) {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.78;
  color: var(--color-text-soft);
}

.home-gallery-preview__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 204, 0.44);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lilac-soft);
  background:
    radial-gradient(
      circle at 30% 0%,
      rgba(217, 164, 204, 0.14),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.28);
  transition:
    color var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base),
    gap var(--transition-base);
}

.home-gallery-preview__link::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 8px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(217, 164, 204, 0.16),
    transparent 58%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.home-gallery-preview__link span,
.home-gallery-preview__link svg {
  position: relative;
  z-index: 2;
}

.home-gallery-preview__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.home-gallery-preview__link:hover {
  gap: 20px;
  color: #ffffff;
  border-color: rgba(217, 164, 204, 0.68);
  background:
    radial-gradient(
      circle at 30% 0%,
      rgba(217, 164, 204, 0.2),
      transparent 42%
    ),
    rgba(217, 164, 204, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 62px rgba(0, 0, 0, 0.36),
    0 0 38px rgba(217, 164, 204, 0.12);
}

.home-gallery-preview__link:hover::before {
  opacity: 1;
}

/* ==========================================================================
   HOME GALLERY PREVIEW RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .home-gallery-preview {
    min-height: 620px;
  }

  .home-gallery-preview__content {
    max-width: 590px;
  }

  .home-gallery-preview h2 {
    font-size: clamp(2.45rem, 7vw, 4.65rem);
  }
}

@media (max-width: 768px) {
  .home-gallery-preview {
    align-items: flex-end;
    min-height: 680px;
    padding-block: 90px 64px;
  }

  .home-gallery-preview__media img {
    object-position: center top;
  }

  .home-gallery-preview__shade {
    background: linear-gradient(
      180deg,
      rgba(7, 8, 13, 0.24) 0%,
      rgba(7, 8, 13, 0.54) 36%,
      rgba(7, 8, 13, 0.96) 100%
    );
  }

  .home-gallery-preview__content {
    max-width: 100%;
    padding: 0;
    border-left: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .home-gallery-preview h2 {
    font-size: clamp(2.2rem, 10vw, 3.9rem);
  }

  .home-gallery-preview p:not(.home-gallery-preview__eyebrow) {
    max-width: 520px;
    margin-bottom: 26px;
    font-size: 0.96rem;
  }
}

@media (max-width: 520px) {
  .home-gallery-preview {
    min-height: 640px;
    padding-block: 82px 54px;
  }

  .home-gallery-preview__eyebrow {
    margin-bottom: 14px;
    font-size: 0.68rem;
  }

  .home-gallery-preview h2 {
    margin-bottom: 18px;
    font-size: clamp(2.05rem, 12vw, 3.2rem);
  }

  .home-gallery-preview__link {
    width: 100%;
    justify-content: center;
  }
}
/* ==========================================================================
   HOME BENEFITS
   ========================================================================== */

.home-benefits {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding-block: clamp(46px, 5vw, 72px);
  border-top: 1px solid rgba(217, 164, 204, 0.14);
  border-bottom: 1px solid rgba(217, 164, 204, 0.14);
  background:
    radial-gradient(circle at 8% 20%, rgba(82, 33, 65, 0.28), transparent 34%),
    radial-gradient(
      circle at 88% 0%,
      rgba(217, 164, 204, 0.1),
      transparent 32%
    ),
    linear-gradient(180deg, rgba(9, 10, 17, 0.98), rgba(6, 7, 12, 0.98));
}

.home-benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 16%,
    #000 84%,
    transparent 100%
  );
}

.home-benefits::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -140px;
  width: min(720px, 78vw);
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(217, 164, 204, 0.13),
    transparent 68%
  );
  transform: translateX(-50%);
  filter: blur(10px);
}

.home-benefits__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 210px;
}

.home-benefit {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 0;
  padding: clamp(26px, 3vw, 42px) clamp(20px, 2.5vw, 38px);
  text-align: center;
}

.home-benefit:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18%;
  right: 0;
  width: 1px;
  height: 64%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(217, 164, 204, 0.22) 18%,
    rgba(217, 164, 204, 0.34) 50%,
    rgba(217, 164, 204, 0.22) 82%,
    transparent
  );
}

.home-benefit__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(72px, 6vw, 92px);
  height: clamp(72px, 6vw, 92px);
  margin-bottom: 26px;
  border: 1px solid rgba(217, 164, 204, 0.3);
  border-radius: 50%;
  color: var(--color-lilac-soft);
  background:
    radial-gradient(
      circle at 35% 22%,
      rgba(255, 255, 255, 0.12),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(82, 33, 65, 0.48), rgba(8, 9, 15, 0.78));
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.025),
    0 0 34px rgba(217, 164, 204, 0.09);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.home-benefit__icon::before {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(217, 164, 204, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.home-benefit__icon::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  pointer-events: none;
  background: conic-gradient(
    from 140deg,
    transparent 0deg,
    rgba(217, 164, 204, 0.42) 42deg,
    transparent 88deg,
    transparent 360deg
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  mask: radial-gradient(circle, transparent 61%, #000 62%);
}

.home-benefit__icon svg {
  position: relative;
  z-index: 2;
  width: clamp(34px, 3.2vw, 44px);
  height: clamp(34px, 3.2vw, 44px);
  fill: currentColor;
}

.home-benefit h3 {
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}

.home-benefit p {
  max-width: 260px;
  margin-inline: auto;
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--color-text-muted);
}

.home-benefit:hover .home-benefit__icon {
  border-color: rgba(217, 164, 204, 0.56);
  background:
    radial-gradient(
      circle at 35% 22%,
      rgba(255, 255, 255, 0.16),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(107, 43, 86, 0.58), rgba(8, 9, 15, 0.82));
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.035),
    0 0 44px rgba(217, 164, 204, 0.18);
}

.home-benefit:hover .home-benefit__icon::after {
  opacity: 1;
}

/* ==========================================================================
   HOME BENEFITS RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .home-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-benefit:nth-child(2)::after {
    display: none;
  }

  .home-benefit:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(217, 164, 204, 0.14);
  }
}

@media (max-width: 620px) {
  .home-benefits {
    padding-block: 34px;
  }

  .home-benefits__grid {
    grid-template-columns: 1fr;
  }

  .home-benefit {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    justify-items: start;
    align-content: initial;
    align-items: center;
    padding: 24px 0;
    text-align: left;
  }

  .home-benefit:not(:last-child)::after {
    display: none;
  }

  .home-benefit:not(:last-child) {
    border-bottom: 1px solid rgba(217, 164, 204, 0.14);
  }

  .home-benefit__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 0;
  }

  .home-benefit__icon svg {
    width: 30px;
    height: 30px;
  }

  .home-benefit h3 {
    margin-bottom: 8px;
    font-size: 0.86rem;
  }

  .home-benefit p {
    max-width: none;
    margin-inline: 0;
    font-size: 0.86rem;
  }
}
/* ==========================================================================
   HOME EVENTS
   ========================================================================== */

.home-events {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(82, 33, 65, 0.34), transparent 34%),
    radial-gradient(
      circle at 88% 16%,
      rgba(217, 164, 204, 0.1),
      transparent 32%
    ),
    linear-gradient(180deg, rgba(7, 8, 13, 0.98), rgba(10, 11, 18, 0.98));
}

.home-events::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}

.home-events__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(38px, 5vw, 72px);
}

.home-events__content {
  max-width: 720px;
}

.home-events__content h2 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5.5vw, 5.8rem);
  line-height: 0.96;
}

.home-events__content > p {
  max-width: 580px;
  margin-bottom: 32px;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.78;
  color: var(--color-text-soft);
}

.home-events__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-events__visual {
  position: relative;
}

.home-events__visual::before {
  content: '';
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(217, 164, 204, 0.2),
      transparent 46%
    ),
    linear-gradient(145deg, rgba(217, 164, 204, 0.16), transparent 60%);
  filter: blur(4px);
}
.home-events__picture {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 840 / 640;
  border: 1px solid rgba(217, 164, 204, 0.22);
  border-radius: var(--radius-xl);
  background: var(--color-bg-soft);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-events__picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-events__picture::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(7, 8, 13, 0.38) 100%),
    radial-gradient(
      circle at 50% 0%,
      rgba(217, 164, 204, 0.12),
      transparent 54%
    );
}

.home-events__schedule {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.home-event-card {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 130px;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(217, 164, 204, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.052),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(12, 13, 20, 0.78);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    border-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.home-event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 0% 50%,
      rgba(217, 164, 204, 0.14),
      transparent 34%
    ),
    linear-gradient(90deg, rgba(217, 164, 204, 0.055), transparent 48%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.home-event-card:hover,
.home-event-card--active {
  border-color: rgba(217, 164, 204, 0.38);
  background:
    linear-gradient(
      135deg,
      rgba(217, 164, 204, 0.06),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(12, 13, 20, 0.9);
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.34),
    0 0 44px rgba(217, 164, 204, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-event-card:hover::before,
.home-event-card--active::before {
  opacity: 1;
}

.home-event-card__date,
.home-event-card__body,
.home-event-card__meta {
  position: relative;
  z-index: 2;
}

.home-event-card__date {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 96px;
  padding-right: 26px;
  border-right: 1px solid rgba(217, 164, 204, 0.16);
}

.home-event-card__date span {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-lilac-soft);
}

.home-event-card__date strong {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--color-text);
}

.home-event-card__type {
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-lilac-soft);
}

.home-event-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 2.8vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.home-event-card__body p:not(.home-event-card__type) {
  max-width: 720px;
  font-size: 0.94rem;
  line-height: 1.72;
  color: var(--color-text-muted);
}

.home-event-card__meta {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.home-event-card__meta span,
.home-event-card__meta small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(217, 164, 204, 0.22);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  background: rgba(255, 255, 255, 0.035);
}

.home-event-card__meta small {
  color: var(--color-lilac-soft);
}

/* ==========================================================================
   HOME EVENTS RESPONSIVE
   ========================================================================== */

@media (max-width: 1080px) {
  .home-events__layout {
    grid-template-columns: 1fr;
  }

  .home-events__visual {
    max-width: 760px;
  }

  .home-events__picture {
    min-height: 420px;
  }

  .home-event-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .home-event-card__meta {
    grid-column: 2;
    justify-items: start;
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .home-events__content h2 {
    font-size: clamp(2.25rem, 10vw, 4rem);
  }

  .home-events__picture {
    min-height: 360px;
    border-radius: var(--radius-lg);
  }

  .home-event-card {
    grid-template-columns: 1fr;
    gap: 18px;
    border-radius: var(--radius-md);
  }

  .home-event-card__date {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    min-height: auto;
    padding-right: 0;
    padding-bottom: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(217, 164, 204, 0.16);
  }

  .home-event-card__date strong {
    font-size: 2.35rem;
  }

  .home-event-card__meta {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .home-events__actions {
    display: grid;
  }

  .home-events__picture {
    min-height: 300px;
  }

  .home-event-card {
    padding: 20px;
  }

  .home-event-card h3 {
    font-size: 1.85rem;
  }

  .home-event-card__body p:not(.home-event-card__type) {
    font-size: 0.88rem;
  }
}
/* ==========================================================================
   HOME CTA
   ========================================================================== */

.home-cta {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(620px, 64vw, 820px);
  overflow: hidden;
  padding-block: clamp(90px, 10vw, 150px);
  border-top: 1px solid rgba(217, 164, 204, 0.14);
  background: var(--color-bg-deep);
}

.home-cta__media {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.home-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* затемнення фону, щоб текст був читабельний */
.home-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 10, 0.94) 0%,
      rgba(5, 6, 10, 0.78) 42%,
      rgba(5, 6, 10, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 6, 10, 0.62) 0%,
      rgba(5, 6, 10, 0.18) 42%,
      rgba(5, 6, 10, 0.92) 100%
    );
}

.home-cta__overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 42%, rgba(82, 33, 65, 0.48), transparent 36%),
    radial-gradient(
      circle at 72% 18%,
      rgba(217, 164, 204, 0.14),
      transparent 34%
    );
}

.home-cta::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -160px;
  z-index: -2;
  width: min(760px, 80vw);
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(217, 164, 204, 0.16),
    transparent 70%
  );
  transform: translateX(-50%);
  filter: blur(12px);
}

.home-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0%, #000 48%, transparent 86%);
}

.home-cta__card {
  position: relative;
  max-width: 760px;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(217, 164, 204, 0.28);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(217, 164, 204, 0.14),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(9, 10, 17, 0.3);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.home-cta__card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(217, 164, 204, 0.1);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.home-cta__eyebrow {
  margin-bottom: 20px;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--color-lilac-soft);
}

.home-cta h2 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(1.55rem, 5.3vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.home-cta__card > p:not(.home-cta__eyebrow) {
  max-width: 610px;
  margin-bottom: 34px;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.78;
  color: var(--color-text-soft);
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.home-cta__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 204, 0.14);
  border-radius: var(--radius-md);
  background: rgba(217, 164, 204, 0.14);
}

.home-cta__detail {
  display: grid;
  gap: 8px;
  min-height: 106px;
  padding: 18px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(217, 164, 204, 0.08),
      transparent 46%
    ),
    rgba(7, 8, 13, 0.76);
}

.home-cta__detail span {
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-lilac-soft);
}

.home-cta__detail strong {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-text-soft);
}

/* ==========================================================================
   HOME CTA RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .home-cta {
    min-height: 700px;
  }

  .home-cta__card {
    max-width: 680px;
  }

  .home-cta__details {
    grid-template-columns: 1fr;
  }

  .home-cta__detail {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .home-cta {
    align-items: flex-end;
    min-height: 720px;
    padding-block: 100px 64px;
  }

  .home-cta__media img {
    object-position: center top;
  }

  .home-cta__overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 6, 10, 0.18) 0%,
      rgba(5, 6, 10, 0.64) 38%,
      rgba(5, 6, 10, 0.96) 100%
    );
  }

  .home-cta__card {
    padding: 28px;
    border-radius: var(--radius-lg);
  }

  .home-cta h2 {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }
}

@media (max-width: 520px) {
  .home-cta {
    min-height: 680px;
    padding-block: 86px 52px;
  }

  .home-cta__card {
    padding: 24px;
  }

  .home-cta__actions {
    display: grid;
  }

  .home-cta__detail {
    padding: 16px;
  }
}
