html,
body {
  background: #fff !important;
}

.site-footer {
  width: 100%;
  margin: 56px 0 0;
  padding: 0;
  color: #fff;
  text-align: left;
  font-weight: 800;
}
.site-footer-shell {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--ink, #152b4b);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 18px 44px rgba(21,43,75,.16);
}
.site-footer-shell::before {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -58%;
  width: min(680px, 68vw);
  height: min(420px, 44vw);
  border-radius: 100% 0 0 0;
  background: var(--yellow, #ffa80b);
  pointer-events: none;
}
.site-footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(130px, .65fr) minmax(210px, .85fr) minmax(210px, .8fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.site-footer-logo {
  width: min(178px, 62vw);
  height: auto;
  margin: 0 0 18px;
}
.site-footer-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Shantell Sans", cursive;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: var(--red, #ff4d12);
  transform: rotate(-1.4deg);
}
.site-footer-title {
  margin: 0;
  max-width: 430px;
  font-family: "Gabarito", "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: .9;
  letter-spacing: 0;
  color: #fff;
}
.site-footer-text {
  max-width: 450px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.45;
}
.site-footer-heading {
  display: block;
  margin-bottom: 12px;
  font-family: "Gabarito", "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: .95;
  text-transform: uppercase;
  color: #fff;
}
.site-footer-links,
.site-footer-contact {
  display: grid;
  gap: 9px;
}
.site-footer .nav-item {
  display: block;
}
.site-footer .nav-caret,
.site-footer .nav-sub {
  display: none !important;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer-links a,
.site-footer-contact a,
.site-footer-contact span {
  width: fit-content;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
  transition: color .18s ease, transform .18s ease;
}
.site-footer-links a:hover,
.site-footer-contact a:hover {
  color: var(--yellow, #ffa80b);
  transform: translateX(3px);
}
@media (max-width: 720px) {
  .site-footer-links a,
  .site-footer-contact a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}
.site-footer-card {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.10);
  border: 2px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.site-footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease;
}
.site-footer-pill:hover {
  transform: translateY(-2px) rotate(-1deg);
  background: rgba(255,255,255,.20);
}
.site-footer-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 16px;
  padding: 0 18px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--red, #ff4d12);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18);
  transition: transform .18s ease, filter .18s ease;
}
.site-footer-cta:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.04) saturate(1.05);
}
.site-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  width: min(1180px, calc(100% - 36px));
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.35;
}
.site-footer-stars {
  display: inline-flex;
  gap: 10px;
  color: var(--red, #ff4d12);
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 920px) {
  .site-footer-main { grid-template-columns: 1fr 1fr; }
  .site-footer-card { grid-column: span 2; }
}
@media (max-width: 620px) {
  .site-footer { width: 100%; margin: 42px 0 0; }
  .site-footer-shell { border-radius: 0; padding: 24px 0; }
  .site-footer-main { grid-template-columns: 1fr; gap: 22px; }
  .site-footer-card { grid-column: auto; }
  .site-footer-bottom { align-items: flex-start; flex-direction: column; }
}
