footer {
  border-top: 1px solid rgba(191,28,18,.25);
  background: var(--bg2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(36px,6vh,64px) clamp(18px,5vw,56px) 28px;
}

/* ── MAIN ROW ── */
.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: clamp(24px,4vw,56px);
  align-items: center;
  margin-bottom: 32px;
}
@media(max-width:640px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
}

/* ── RATING IMAGE ── */
.footer-rating-col {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}
.footer-rating {
  width: clamp(72px,8vw,96px);
  display: block;
  opacity: .8;
  transition: opacity .3s;
}
.footer-rating:hover { opacity: 1; }

.footer-skull-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-skull {
  width: clamp(80px,10vw,140px);
  opacity: .7;
  transition: opacity .3s;
  display: block;
}
.footer-skull:hover { opacity: 1; }
/* ── LABELS ── */
.footer-col-label {
  font-family: var(--font-s);
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col-label::after {
  content: '';
  flex: 0 0 24px;
  height: 1px;
  background: var(--red);
  opacity: .4;
}

/* ── SOCIAL LINKS ── */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: var(--font-d);
  font-size: 16px;
  letter-spacing: .22em;
  color: var(--fg-dim);
  transition: color .14s;
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--red); }

/* ── BOOKING ── */
.footer-booking {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-name {
  font-family: var(--font-d);
  font-size: 18px;
  letter-spacing: .18em;
  color: var(--fg);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.booking-detail {
  font-family: var(--font-s);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--fg-dim);
  transition: color .14s;
  word-break: break-all;
}
.booking-detail:hover { color: var(--red); }

/* ── BOTTOM BAR ── */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--fg-off);
  padding-top: 20px;
  opacity: .28;
}
.footer-copy {
  font-family: var(--font-s);
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
