footer {
  background: var(--ink);
  color: var(--ink4);
  position: relative;
  overflow: hidden;
}
 
/* Background geometric pattern on footer */
footer::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 520px; height: 100%;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 28px,
      rgba(91,63,166,0.08) 28px,
      rgba(91,63,166,0.08) 29px
    );
  pointer-events: none;
}
 
footer::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(91,63,166,0.15);
  border-radius: 50%;
  pointer-events: none;
}
 
/* Extra circle */
.footer-circle-2 {
  position: absolute;
  top: 40px; right: 140px;
  width: 220px; height: 220px;
  border: 1px solid rgba(91,63,166,0.1);
  border-radius: 50%;
  pointer-events: none;
}
 
.footer-main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 4rem 2.5rem 2.5rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
}
 
/* Footer logo */
.footer-logo {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  margin-bottom: 0.3rem;
  text-decoration: none;
}
.footer-logo .fl-black {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer-logo .fl-purple {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--p2);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 7px;
  border-bottom: 2.5px solid var(--p2);
  padding-bottom: 1px;
  line-height: 1;
}
 
.footer-tagline {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1.2rem;
}
 
.footer-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
  max-width: 300px;
}
 
/* Social icons */
.social-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
 
.social-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.social-icon:hover {
  border-color: var(--p2);
  color: var(--p2);
  background: rgba(91,63,166,0.12);
}
 
/* Footer columns */
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
 
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.8); }
 
/* Newsletter mini in footer */
.footer-news-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--p2);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
 
.footer-news-row {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
 
.footer-news-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 0.45rem 0.75rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.footer-news-input:focus { border-color: var(--p2); }
.footer-news-input::placeholder { color: rgba(255,255,255,0.2); font-size: 0.75rem; }
 
.footer-news-btn {
  background: var(--p);
  border: none;
  color: #fff;
  padding: 0.45rem 0.85rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.footer-news-btn:hover { background: var(--p2); }
 
/* Footer divider */
.footer-divider {
  max-width: 1360px;
  margin: 0 auto;
  height: 1px;
  background: rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}
 
/* Footer bottom */
.footer-bottom {
  max-width: 1360px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
 
.footer-bottom-left {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.2);
}
 
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
 
.footer-bottom-right a {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.footer-bottom-right a:hover { color: rgba(255,255,255,0.6); }
 
/* Purple accent tag */
.wp-tag {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: rgba(123,92,196,0.6);
}
