/* ============================================================
   wa-footer-lp.css — Velthian public landing-page footer
   Self-contained: defines its own colour tokens scoped to
   .lp-footer so it can be dropped into any page without
   requiring wa-index.css.
   ============================================================ */

/* Scoped tokens — safe on any page */
.lp-footer {
  --gold:       #c9a84c;
  --gold-dim:   #8a6e2f;
  --gold-pale:  rgba(201,168,76,0.10);
  --text:       #eae5dc;
  --text2:      #a0998e;
  --muted:      #5a5a68;
  --border:     rgba(255,255,255,0.08);
  --border2:    rgba(255,255,255,0.14);
  --ink:        #0a0a0c;
  --ink2:       #111116;
  --surface:    #18181f;
  --font-d:     'Cormorant Garamond', Georgia, serif;
  --font-b:     'DM Sans', sans-serif;

  background: #08080a;
  border-top: 1px solid var(--border);
  padding: 56px 56px 0;
  margin-top: auto;
}

.lp-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.lp-footer-brand-name {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--text);
  margin-bottom: 10px;
}

.lp-footer-tagline {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 240px;
  margin-bottom: 20px;
}

.lp-footer-socials { display: flex; gap: 10px; }

.lp-social-btn {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.lp-social-btn:hover { border-color: var(--gold-dim); color: var(--gold); }

.lp-footer-disclaimer {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 12px 14px;
  margin-top: 20px;
}
.lp-footer-disclaimer p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
}
.lp-footer-disclaimer strong { color: var(--text2); }

.lp-footer-col h4 {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 16px;
}
.lp-footer-col ul { list-style: none; margin: 0; padding: 0; }
.lp-footer-col ul li { margin-bottom: 10px; }
.lp-footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-footer-col ul li a:hover { color: var(--gold); }

.lp-footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-footer-bottom-left { font-size: 11px; color: var(--muted); }
.lp-footer-bottom-right { display: flex; gap: 20px; }
.lp-footer-bottom-right a {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-footer-bottom-right a:hover { color: var(--text2); }

/* ── Light theme overrides ───────────────────────────────── */
body.light .lp-footer {
  --text:    #1a1a1c;
  --text2:   #4a4a52;
  --muted:   #9a9aa2;
  --border:  rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.12);
  --surface: #ffffff;
  background: #f8f8f9;
}

body.light .lp-footer-disclaimer {
  background: rgba(0, 0, 0, 0.03);
}

@media (max-width: 960px) {
  .lp-footer { padding: 48px 24px 0; }
  .lp-footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  /* Brand block spans full width at top */
  .lp-footer-top > div:first-child {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
  }
  .lp-footer-tagline { max-width: 320px; margin-bottom: 0; }
  .lp-footer-disclaimer { margin-top: 0; flex: 1 1 300px; }
  .lp-footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 20px 0; }
}

@media (max-width: 480px) {
  .lp-footer-top { grid-template-columns: 1fr; }
  .lp-footer-top > div:first-child { flex-direction: column; }
}
