/* =========================================
   LOTUS BLUE CORE — CLEAN PREMIUM FOOTER
========================================= */

.site-footer{
  width: 100%;
  margin-top: auto;

  padding:
    clamp(22px, 4vw, 30px)
    clamp(16px, 4vw, 24px);

  position: relative;
  overflow: hidden;
  z-index: 10;

  text-align: center;

  background:
    radial-gradient(
      circle at top left,
      color-mix(in srgb, var(--accent) 14%, transparent),
      transparent 34%
    ),

    linear-gradient(
      to top,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.015)
    );

  border-top: 1px solid var(--border);

  backdrop-filter: blur(calc(var(--card-blur) + 2px));
  -webkit-backdrop-filter: blur(calc(var(--card-blur) + 2px));

  box-shadow:
    0 -10px 24px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

/* subtle glow sweep */
.site-footer::before{
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.03),
      transparent
    );

  transform: translateX(-100%);
  animation: footerShine 10s linear infinite;

  pointer-events: none;
}

@keyframes footerShine{
  to{
    transform: translateX(100%);
  }
}

/* =========================================
   INNER
========================================= */

.footer-inner{
  width: min(100%, 620px);

  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 10px;

  position: relative;
  z-index: 2;
}

/* =========================================
   BRAND
========================================= */

.footer-brand{
  margin: 0;

  font-size: clamp(1rem, 2vw, 1.08rem);
  font-weight: 800;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  background:
    linear-gradient(
      90deg,
      var(--text),
      color-mix(in srgb, var(--accent) 65%, white),
      var(--accent)
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================
   DESCRIPTION
========================================= */

.footer-text{
  margin: 0;

  color: var(--text-soft);

  font-size: 0.84rem;
  line-height: 1.7;

  opacity: 0.82;
}

/* =========================================
   CREDIT LINE
========================================= */

.footer-credit{
  margin: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;

  color: var(--text-soft);

  font-size: 0.76rem;
  line-height: 1.7;
  letter-spacing: 0.25px;

  opacity: 0.72;
}

.footer-credit::before{
  content: "✦";
  color: var(--accent);
  opacity: 0.9;
}

.footer-brand-link,
.footer-mail-link{
  color: var(--accent);

  text-decoration: none;
  font-weight: 600;

  transition:
    opacity .25s ease,
    color .25s ease;
}

.footer-brand-link:hover,
.footer-mail-link:hover{
  opacity: 0.82;
}

.footer-separator{
  opacity: 0.4;
}

/* =========================================
   COPYRIGHT
========================================= */

.footer-copy{
  margin: 2px 0 0;

  color: var(--text-soft);

  font-size: 0.72rem;
  letter-spacing: 0.3px;

  opacity: 0.58;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px){

  .site-footer{
    padding:
      22px
      16px;
  }

  .footer-text{
    font-size: 0.8rem;
  }

  .footer-credit{
    font-size: 0.72rem;
  }

  .footer-copy{
    font-size: 0.68rem;
  }

}

/* ===== Footer Contact ===== */

.footer-contact{
  margin: 0;

  font-size: 0.84rem;
  line-height: 1.7;
  letter-spacing: 0.25px;

  color: var(--text-soft);

  opacity: 0.88;
}

/* ===== Contact Link ===== */

.footer-contact a{
  color: var(--accent);

  text-decoration: none;
  font-weight: 600;

  padding:
    3px
    7px;

  margin-left: 2px;

  border-radius: 8px;

  transition:
    background .25s ease,
    color .25s ease,
    opacity .25s ease,
    transform .25s ease;
}

.footer-contact a:hover{
  background: var(--accent-soft);

  color:
    color-mix(in srgb, var(--accent) 78%, white);
}

.footer-contact a:active{
  transform: scale(0.96);
}

/* ===== Mobile ===== */

@media (max-width: 480px){

  .footer-contact{
    font-size: 0.8rem;
  }

}