:root {
  --cream: #faf5ef;
  --secondary: #f2e5d9;
  --foreground: #3b2f26;
  --muted-foreground: #7a6b5d;
  --primary: #a18167;
  --primary-foreground: #faf5ef;
  --eyebrow: #67503b;
  --border: #e7d6c6;
  --ease-fluid: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--foreground);
  background: radial-gradient(1100px 520px at 50% -8%, #f7ecdf 0%, var(--secondary) 65%);
  text-align: center;
}

.card {
  width: 100%;
  max-width: 560px;
  padding: clamp(40px, 8vw, 56px) clamp(24px, 6vw, 48px);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 16px 22px rgba(43, 31, 18, 0.12);
  animation: enter 0.5s var(--ease-fluid);
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.logo {
  height: clamp(48px, 10vw, 60px);
  width: auto;
  max-width: 100%;
}

.eyebrow {
  margin: 36px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eyebrow);
}

h1 {
  margin: 10px 0 0;
  font-size: clamp(27px, 6vw, 36px);
  line-height: 1.15;
}

.lead {
  margin: 16px auto 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 13px 28px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: background-color 0.15s, transform 0.15s;
}

.btn:hover {
  background: var(--eyebrow);
}

.btn:active {
  transform: scale(0.97);
}

hr {
  margin: 36px 0 28px;
  border: 0;
  border-top: 1px solid var(--border);
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.contacts a {
  color: var(--foreground);
  text-decoration: none;
}

.contacts a:hover {
  color: var(--eyebrow);
  text-decoration: underline;
}

footer {
  font-size: 13px;
  color: var(--muted-foreground);
}

@media (prefers-reduced-motion: reduce) {
  .card {
    animation: none;
  }
}
