* {
  box-sizing: border-box;
}

:root {
  --background: #f3eee6;
  --surface: rgba(255, 252, 247, 0.74);
  --text: #29241f;
  --muted: #746b61;
  --accent: #785f46;
  --line: rgba(41, 36, 31, 0.18);
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.9), transparent 34rem),
    var(--background);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.card {
  width: min(760px, 100%);
  padding: clamp(48px, 8vw, 88px) clamp(28px, 7vw, 72px);
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(41, 36, 31, 0.10);
  border-radius: 3px;
  box-shadow: 0 18px 60px rgba(55, 45, 34, 0.06);
  backdrop-filter: blur(7px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.26em;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.lead {
  margin: 30px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  line-height: 1.8;
}

.divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  width: min(230px, 70%);
  margin: 38px auto 30px;
  color: var(--accent);
}

.divider > span:not(.dot) {
  height: 1px;
  background: var(--line);
}

.dot {
  font-size: 0.75rem;
}

.contact {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  color: rgba(41, 36, 31, 0.48);
  font-size: 0.76rem;
}

.contact a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--text);
  border-color: currentColor;
}

@media (max-width: 520px) {
  .card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .lead br {
    display: none;
  }
}
