/* ==============================================
   Footer — Sponsors
   ============================================== */
.ch-ft-sponsors {
  background: var(--bg-drop);
  border-bottom: 1px solid var(--border);
}

.ch-ft-sponsors-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ch-ft-sponsors-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #b9975b;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.ch-ft-sponsors-label::before,
.ch-ft-sponsors-label::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: #b9975b;
}

.ch-ft-sponsors-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ch-ft-sponsors-viewport {
  width: 100%;
  overflow: hidden;
}

.ch-ft-sponsors-track {
  display: flex;
  gap: 10px;
  align-items: center;
  will-change: transform;
  transition: transform 0.5s ease;
}

.ch-ft-sponsor-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 84px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  overflow: hidden;
  flex: 0 0 140px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.ch-ft-sponsor-frame:hover {
  border-color: var(--primary);
  opacity: 0.75;
}

.ch-ft-sponsor-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ch-ft-sponsors-nav {
  display: flex;
  gap: 10px;
}

.ch-ft-sponsors-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.ch-ft-sponsors-arrow:hover {
  background: var(--gold-bright, var(--primary));
}

.ch-ft-sponsors-arrow:active {
  transform: scale(0.94);
}

.ch-ft-sponsors-arrow:focus-visible {
  outline: 2px solid var(--gold-bright, var(--primary));
  outline-offset: 2px;
}

.ch-ft-sponsors-arrow svg {
  display: block;
}

/* ==============================================
   Footer — Main Body
   ============================================== */
.ch-ft-main {
  position: relative;
  background: var(--bg-drop);
  overflow: hidden;
  border-top: 1px solid var(--border);
}
/* Ghost watermark */
.ch-ft-ghost {
  position: absolute;
  right: -40px;
  bottom: -30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 18vw, 220px);
  letter-spacing: 0.06em;
  color: rgba(185, 151, 91, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.ch-ft-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 4rem 2rem 0;
}

/* ==============================================
   Footer — Brand + Nav Grid
   ============================================== */
.ch-ft-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(185, 151, 91, 0.1);
}

/* Brand block */
.ch-ft-brand {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.ch-ft-logos {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-divider {
  width: 1px;
  height: 36px;
  background: rgba(185, 151, 91, 0.2);
  flex-shrink: 0;
}

.ch-ft-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.ch-ft-logo:hover img {
  opacity: 1;
}

.ch-ft-logo-acha img {
  height: 40px;
  opacity: 0.55;
  filter: none;
}

.ch-ft-logo-acha:hover img {
  opacity: 0.8;
}

.ch-ft-brand-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ch-ft-team-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.07em;
  color: #fff;
  line-height: 1;
}

.ch-ft-league-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  opacity: 0.7;
}

.ch-ft-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 260px;
  border-left: 2px solid rgba(185, 151, 91, 0.25);
  padding-left: 12px;
}

/* Social icons */
.ch-ft-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.ch-ft-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid rgba(185, 151, 91, 0.2);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.ch-ft-social a:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(185, 151, 91, 0.07);
}

.ch-ft-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Nav columns */
.ch-ft-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ch-ft-col {
  display: flex;
  flex-direction: column;
}

.ch-ft-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(185, 151, 91, 0.12);
}

.ch-ft-col a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  padding: 5px 0;
  border-left: 2px solid transparent;
  padding-left: 0;
  transition: color 0.15s, padding-left 0.15s, border-color 0.15s;
}

.ch-ft-col a:hover {
  color: #fff;
  border-left-color: var(--primary);
  padding-left: 8px;
}

/* ==============================================
   Footer — Bottom Bar
   ============================================== */
.ch-ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  flex-wrap: wrap;
}

.ch-ft-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  opacity: 0.6;
}

.ch-ft-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ch-ft-bottom-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
}

.ch-ft-bottom-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.ch-ft-hashtag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--primary);
  opacity: 0.5;
}

/* ==============================================
   Footer — Responsive
   ============================================== */
@media (max-width: 860px) {
  .ch-ft-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 540px) {
  .ch-ft-nav {
    grid-template-columns: 1fr 1fr;
  }
}
