.site-footer {
  position: relative;
  padding: calc(var(--section-padding-y) + 2rem) var(--section-padding-x) 0;
  overflow: hidden;
  background: var(--color-footer);
  color: #d9cdbe;
}
.site-footer::after { content: ""; position: absolute; top: -35%; left: 50%; width: min(70rem, 120vw); aspect-ratio: 2 / 1; background: radial-gradient(ellipse, rgb(233 201 141 / 0.075), transparent 70%); transform: translateX(-50%); pointer-events: none; }
.site-footer__inner { position: relative; z-index: 2; width: min(100%, var(--footer-container-width)); margin-inline: auto; }
.site-footer__grid { display: grid; grid-template-columns: repeat(3, minmax(0, max-content)); justify-content: space-between; column-gap: clamp(3rem, 6vw, 7rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.site-footer__company { margin-bottom: 0.7rem; color: #e9c98d; font-family: var(--font-family-heading); font-size: 1.35rem; font-weight: 700; }
.site-footer__claim { color: #b8ac9c; font-size: 0.95rem; }
.site-footer__heading { margin-bottom: 1rem; color: #fff; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.site-footer__list { display: grid; gap: 0.55rem; margin: 0; padding: 0; list-style: none; }
.site-footer__address { display: grid; gap: 0.45rem; }
.site-footer__address a { margin-top: 0.1rem; }

/* Without a marker this reads as another line of the address. */
.site-footer__link { display: inline-flex; align-items: center; gap: 0.4rem; }
.site-footer__link span { transition: transform var(--transition-standard); }
.site-footer__link:hover span,
.site-footer__link:focus-visible span { transform: translateX(0.25rem); }
.site-footer a { color: #d9cdbe; text-decoration: none; }
.site-footer a:hover,
.site-footer a:focus-visible { color: #e9c98d; }
.site-footer__bar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; padding: 1.35rem 0; border-top: 1px solid color-mix(in srgb, var(--color-white) 12%, transparent); color: #9c9183; font-size: 0.85rem; }
.site-footer__copyright { margin: 0; }
.site-footer__legal-nav { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }

@media (max-width: 52rem) {
  .site-footer__grid { grid-template-columns: 1fr; justify-content: stretch; row-gap: 2rem; }
  .site-footer__bar-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__link span { transition: none; }
}
