/* ══════════════════════════════════════════════════════════
   FOOTER — Brand column, nav columns, address bar, legal strip
   Shared by all pages
══════════════════════════════════════════════════════════ */

.footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  color: var(--text-body);
}

/* ── Main area: brand + nav grid ── */
.footer-main {
  max-width: 90rem; margin: 0 auto;
  padding: 3rem clamp(1.25rem, 5vw, 3rem) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ── Brand column ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-logo-link { display: inline-flex; line-height: 0; }
.footer-logo {
  height: 4rem;
  object-fit: contain;
}
.footer-tagline {
  font-size: 1.2rem;
  color: var(--gray-200);
  line-height: 1.7;
  margin: 0;
  padding-left: .75rem;
  border-left: 2px solid rgba(var(--rgb-red), .45);
}
.footer-hashtag { color: var(--red); font-weight: 700; letter-spacing: .01em; }

/* ── Claim strip — between address bar and legal ── */
.footer-claim {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: .875rem clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}
.footer-claim-text {
  font-family: 'Teko', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ── Socials ── */
.footer-socials {
  display: flex;
  gap: .5rem;
}
.footer-soc-btn {
  width: 2.25rem; height: 2.25rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted-sm);
  transition: border-color .15s, color .15s;
}
.footer-soc-btn:hover { border-color: var(--red); color: var(--white); }
.footer-soc-btn svg { stroke: currentColor; }

/* ── CTAs (Tickets + Fanshop) ── */
.footer-ctas {
  display: flex;
  gap: .625rem;
  flex-wrap: wrap;
}

/* ── Nav columns ── */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-col { border-bottom: 1px solid var(--surface2); }
.footer-col:last-child { border-bottom: none; }
.footer-col-toggle {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: .875rem 0;
  color: var(--white);
  font-family: 'Teko', sans-serif;
  font-size: 1.2rem; font-weight: 900;
  letter-spacing: .12em; text-transform: uppercase;
  min-height: 48px;
  transition: color .15s;
}
.footer-col-toggle:hover { color: var(--red); }
.footer-col-toggle svg {
  stroke: currentColor;
  transition: transform .25s;
  flex-shrink: 0;
}
.footer-col.open .footer-col-toggle svg { transform: rotate(180deg); }

.footer-col-links {
  list-style: none;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.footer-col.open .footer-col-links { grid-template-rows: 1fr; }
.footer-col-links > * { overflow: hidden; }

/* Wrap all li inside a div for the overflow trick */
.footer-col-links {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
  padding: 0;
}
.footer-col.open .footer-col-links {
  max-height: 28rem;
  padding-bottom: .75rem;
}
.footer-col-links li a {
  display: flex; align-items: center;
  min-height: 40px; padding: .25rem 0;
  font-size: 1.2rem;
  color: var(--gray-100);
  border-bottom: 1px solid var(--surface2);
  transition: color .12s;
}
.footer-col-links li:last-child a { border-bottom: none; }
.footer-col-links li a:hover { color: var(--white); }

/* Divider item inside col links */
.footer-col-divider {
  height: 0;
  border-bottom: 1px solid var(--border);
  margin: .25rem 0;
  pointer-events: none;
}

/* ── Address bar ── */
.footer-address-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.footer-address-inner {
  max-width: 90rem; margin: 0 auto;
  padding: 1rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2.5rem;
  align-items: center;
}
.footer-address-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1.2rem;
  color: var(--faint);
  line-height: 1.4;
}
.footer-address-item svg { stroke: currentColor; flex-shrink: 0; opacity: .5; }
.footer-address-item a {
  color: var(--faint);
  transition: color .12s;
}
.footer-address-item a:hover { color: var(--white); }

/* ── Legal strip ── */
.footer-legal {
  max-width: 90rem; margin: 0 auto;
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.footer-legal-copy {
  font-size: 1.2rem;
  color: var(--gray-400);
  line-height: 1.5;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem 1.25rem;
}
.footer-legal-links a {
  font-size: 1.2rem;
  color: var(--gray-300);
  min-height: 40px; display: flex; align-items: center;
  transition: color .12s;
}
.footer-legal-links a:hover { color: var(--text-body); }

/* ══════════════════════════════════════════════════════════
   DESKTOP (≥ 56rem): side-by-side layout
══════════════════════════════════════════════════════════ */
@media (min-width: 56rem) {

  .footer-main {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  /* Brand column: fixed width */
  .footer-brand {
    width: 14rem;
    flex-shrink: 0;
  }
  .footer-ctas { flex-direction: column; }
  .footer-cta-primary,
  .footer-cta-secondary { flex: none; width: 100%; }

  /* Nav: 4-column grid */
  .footer-nav {
    flex: 1;
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
  }
  .footer-col {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid var(--surface2);
    padding: 0 1.5rem;
  }
  .footer-col:first-child { padding-left: 0; }
  .footer-col:last-child { border-right: none; padding-right: 0; }

  /* On desktop: always show links, no accordion */
  .footer-col-toggle {
    pointer-events: none;
    cursor: default;
    padding: 0 0 1.2rem;
    min-height: auto;
    color: var(--red);
    font-size: .8125rem;
    letter-spacing: .2em;
  }
  .footer-col-toggle svg { display: none; }
  .footer-col-links {
    max-height: none !important;
    overflow: visible;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .footer-col-links li a {
    min-height: auto;
    padding: .3rem 0;
    font-size: 1.2rem;
    border-bottom: none;
  }
  .footer-col-divider {
    border-bottom: 1px solid var(--border);
    margin: .375rem 0;
  }

  /* Address bar: single row */
  .footer-address-inner {
    flex-wrap: nowrap;
    gap: 2rem;
  }

  /* Legal: row layout */
  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-legal-links a { min-height: auto; }
}
