* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Gentium Basic', Georgia, serif;
  text-align: center;
  padding: 6vh 6vw;
  background: linear-gradient(#8BBAA9 0%, #3F5F52 100%);
  background-attachment: fixed;
  color: #F7F5F1;
  -webkit-font-smoothing: antialiased;
}
.mark { width: clamp(88px, 14vw, 140px); height: auto; margin-bottom: clamp(20px, 4vh, 40px); }
.wordmark {
  font-family: 'Dancing Script', 'Gentium Basic', cursive;
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1;
}
.subword {
  font-family: 'Gentium Basic', Georgia, serif;
  font-size: clamp(0.75rem, 1.6vw, 1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  color: #EEF4F0;
}
.tagline { font-size: clamp(1rem, 2.4vw, 1.3rem); margin-top: clamp(28px, 5vh, 44px); }
.location { font-size: clamp(0.8rem, 1.6vw, 0.95rem); opacity: 0.75; margin-top: 0.5rem; color: #EEF4F0; }
.contact { font-size: clamp(0.8rem, 1.6vw, 0.95rem); margin-top: clamp(28px, 5vh, 40px); opacity: 0.9; color: #EEF4F0; line-height: 1.7; }
.contact a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.coming-soon {
  font-size: clamp(0.65rem, 1.4vw, 0.8rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: clamp(48px, 9vh, 90px);
  color: #EEF4F0;
}
@media (prefers-reduced-motion: no-preference) {
  body > div { animation: rise 0.7s ease-out both; }
  @keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
}
