.site-footer {
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a;
  color: #fff;
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(238, 95, 25, 0.18) 0%, rgba(238, 95, 25, 0.05) 30%, transparent 60%),
    radial-gradient(80% 60% at 100% 100%, rgba(238, 95, 25, 0.06) 0%, transparent 60%),
    linear-gradient(135deg, #050505 0%, #111 60%, #1a1208 100%);
  z-index: -2;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  background-size: 200px 200px;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}

.site-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 7.5rem 5rem 2.5rem;
}

.site-footer__cta {
  max-width: 64rem;
  padding: 2rem 0 5rem;
}

.site-footer__eyebrow {
  margin: 0 0 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__headline {
  margin: 0 0 2.5rem;
  font-family: var(--_typography---font-styles--heading), Arial, sans-serif;
  font-size: clamp(2.75rem, 6.5vw, 5.75rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.site-footer__headline-light,
.site-footer__headline-accent {
  display: block;
}

.site-footer__headline-light {
  color: #fff;
}

.site-footer__headline-accent {
  color: var(--_primitives---brand--orange, #ee5f19);
}

.site-footer__body {
  max-width: 32rem;
  margin: 0 0 3rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.site-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.site-footer__btn--primary {
  padding: 0.95rem 1.75rem;
  background-color: var(--_primitives---brand--orange, #ee5f19);
  color: #fff;
}

.site-footer__btn--primary:hover {
  background-color: var(--_primitives---brand--dark-orange, #903a10);
  color: #fff;
}

.site-footer__btn--ghost {
  padding: 0.95rem 0.25rem;
  color: #fff;
  background: transparent;
}

.site-footer__btn--ghost:hover {
  color: var(--_primitives---brand--orange, #ee5f19);
}

.site-footer__divider {
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.18);
  margin: 0;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 0 1rem;
}

.site-footer__logo-link {
  display: inline-flex;
  align-items: center;
}

.site-footer__logo {
  width: auto;
  height: 2.25rem;
  display: block;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.25rem;
}

.site-footer__nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.site-footer__nav-link:hover {
  color: var(--_primitives---brand--orange, #ee5f19);
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}

@media (max-width: 991px) {
  .site-footer__inner {
    padding: 5rem 2.5rem 2rem;
  }

  .site-footer__cta {
    padding: 1rem 0 3rem;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding-top: 2rem;
    justify-items: center;
  }

  .site-footer__logo-link {
    justify-self: center;
  }

  .site-footer__nav {
    justify-content: center;
  }

  .site-footer__copyright {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .site-footer__inner {
    padding: 4rem 1.5rem 1.5rem;
  }

  .site-footer__eyebrow {
    margin-bottom: 1.25rem;
  }

  .site-footer__headline {
    margin-bottom: 1.75rem;
  }

  .site-footer__body {
    margin-bottom: 2rem;
  }

  .site-footer__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .site-footer__btn--primary,
  .site-footer__btn--ghost {
    width: 100%;
    text-align: center;
  }

  .site-footer__nav {
    gap: 1.25rem 1.75rem;
  }
}
