/* ══════════════════════════════════════════
   FOOTER — Newsletter Band + Footer Grid
   MP Skin & SPA — Brand Refresh
══════════════════════════════════════════ */


/* ── FOOTER BASE ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(111,162,135,0.1);
}

/* ── NEWSLETTER BAND ── */
.footer-newsletter {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 48px 60px;
  border-bottom: 1px solid rgba(247,243,238,0.1);
  flex-wrap: wrap;
}

.fn-text { flex: 1; min-width: 200px; }

.fn-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem; font-weight: 300;
  color: var(--cream); margin-bottom: 4px;
}
.fn-title em { font-style: italic; color: var(--gold-light); }

.fn-sub {
  font-size: 0.72rem; font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(247,243,238,0.45);
}

.fn-form {
  display: flex; gap: 0;
  flex: 1; max-width: 420px; min-width: 260px;
}

.fn-input {
  flex: 1;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.82rem; font-weight: 300;
  color: var(--cream);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(247,243,238,0.15);
  border-right: none;
  padding: 13px 18px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.fn-input::placeholder { color: rgba(247,243,238,0.3); }
.fn-input:focus { border-color: rgba(111,162,135,0.5); background: rgba(255,255,255,0.1); }

.fn-btn {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none; cursor: none;
  padding: 13px 24px;
  white-space: nowrap;
  transition: background 0.3s;
}
.fn-btn:hover { background: var(--gold-light); }

/* ── FOOTER GRID ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px;
}

/* ── FOOTER BRAND ── */
.footer-brand { }

.footer-logo {
  display: inline-block;
  color: var(--cream);
  text-decoration: none;
  margin-bottom: 18px;
}
.footer-logo .brand-logo { height: 24px; width: auto; }

.footer-tagline {
  font-size: 0.75rem; font-weight: 300;
  line-height: 1.8;
  color: rgba(247,243,238,0.35);
  max-width: 240px;
  margin-bottom: 28px;
}

/* ── SOCIAL LINKS ── */
.social-links { display: flex; gap: 16px; }

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(111,162,135,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,243,238,0.4);
  text-decoration: none;
  font-size: 0.7rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER COLUMNS ── */
.footer-col h5 {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.78rem; font-weight: 300;
  color: rgba(247,243,238,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }

/* ── FOOTER BOTTOM ── */
.footer-bottom {
  background: var(--dark);
  padding: 20px 60px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center;
}

.footer-copy {
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(247,243,238,0.2);
}
