/* ============================================================
   FOOTER
   ============================================================ */
.hatter-footer {
  background: var(--hatter-bg-2);
  border-top: 1px solid var(--hatter-border);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.hatter-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--hatter-s5);
  align-items: start;
  position: relative;
}
.hatter-footer__lockup { display: inline-flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.hatter-footer__lockup .hatter-crest { height: 64px; width: auto; filter: drop-shadow(0 0 12px rgba(245,241,234,.16)); }
.hatter-footer__tagline { color: var(--hatter-text-muted); max-width: 32ch; margin-top: .75rem; }
.hatter-footer__area {
  font-family: var(--hatter-font-kicker); letter-spacing: .2em; text-transform: uppercase;
  color: var(--hatter-violet-bright); font-size: .85rem; margin-top: .75rem;
}

.hatter-footer__h {
  font-family: var(--hatter-font-kicker); font-size: 1rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--hatter-text-dim); margin-bottom: 1rem;
}
.hatter-footer__list { display: flex; flex-direction: column; gap: .55rem; }
.hatter-footer__list a { color: var(--hatter-text); }
.hatter-footer__list a:hover { color: var(--hatter-violet-bright); }

.hatter-footer__phone {
  font-family: var(--hatter-font-display); font-size: 1.5rem; color: var(--hatter-text);
  display: inline-block; margin-bottom: 1rem;
}
.hatter-footer__phone:hover { color: var(--hatter-violet-bright); }
.hatter-footer__socials { display: flex; gap: .75rem; }
.hatter-footer__socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--hatter-surface); border: 1px solid var(--hatter-border); color: var(--hatter-text);
  transition: color .2s, border-color .2s, transform .2s;
}
.hatter-footer__socials a:hover { color: var(--hatter-violet-bright); border-color: var(--hatter-violet); transform: translateY(-2px); }
.hatter-footer__socials .hatter-suit { width: 1.15rem; height: 1.15rem; }

/* "10/6" easter-egg ticket, faint, bleeding off the corner */
.hatter-footer__ticket {
  position: absolute; right: -10px; bottom: -30px; pointer-events: none; opacity: .5;
}
.hatter-footer__ticket-num {
  font-family: var(--hatter-font-display); font-style: italic;
  font-size: clamp(3rem, 8vw, 6rem); font-weight: 600;
  color: transparent; -webkit-text-stroke: 1px var(--hatter-border-strong);
  line-height: 1;
}

.hatter-footer__bar {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-block: 1.5rem;
  border-top: 1px solid var(--hatter-border);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--hatter-text-dim); font-size: .85rem;
}
.hatter-footer__bar a { color: var(--hatter-text-muted); }
.hatter-footer__bar a:hover { color: var(--hatter-violet-bright); }

@media (max-width: 780px) {
  .hatter-footer__inner { grid-template-columns: 1fr 1fr; }
  .hatter-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .hatter-footer__inner { grid-template-columns: 1fr; }
  .hatter-footer__bar { flex-direction: column; }
  /* Extra bottom room so the credit line clears the fixed WhatsApp bubble
     and the back-to-top control, which stack in the bottom-right corner. */
  .hatter-footer { padding-bottom: 6.75rem; }
}
