/* ─── FOOTER BUTTON ──────────────────────────────────────────────── */
#footer-btn {
  position: fixed;
  bottom: 2%; left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: transparent;
  border: 1px solid var(--button);
  border-radius: 18px;
  padding: 10px 16px;
  font-family: 'SuisseIntl', sans-serif;
  font-size: var(--text-base);
  color: var(--button);
  cursor: pointer;
  transition: opacity var(--duration-fast) ease;
  white-space: nowrap;
}
 
#footer-btn:hover { opacity: 0.6; }
 
/* ─── FOOTER DRAWER ──────────────────────────────────────────────── */
#footer-drawer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 190;
  background: var(--ink-mid);
  transform: translateY(100%);
  transition: transform var(--duration-drawer) var(--ease-out-expo);
  padding: 0 0 80px;
  overflow-y: auto;
  
}
 
#footer-drawer.open { transform: translateY(0); }
 
.footer-row {
  display: flex;
  flex-direction: column;
  padding: var(--pad-y) clamp(30px, 3vw, 35px) 0 var(--pad-x);
  max-width: 2560px;
  margin: 0 auto;
  
  
}
 
.footer-manifesto {
  font-family: 'Mackay', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  line-height: var(--lh-display);
  color: var(--ink-footer);
  max-width: 40ch;
  padding-bottom: 40px;
}
 
.footer-manifesto strong { font-weight: 600; }
 
.footer-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-shrink: 0;
  justify-content: flex-end;
}
 
.footer-col-label {
  font-family: 'SuisseIntl', sans-serif;
  font-size: var(--text-xs);
  text-transform: uppercase;
  color: var(--ink-footer);
  margin-bottom: 10px;
}
 
.footer-col {
  font-family: 'SuisseIntl', sans-serif;
  font-size: var(--text-sm);
  line-height: 2;
  color: var(--ink-mid-footer);
}
 
.footer-col a {
  display: block;
  color: var(--ink-mid-footer);
  text-decoration: none;
  transition: opacity var(--duration-fast);
}

.footer-col a:hover { opacity: 0.5; }
 
.footer-col a.pending,
.footer-col .pending {
  display: block;
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
 
.footer-row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
 
.footer-close {
  font-family: 'SuisseIntl', sans-serif;
  font-size: var(--text-xs);
  text-transform: uppercase;
  color: var(--ink-footer);
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  flex-shrink: 0;
  transition: opacity var(--duration-fast);
}

.footer-close:hover { opacity: 1; color: var(--cream); }

@media (max-width: 860px) {
  .footer-grid {
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-manifesto { font-size: clamp(0.95rem, 4vw, 1.4rem); }
}