:root {
  --bg: #f6f1e7;
  --paper: rgba(255, 252, 246, 0.72);
  --text: #2e2a25;
  --muted: #6c6257;
  --accent: #6b4f3a;
  --line: rgba(80, 65, 50, 0.15);
  --shadow: 0 10px 30px rgba(50, 40, 30, 0.08);
  --radius: 18px;
  --max-width: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(173, 150, 122, 0.08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(120, 140, 110, 0.08), transparent 30%),
    linear-gradient(180deg, #f8f4ec 0%, var(--bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.card {
  width: 100%;
  max-width: var(--max-width);
  background: var(--paper);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.tagline {
  margin: 0 0 2rem;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.5;
  color: var(--accent);
  font-style: italic;
  max-width: 32rem;
}

p {
  font-size: 1.08rem;
  line-height: 1.85;
  margin: 0 0 1.2rem;
}

.muted {
  color: var(--muted);
}

.divider {
  width: 72px;
  height: 1px;
  background: var(--line);
  margin: 2rem 0;
}

.footer {
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  align-items: center;
  justify-content: space-between;
}

.coming-soon {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.contact {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 79, 58, 0.35);
  padding-bottom: 2px;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.contact:hover {
  opacity: 0.8;
  border-color: rgba(107, 79, 58, 0.7);
}

@media (max-width: 640px) {
  .card {
    padding: 2.2rem 1.35rem;
  }

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

  p {
    font-size: 1rem;
    line-height: 1.8;
  }
}