/* Dream Restoration Center — Coming Soon
   Coastal Lowcountry palette: marsh green, tidal blue, sunrise gold */

:root {
  --deep-tide: #1d4e5f;
  --marsh: #4a7c6f;
  --sunrise: #e8a33d;
  --sand: #faf6ef;
  --ink: #24333a;
  --soft: #5c7078;
}

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

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    linear-gradient(170deg, rgba(29, 78, 95, 0.06) 0%, rgba(232, 163, 61, 0.10) 100%),
    var(--sand);
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  text-align: center;
}

.card {
  max-width: 40rem;
  background: rgba(255, 255, 255, 0.85);
  border-top: 4px solid var(--sunrise);
  border-radius: 10px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(29, 78, 95, 0.12);
}

.eyebrow {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--marsh);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--deep-tide);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.tagline {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--sunrise);
  margin-bottom: 1.5rem;
}

.mission {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--soft);
  margin-bottom: 2rem;
}

.contact-btn {
  display: inline-block;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  background: var(--deep-tide);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.contact-btn:hover,
.contact-btn:focus {
  background: var(--marsh);
}

.contact-note {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--soft);
  margin-top: 0.9rem;
}

footer {
  margin-top: 2rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--soft);
}
