.footer-geo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  animation: footerGeoFloat 16s ease-in-out infinite;
}
.footer-geo--1 {
  width: clamp(420px, 60vw, 780px);
  height: clamp(420px, 60vw, 780px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(240, 168, 192, 0.09);
  animation-duration: 18s;
}
.footer-geo--2 {
  width: clamp(280px, 40vw, 560px);
  height: clamp(280px, 40vw, 560px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245, 232, 168, 0.07);
  animation-duration: 22s;
  animation-delay: 2s;
}
.footer-geo--3 {
  width: clamp(160px, 24vw, 360px);
  height: clamp(160px, 24vw, 360px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(240, 168, 192, 0.06);
  animation-duration: 12s;
  animation-delay: 1s;
}
.footer-geo--4 {
  width: clamp(60px, 10vw, 160px);
  height: clamp(60px, 10vw, 160px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245, 232, 168, 0.05);
  animation-duration: 9s;
  animation-delay: 0.5s;
}
@keyframes footerGeoFloat {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.footer-main {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--inner-pad) clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}
.footer-main {
  opacity: 1 !important;
  transform: none !important;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-contact-title {
  font-family: "Cinzel Decorative", cursive;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 88px);
  line-height: 0.92;
  background: linear-gradient(
    135deg,
    var(--pink) 0%,
    var(--gold-light) 45%,
    var(--green) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGradShift 7s ease-in-out infinite;
  letter-spacing: clamp(1px, 0.3vw, 3px);
}
@keyframes titleGradShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.footer-contact-desc {
  max-width: 460px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.0vw, 20px);
  color: rgba(250, 212, 228, 0.82);
  line-height: 1.8;
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.footer-input,
.footer-textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  user-select: auto;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(240, 168, 192, 0.22);
  color: var(--cream);
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 3px;
  padding: 18px 20px;
  outline: none;
  resize: none;
  display: block;
  width: 100%;
  transition:
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}
.footer-input::placeholder,
.footer-textarea::placeholder {
  color: rgba(250, 212, 228, 0.3);
}
.footer-input:focus,
.footer-textarea:focus {
  border-color: rgba(240, 168, 192, 0.55);
  background: rgba(0, 0, 0, 0.6);
  box-shadow:
    0 0 0 3px rgba(240, 168, 192, 0.05),
    0 0 20px rgba(240, 168, 192, 0.04);
}
.footer-textarea {
  min-height: 160px;
}
.footer-submit {
  background: rgba(240, 168, 192, 0.08);
  border: 1px solid rgba(240, 168, 192, 0.35);
  color: var(--pink-light);
  font-family: "Cinzel Decorative", cursive;
  font-size: 13px;
  letter-spacing: 6px;
  padding: 18px 40px;
  cursor: pointer;
  min-height: 58px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.footer-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 168, 192, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.footer-submit:hover {
  background: rgba(240, 168, 192, 0.18);
  border-color: var(--pink);
  box-shadow: 0 8px 32px rgba(240, 168, 192, 0.15);
}
.footer-submit:hover::before {
  transform: translateX(100%);
}
.footer-submit.submitted {
  background: rgba(143, 168, 50, 0.12);
  border-color: rgba(143, 168, 50, 0.6);
  color: var(--green);
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: clamp(0px, 1vw, 12px);
}
.footer-sitemap-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: clamp(1px, 0.2vw, 3px);
  margin-bottom: 4px;
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    rgba(250, 212, 228, 0.8) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-sitemap-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(20px, 3vw, 48px);
}
.footer-sitemap-links a {
  font-family: "IM Fell English SC", serif;
  font-size: clamp(18px, 2.0vw, 20px);
  letter-spacing: 3px;
  color: rgba(250, 212, 228, 0.75);
  text-decoration: none;
  display: inline-block;
  padding: clamp(7px, 1vh, 12px) 0;
  border-bottom: 1px solid rgba(240, 168, 192, 0.12);
  transition:
    color 0.22s,
    transform 0.22s,
    letter-spacing 0.22s;
}
.footer-sitemap-links a:hover {
  color: var(--pink-light);
  transform: translateX(5px);
  letter-spacing: 4px;
  border-bottom-color: rgba(240, 168, 192, 0.35);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(240, 168, 192, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 212, 228, 0.5);
  text-decoration: none;
  background: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  transition: all 0.32s var(--ease);
}
.footer-social-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}
.footer-social-icon--twitch:hover {
  background: rgba(145, 70, 255, 0.18);
  border-color: rgba(145, 70, 255, 0.55);
  color: #9146ff;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(145, 70, 255, 0.28);
}
.footer-social-icon--x:hover {
  background: rgba(240, 168, 192, 0.2);
  border-color: rgba(240, 168, 192, 0.6);
  color: var(--pink-light);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(240, 168, 192, 0.25);
}
.footer-social-icon--vgen:hover {
  background: rgba(143, 168, 50, 0.15);
  border-color: rgba(143, 168, 50, 0.55);
  color: var(--green);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(143, 168, 50, 0.22);
}
.footer-copy {
  font-family: "IM Fell English SC", serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: rgba(250, 212, 228, 0.5);
  line-height: 1.9;
}
.footer-line {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(240, 168, 192, 0.3),
    transparent
  );
}
.footer-year {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  letter-spacing: 3px;
}
.footer-credits {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px var(--inner-pad);
  font-family: "IM Fell English SC", serif;
  font-size: 18px;
  letter-spacing: 4px;
  color: rgba(250, 212, 228, 0.55);
  text-align: center;
}
.site-footer {  
  background-color: #1a160e;
  position: relative;
  overflow: hidden;
  margin-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid rgba(245, 232, 168, 0.1);
  background:
    linear-gradient(
      to bottom,
      rgba(22, 20, 14, 0.97) 0%,
      rgba(48, 40, 20, 0.92) 35%,
      rgba(82, 68, 28, 0.88) 60%,
      rgba(118, 96, 36, 0.9) 80%,
      rgba(145, 118, 42, 0.93) 100%
    ),
    url("../assets/neru_bg_end.webp") center 20% / cover no-repeat;
}
.footer-social-icon--tiktok:hover {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.footer-social-icon--patreon:hover {
  background: rgba(255, 102, 0, 0.15);
  border-color: rgba(255, 102, 0, 0.55);
  color: #ff6600;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(255, 102, 0, 0.22);
}
.footer-social-icon--instagram:hover {
  background: rgba(225, 48, 108, 0.15);
  border-color: rgba(225, 48, 108, 0.5);
  color: #e1306c;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(225, 48, 108, 0.22);
}
.footer-social-icon--bluesky:hover {
  background: rgba(0, 133, 255, 0.15);
  border-color: rgba(0, 133, 255, 0.5);
  color: #0085ff;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(0, 133, 255, 0.22);
}
.footer-social-icon--kofi {
  transition: all 0.32s var(--ease);
}
.footer-social-icon--kofi:hover {
  background: rgba(255, 94, 91, 0.15);
  border-color: rgba(255, 94, 91, 0.55);
  color: #ff5e5b;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(255, 94, 91, 0.22);
}
