/* Split-depth footer: grape CTA band + charcoal body (site-wide) */
.site-footer.site-footer--split {
  position: relative;
  background: transparent;
  padding: 0;
  overflow: hidden;
  display: block;
  border-top: none;
}

/* Beat page-level `.site-footer a { color: … !important }` on inner pages */
footer.site-footer--split .footer-cta-band .footer-cta-card {
  color: #fff !important;
}

footer.site-footer--split .footer-cta-band .footer-cta-main {
  color: #fff !important;
}

footer.site-footer--split .footer-cta-band .footer-cta-label {
  color: rgba(255, 255, 255, 0.55) !important;
}

.site-footer.site-footer--split .bg-icon,
.site-footer.site-footer--split .footer-bg-shape {
  display: none;
}

/* —— Grape action band —— */
.footer-cta-band {
  background: linear-gradient(135deg, #5a2d82 0%, #3d1a5e 48%, #4a2570 100%);
  padding: clamp(20px, 4vw, 28px) 0;
  border-bottom: 1px solid rgba(204, 169, 103, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-cta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none !important;
  color: #fff !important;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
}

.footer-cta-card:hover {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(204, 169, 103, 0.35);
  transform: translateY(-2px);
  color: #fff !important;
}

.footer-cta-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(204, 169, 103, 0.18);
  border: 1px solid rgba(204, 169, 103, 0.28);
  font-size: 18px;
  color: #e8d4a8;
}

.footer-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  min-width: 0;
}

.footer-cta-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.footer-cta-main {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

/* —— Charcoal main —— */
.footer-split-main {
  background: #121015;
  background-image: radial-gradient(
    ellipse 80% 50% at 50% -20%,
    rgba(90, 45, 130, 0.12),
    transparent
  );
}

.footer-split-grid {
  padding: clamp(48px, 7vw, 72px) 0 clamp(36px, 5vw, 48px);
  margin: 0;
  --fs-muted: rgba(255, 255, 255, 0.58);
}

.footer-split-col-brand {
  padding-right: clamp(0px, 3vw, 24px);
  margin-bottom: 28px;
}

@media (min-width: 992px) {
  .footer-split-col-brand {
    margin-bottom: 0;
  }
}

.footer-split-logo-link {
  display: inline-block;
  margin-bottom: 18px;
  opacity: 0.95;
  transition: opacity 0.2s;
}

.footer-split-logo-link:hover {
  opacity: 1;
}

.footer-split-logo-link img {
  height: auto;
  max-width: 164px;
}

.footer-split-tagline {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fs-muted);
  margin: 0 0 22px;
  max-width: 320px;
}

.footer-split-heading {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(204, 169, 103, 0.25);
  font-family: "Jost", "Poppins", sans-serif;
}

.footer-split-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-split-list a {
  color: var(--fs-muted) !important;
  text-decoration: none !important;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-split-list a:hover {
  color: #cca967 !important;
}

.footer-split-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-split-contact a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--fs-muted) !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1.45;
  transition: color 0.2s;
}

.footer-split-contact a i {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 45, 130, 0.25);
  border-radius: 50%;
  font-size: 14px;
  color: #c9a5e8;
  margin-top: 2px;
}

.footer-split-contact a:hover {
  color: #fff !important;
}

.footer-split-contact a:hover i {
  background: rgba(90, 45, 130, 0.45);
  color: #e8d4ff;
}

/* —— Bottom bar: copyright + policies —— */
.footer-split-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a090c;
  padding: 22px 0;
}

.footer-split-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
}

.footer-split-copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-split-copy a {
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none !important;
}

.footer-split-copy a:hover {
  color: #cca967 !important;
}

.footer-split-policies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}

.footer-split-policies a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45) !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-split-policies a:hover {
  color: #cca967 !important;
}

@media (max-width: 991px) {
  .footer-cta-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .footer-split-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-split-policies {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .footer-cta-card {
    padding: 14px 16px;
  }

  .footer-cta-main {
    font-size: 15px;
  }
}

/* Scroll-to-top (legal pages may not load style.css) */
#scroll-to-top.scroll-to-top {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 95;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: #5a2d82;
  color: #fff !important;
  border-radius: 50%;
  font-size: 17px;
  text-decoration: none !important;
  display: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

#scroll-to-top.scroll-to-top:hover {
  color: #fff !important;
  background: #3d1a5e;
}
