:root {
  --font-geist-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.contact-direct address {
  font: inherit;
  line-height: 1.35;
}

.contact-form-error {
  display: none;
  margin: -20px 0 30px;
  padding: 14px 16px;
  border-left: 3px solid var(--burgundy);
  background: rgba(163, 80, 97, 0.1);
  color: var(--burgundy);
  font-size: 0.86rem;
  line-height: 1.55;
}

.contact-form-error:target {
  display: block;
}

.contact-form-error a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.confirmation-page {
  min-height: calc(100vh - 88px);
  background:
    radial-gradient(circle at 74% 22%, rgba(163, 80, 97, 0.52), transparent 32%),
    var(--burgundy-dark);
  color: white;
  display: grid;
  place-items: center;
}

.confirmation-card {
  width: min(900px, 100%);
  text-align: center;
}

.confirmation-card h1 {
  margin-top: 26px;
  font-size: clamp(4rem, 8vw, 8.6rem);
  line-height: 0.88;
}

.confirmation-card h1 em {
  color: var(--blush);
  font-weight: 400;
}

.confirmation-card > p:last-of-type {
  max-width: 660px;
  margin: 36px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.confirmation-actions {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.confirmation-actions > a:not(.button) {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .confirmation-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
