:root {
  --forest: #36513f;
  --deep-forest: #24372c;
  --sage: #8e9b79;
  --cream: #f5efe4;
  --warm-white: #fffdf8;
  --clay: #ae7659;
  --ink: #26302a;
  --muted: #657068;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.7;
}

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
  margin-top: 0;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: white;
  text-align: center;
  background:
    linear-gradient(rgba(24, 42, 31, .48), rgba(24, 42, 31, .62)),
    url("assets/promise-sanctuary-hero.png") center/cover no-repeat,
    linear-gradient(135deg, var(--sage), var(--deep-forest));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 10%, rgba(20, 34, 25, .18) 80%);
}

.hero-content {
  position: relative;
  max-width: 900px;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
}

.eyebrow {
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  margin-bottom: .25rem;
}

.tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-style: italic;
  margin: 0 0 1.5rem;
}

.hero-statement {
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.button {
  display: inline-block;
  padding: .9rem 1.4rem;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: .2s ease;
}

.button:hover,
.button:focus {
  background: white;
  color: var(--deep-forest);
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  animation: float 1.8s ease-in-out infinite;
}

@keyframes float {
  50% { transform: translate(-50%, 8px); }
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.narrow {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  color: var(--clay);
  margin-bottom: 1rem;
}

.section h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.section p {
  font-size: 1.08rem;
}

.welcome {
  background: var(--warm-white);
}

.promise {
  background: var(--cream);
}

.promise-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(54,81,63,.22);
  border-radius: 1.5rem;
  text-align: center;
  background: rgba(255,255,255,.45);
  box-shadow: 0 18px 60px rgba(36,55,44,.08);
}

.family {
  background:
    radial-gradient(circle at top left, rgba(142,155,121,.16), transparent 35%),
    var(--warm-white);
}

.coming-soon {
  background: var(--forest);
  color: white;
}

.coming-soon h2,
.coming-soon .section-kicker {
  color: white;
}

.closing {
  margin-top: 2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem !important;
  font-style: italic;
}

footer {
  padding: 2.2rem 1.5rem;
  text-align: center;
  background: var(--deep-forest);
  color: rgba(255,255,255,.9);
}

footer p {
  margin: .2rem 0;
}

.small {
  margin-top: .8rem;
  font-size: .85rem;
  opacity: .72;
}

@media (max-width: 640px) {
  .hero {
    padding: 1.5rem;
  }

  .section {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}
