/* Gemeinsamer Seiten-Footer */
.site-footer {
  --footer-bg: #302d28;
  --footer-surface: #37332d;
  --footer-text: #f3eee5;
  --footer-muted: #c9c0b3;
  --footer-soft: #a9a094;
  --footer-gold: #c8b47a;
  --footer-line: rgba(232, 220, 194, .16);
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  color: var(--footer-text);
  background:
    radial-gradient(circle at 86% 16%, rgba(200, 180, 122, .08), transparent 28%),
    linear-gradient(135deg, var(--footer-bg), var(--footer-surface));
  font-family: Jost, 'Segoe UI', sans-serif;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,180,122,.65) 24%, rgba(200,180,122,.65) 76%, transparent);
}

.site-footer::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(200,180,122,.72);
  background: var(--footer-bg);
  transform: translateX(-50%) rotate(45deg);
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer .footer-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 1240px);
  margin-inline: auto;
  padding: 88px 0 28px;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(270px, 1.25fr) minmax(130px, .62fr) minmax(280px, 1.12fr) minmax(235px, .9fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: start;
}

.site-footer .footer-brand {
  max-width: 370px;
}

.site-footer .footer-name {
  display: inline-block;
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .015em;
}

.site-footer .footer-name em {
  color: #f0e5d5;
  font-style: italic;
}

.site-footer .footer-signature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--footer-gold);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.site-footer .footer-signature::before {
  content: '';
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .72;
}

.site-footer .footer-copy {
  max-width: 340px;
  margin-top: 24px;
  color: var(--footer-muted);
  font-size: 14.5px;
  line-height: 1.85;
}

.site-footer .footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 22px;
  color: var(--footer-text);
  border-bottom: 1px solid rgba(200,180,122,.62);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-footer .footer-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms cubic-bezier(.23,1,.32,1);
}

.site-footer .footer-title {
  margin: 0 0 16px;
  color: var(--footer-gold);
  font-family: Jost, 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-footer .footer-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .footer-services-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.site-footer .footer-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--footer-muted);
  font-size: 13.5px;
  line-height: 1.45;
  transition: color 180ms ease;
}

.site-footer .footer-contact {
  margin: 0;
  font-style: normal;
}

.site-footer .footer-contact-link {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 44px;
  color: var(--footer-muted);
  font-size: 13.5px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.site-footer .footer-contact-link svg {
  width: 18px;
  height: 18px;
  color: var(--footer-gold);
  stroke-width: 1.45;
}

.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid var(--footer-line);
  color: var(--footer-soft);
  font-size: 11.5px;
  line-height: 1.6;
  letter-spacing: .045em;
}

.site-footer .footer-legal {
  display: flex;
  gap: 22px;
}

.site-footer .footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color 180ms ease;
}

.site-footer .footer-floral {
  position: absolute;
  z-index: 1;
  right: -90px;
  bottom: -126px;
  width: min(36vw, 520px);
  color: var(--footer-gold);
  opacity: .09;
  pointer-events: none;
}

.site-footer .footer-floral-left {
  right: auto;
  bottom: -180px;
  left: -180px;
  width: 390px;
  opacity: .045;
  transform: scaleX(-1) rotate(-8deg);
}

.site-footer .footer-floral svg {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer a:focus-visible {
  outline: 2px solid var(--footer-gold);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer .footer-list a:hover,
  .site-footer .footer-contact-link:hover,
  .site-footer .footer-legal a:hover,
  .site-footer .footer-cta:hover {
    color: #fff;
  }

  .site-footer .footer-cta:hover svg {
    transform: translateX(4px);
  }
}

.site-footer .footer-cta:active {
  transform: scale(.98);
}

@media (max-width: 1080px) {
  .site-footer .footer-main {
    grid-template-columns: 1.25fr .7fr 1fr;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
    max-width: 580px;
  }
}

@media (max-width: 720px) {
  .site-footer .footer-shell {
    width: min(calc(100% - 40px), 600px);
    padding-top: 68px;
  }

  .site-footer .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 30px;
  }

  .site-footer .footer-brand,
  .site-footer .footer-contact-column {
    grid-column: 1 / -1;
  }

  .site-footer .footer-name {
    font-size: 31px;
  }

  .site-footer .footer-list a,
  .site-footer .footer-contact-link {
    min-height: 44px;
  }

  .site-footer .footer-services-list {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 48px;
  }

  .site-footer .footer-floral {
    right: -110px;
    bottom: -70px;
    width: 330px;
  }

  .site-footer .footer-floral-left {
    display: none;
  }
}

@media (max-width: 460px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-brand,
  .site-footer .footer-contact-column {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer a,
  .site-footer svg {
    transition: none !important;
  }
}
