/* EverHome — brand colours and base styles */
:root {
  --cottage-cream: #F5EFE0;
  --deep-earth:    #2D2820;
  --garden-green:  #4A6741;
  --garden-green-dark: #354D2F;
  --warm-amber:    #C49A5A;
  --warm-stone:    #7A7268;
  --parchment:     #EDE4D0;
}

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

html, body {
  height: 100%;
}

body {
  background-color: var(--cottage-cream);
  color: var(--deep-earth);
  font-family: 'Literata', Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Splash layout */
.splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  gap: 2.5rem;
}

.wordmark-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Decorative rule above/below wordmark */
.wordmark-wrap::before,
.wordmark-wrap::after {
  content: '';
  display: block;
  width: 4rem;
  height: 1px;
  background-color: var(--garden-green);
  opacity: 0.4;
}

.wordmark {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--garden-green-dark);
  line-height: 1.1;
}

.tagline {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--warm-stone);
  font-style: italic;
  letter-spacing: 0.01em;
}

.coming-soon {
  font-family: 'Sacramento', cursive;
  font-size: 1.25rem;
  color: var(--warm-stone);
  opacity: 0.7;
}

/* Entrance animation — one well-orchestrated reveal */
.wordmark-wrap {
  animation: rise 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tagline {
  animation: rise 1.2s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.coming-soon {
  animation: rise 1.2s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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