/* ============================================
   footer.css — Athlone-inspired editorial style
   ============================================ */

.site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px var(--space-lg) 0;
  overflow: hidden;
  position: relative;
}

/* ── TOP ROW ── */
.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding-bottom: 64px;
  position: relative;
  z-index: 1;
}

/* Brand block */
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.28);
  max-width: 340px;
  margin-bottom: 16px;
}

.footer-hash {
  font-size: 11px;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.55;
  letter-spacing: 0.08em;
}

/* Right nav columns */
.footer-right {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

.footer-col-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

/* Newsletter */
.newsletter-form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 13px 15px;
  min-width: 0;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.22); }

.newsletter-btn {
  background: var(--gold);
  color: var(--bg);
  border: none;
  cursor: pointer;
  padding: 13px 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.newsletter-btn:hover { background: #ffe088; }

/* ── DIVIDER ── */
.footer-divider {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(254,214,91,0.2),
    rgba(0,229,200,0.15),
    transparent
  );
  position: relative;
  z-index: 1;
}

/* ── BIG WORDMARK — full-bleed background ── */
.footer-wordmark-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.footer-wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(140px, 30vw, 420px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  white-space: nowrap;
  user-select: none;
  transition: -webkit-text-stroke 0.4s ease;
}

/* ── BOTTOM ROW ── */
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 32px;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
}

.footer-bottom-right {
  display: flex;
  gap: 24px;
}

.footer-social {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-social:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-right {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-wordmark {
    font-size: clamp(100px, 22vw, 260px);
  }
}

@media (max-width: 560px) {
  .footer-right {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-wordmark {
    font-size: clamp(72px, 18vw, 160px);
  }
}