:root {
  --gold: #b76e79;
  --gold-deep: #9d5c66;
  --cream: #F8EEE8;
  --cream-soft: #ede5dc;
  --ink: #2a2620;
  --ink-soft: #6b6356;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at top, rgba(183, 110, 121, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(183, 110, 121, 0.05) 0%, transparent 60%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.stage {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.content {
  text-align: center;
  max-width: 480px;
  animation: rise 0.9s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo {
  width: 280px;
  max-width: 70vw;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 24px rgba(183, 110, 121, 0.15));
}

.headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 3rem;
}

.lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  padding: 0.95rem 2.25rem;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(183, 110, 121, 0.25);
}

.cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(183, 110, 121, 0.35);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto 1.75rem;
  width: 80px;
}

.divider span {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
}

.contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.95rem;
}

.contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact a:hover {
  color: var(--gold-deep);
}

.contact svg {
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .logo { margin-bottom: 2rem; }
  .lede { font-size: 1rem; }
  .cta { padding: 0.85rem 1.75rem; font-size: 0.875rem; }
  .contact { font-size: 0.9rem; }
}
