* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #3d3a32;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.72), rgba(248,244,235,0.3) 40%, transparent 70%),
    linear-gradient(135deg, #f7f0e4 0%, #e8eadf 54%, #d7dfd2 100%);
  min-height: 100vh;
}

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

.card {
  width: min(760px, 100%);
  padding: clamp(34px, 7vw, 72px);
  text-align: center;
  background: rgba(255, 252, 246, 0.88);
  border: 1px solid rgba(121, 139, 109, 0.28);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(83, 91, 70, 0.18);
}

.mark {
  font-size: 34px;
  color: #7e8f72;
  margin-bottom: 12px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #7e8f72;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.55rem, 8vw, 5rem);
  line-height: 1;
  font-weight: 400;
  color: #3f4d39;
}

.tagline {
  margin: 18px auto 0;
  font-family: Arial, sans-serif;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: #6f6a5a;
}

.divider {
  width: 96px;
  height: 1px;
  background: #9eaa8f;
  margin: 34px auto;
}

.message {
  margin: 0 auto;
  max-width: 590px;
  font-family: Arial, sans-serif;
  line-height: 1.75;
  font-size: 1.06rem;
}

.accepting {
  margin: 28px 0 18px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: #56684d;
}

.contact {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

a {
  color: #3f4d39;
  text-decoration: none;
  border-bottom: 1px solid rgba(63, 77, 57, 0.35);
}

a:hover {
  border-bottom-color: #3f4d39;
}

@media (max-width: 520px) {
  .contact {
    flex-direction: column;
    gap: 8px;
  }
  .contact span {
    display: none;
  }
}
