/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  --footer-surface: #111111;
  --footer-text: #ffffff;
  background: var(--footer-surface);
  color: var(--footer-text);
  margin-top: clamp(32px, 6vw, 64px);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  padding-top: clamp(36px, 6vw, 64px);
  padding-bottom: clamp(32px, 5vw, 56px);
}
.footer .brand { width: 210px; justify-self: start; }
.footer-claim { margin-top: 14px; font-size: 14px; color: var(--gray-3); line-height: 1.55; max-width: 34ch; }
.footer-social { display: flex; gap: 2px; margin-top: 18px; margin-left: -12px; }
.footer-social a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  transition: color 0.15s var(--ease);
}
.footer-social a:hover { color: var(--y); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h2, .footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--shell-muted, #9a9a97);
  margin-bottom: 14px;
}
.footer-col h2::before, .footer-col h4::before {
  content: "";
  display: block;
  width: 18px;
  height: 3px;
  background: var(--y);
  margin-bottom: 10px;
}
.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-3);
  transition: color 0.15s var(--ease);
}
.footer-col a:hover { color: var(--y); }
.footer-col li { display: block; }
.footer-bottom { border-top: 1px solid var(--shell-rule, #2c2c2c); }
.footer-bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  padding-top: 18px;
  padding-bottom: 22px;
  font-size: 12px;
  color: var(--shell-muted, #9a9a97);
  font-weight: 600;
}
.footer-bottom .yline { display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom .yline::before { content: ""; width: 18px; height: 3px; background: var(--y); }
