.iriya-site-footer {
  position: relative;
  padding: 40px 0 56px;
  background:
    radial-gradient(circle at 50% 0%, rgba(166, 128, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(7, 13, 32, 0.96), rgba(6, 11, 26, 0.98));
  border-top: 1px solid rgba(217, 190, 122, 0.16);
  overflow: hidden;
}

.iriya-site-footer__glow,
.iriya-site-footer__ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.iriya-site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.iriya-site-footer__eyebrow,
.iriya-site-footer__title,
.iriya-site-footer__description {
  margin: 0;
}

.iriya-site-footer__eyebrow {
  color: #d9be7a;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.iriya-site-footer__title {
  color: #f5f0e6;
  margin-top: 8px;
  font-size: 1.15rem;
}

.iriya-site-footer__description {
  color: #c8c3db;
  font-size: 0.9rem;
  margin-top: 6px;
}

.iriya-site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

.iriya-site-footer__links a {
  position: relative;
  opacity: 0.92;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.iriya-site-footer__links a:hover {
  color: #d9be7a;
  opacity: 1;
}

.iriya-site-footer__glow::before {
  content: "";
  position: absolute;
  top: -36px;
  left: 50%;
  width: 320px;
  height: 160px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(185, 171, 255, 0.16), transparent 66%);
  filter: blur(18px);
}

.iriya-site-footer__ornament::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  width: min(480px, 72%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(217, 190, 122, 0.72), transparent);
  opacity: 0.7;
}

.iriya-site-footer__star {
  position: absolute;
  top: 22px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(217, 190, 122, 0.7);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 249, 238, 0.95) 0 24%, transparent 28%),
    radial-gradient(circle, rgba(185, 171, 255, 0.24), transparent 72%);
  box-shadow: 0 0 14px rgba(185, 171, 255, 0.18);
}

.iriya-site-footer__star--left {
  left: calc(50% - min(240px, 36%));
}

.iriya-site-footer__star--right {
  right: calc(50% - min(240px, 36%));
}

@media (max-width: 920px) {
  .iriya-site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .iriya-site-footer__links {
    justify-content: flex-start;
  }

  .iriya-site-footer__ornament::before {
    width: calc(100% - 56px);
  }
}
