.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact__feedback {
  min-height: 1.4em;
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.contact__feedback.is-error {
  color: #b42318;
}

.contact__privacy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius-md);
  background: var(--glass-bg-strong);
  color: var(--text);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 10px 16px;
  font-size: 13px;
}

.legal-page {
  padding-top: calc(var(--nav-height) + clamp(48px, 7vw, 88px));
  padding-bottom: clamp(80px, 10vw, 140px);
}

.legal-page__content {
  max-width: 760px;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 4vw + 1rem, 4.8rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.legal-page__updated {
  margin: 0 0 48px;
  color: var(--muted);
  font-size: 13px;
}

.legal-page h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 1.2vw + 1rem, 1.85rem);
  font-weight: 500;
  margin: 40px 0 12px;
}

.legal-page p {
  max-width: 68ch;
}

.legal-page article a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner .btn {
    white-space: normal;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__extra {
    flex-wrap: wrap;
  }
}
