@keyframes footer-shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(3px);
  }
}
.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ---------- Hero band ---------- */
.site-footer .site-footer-hero {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 90px 24px 100px;
  background: var(--primary);
}
.site-footer .site-footer-hero .site-footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: brightness(55%);
}
.site-footer .site-footer-hero .site-footer-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-footer .site-footer-hero .site-footer-bg-swap {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.site-footer .site-footer-hero .site-footer-bg-swap.is-visible {
  opacity: 1;
}
.site-footer .site-footer-hero .site-footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.6));
}
.site-footer .site-footer-hero .site-footer-logo {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 300px;
  height: auto;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.site-footer .site-footer-hero .site-footer-top {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
}
.site-footer .site-footer-hero .site-footer-top h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--cream);
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 24px;
}
.site-footer .site-footer-hero .site-footer-top .site-footer-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.site-footer .site-footer-hero .site-footer-top .tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 236, 225, 0.5);
  border-radius: 30px;
  padding: 9px 18px;
  color: var(--cream);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.site-footer .site-footer-hero .site-footer-top .tag:hover, .site-footer .site-footer-hero .site-footer-top .tag:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- Contact band ---------- */
.site-footer .site-footer-contact {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--cream);
  padding: 34px 24px 30px;
}
.site-footer .site-footer-contact .contact-squiggle {
  display: none;
  position: absolute;
  width: min(46vw, 620px);
  height: auto;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.site-footer .site-footer-contact .contact-squiggle-left {
  left: -120px;
  bottom: -140px;
}
.site-footer .site-footer-contact .contact-squiggle-right {
  right: -120px;
  top: -140px;
  transform: scaleX(-1) rotate(8deg);
}
.site-footer .site-footer-contact .site-footer-contact-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.site-footer .site-footer-contact .contact-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
}
.site-footer .site-footer-contact .contact-heading h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 30px;
  letter-spacing: 0.01em;
}
.site-footer .site-footer-contact .contact-heading .contact-divider {
  display: block;
  width: 170px;
  height: auto;
  margin-top: 10px;
  opacity: 0.9;
}
.site-footer .site-footer-contact .contact-info {
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer .site-footer-contact .contact-info .contact-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
.site-footer .site-footer-contact .contact-info .contact-role {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 2px;
}
.site-footer .site-footer-contact .contact-info .contact-lines {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.site-footer .site-footer-contact .contact-info .contact-phone,
.site-footer .site-footer-contact .contact-info .contact-email {
  color: var(--primary);
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.2s ease;
}
.site-footer .site-footer-contact .contact-info .contact-phone:hover, .site-footer .site-footer-contact .contact-info .contact-phone:focus-visible,
.site-footer .site-footer-contact .contact-info .contact-email:hover,
.site-footer .site-footer-contact .contact-info .contact-email:focus-visible {
  opacity: 0.6;
}
.site-footer .site-footer-contact .contact-info .contact-email {
  font-style: italic;
}
.site-footer .site-footer-contact .contact-info .contact-sep {
  opacity: 0.4;
}
.site-footer .site-footer-contact .contact-info .contact-address {
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.6;
  margin-top: 10px;
}
.site-footer .site-footer-contact .contact-info .site-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.site-footer .site-footer-contact .contact-info .site-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-footer .site-footer-contact .contact-info .site-footer-social a:hover, .site-footer .site-footer-contact .contact-info .site-footer-social a:focus-visible {
  opacity: 0.85;
  transform: translateY(-2px);
}

@media only screen and (min-width: 1140px) {
  .site-footer .site-footer-hero {
    min-height: 90vh;
    padding: 120px clamp(30px, 6vw, 90px) 140px;
  }
  .site-footer .site-footer-hero .site-footer-logo {
    right: -60px;
    bottom: -40px;
    width: 560px;
  }
  .site-footer .site-footer-hero .site-footer-top h2 {
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 30px;
  }
  .site-footer .site-footer-hero .site-footer-top .site-footer-tags {
    gap: 14px;
  }
  .site-footer .site-footer-hero .site-footer-top .tag {
    padding: 12px 26px;
    font-size: 15px;
  }
  .site-footer .site-footer-contact {
    padding: 46px 0 40px;
  }
  .site-footer .site-footer-contact .contact-squiggle {
    display: block;
  }
  .site-footer .site-footer-contact .contact-heading {
    margin-bottom: 26px;
  }
  .site-footer .site-footer-contact .contact-heading h3 {
    font-size: 36px;
  }
  .site-footer .site-footer-contact .contact-info .contact-name {
    font-size: 27px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer .site-footer-bg-swap {
    transition: none !important;
  }
}

/*# sourceMappingURL=footer.css.map */
