/* ABOUTME: Minimal styles for the coming-soon landing page. */
/* ABOUTME: Matches the invitation page aesthetic: warm palette, Cormorant Garamond. */

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

body {
  background: #faf8f5;
  color: #4a3f35;
  font-family: 'Cormorant Garamond', Georgia, serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon {
  text-align: center;
  padding: 2rem;
}

.coming-soon h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
