/* Willow Rest Funerals — calm, minimal memorial demo */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Nunito+Sans:wght@400;500;600&display=swap");

:root {
  --wf-stone: #f3f1ec;
  --wf-paper: #faf9f7;
  --wf-sage: #6b7c6e;
  --wf-sage-d: #4a5a4d;
  --wf-ink: #2c2a26;
  --wf-muted: #6e6b65;
  --wf-line: #e0ddd6;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--wf-ink);
  background: var(--wf-paper);
}

img { max-width: 100%; display: block; }

.wf-container { max-width: 900px; margin: 0 auto; padding: 0 1.25rem; }

.wf-header {
  text-align: center;
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--wf-line);
}

.wf-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--wf-ink);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.wf-tag {
  font-size: 0.75rem;
  color: var(--wf-muted);
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}

.wf-hero {
  padding: 3.5rem 0 4rem;
  text-align: center;
}

.wf-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 auto 1.25rem;
  max-width: 18ch;
  color: var(--wf-sage-d);
}

.wf-hero p {
  color: var(--wf-muted);
  max-width: 40ch;
  margin: 0 auto 2rem;
  font-size: 1.02rem;
}

.wf-btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wf-paper);
  background: var(--wf-sage-d);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.wf-btn:hover { background: var(--wf-sage); }

.wf-btn-ghost {
  background: transparent;
  color: var(--wf-sage-d);
  border: 1px solid var(--wf-line);
  margin-left: 0.5rem;
}

.wf-btn-ghost:hover { background: var(--wf-stone); }

.wf-band {
  background: var(--wf-stone);
  padding: 3rem 0;
  border-top: 1px solid var(--wf-line);
  border-bottom: 1px solid var(--wf-line);
}

.wf-band h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 2rem;
}

.wf-steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .wf-steps { grid-template-columns: repeat(3, 1fr); }
}

.wf-step {
  text-align: center;
  padding: 1.25rem;
}

.wf-step h3 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
  color: var(--wf-sage-d);
}

.wf-step p {
  font-size: 0.875rem;
  color: var(--wf-muted);
  margin: 0;
}

.wf-img {
  margin: 2rem auto 0;
  max-width: 720px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--wf-line);
}

.wf-img img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }

.wf-section { padding: 3rem 0; }

.wf-section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  text-align: center;
  margin: 0 0 1.5rem;
}

.wf-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  text-align: center;
  color: var(--wf-muted);
  max-width: 36ch;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.wf-form {
  max-width: 420px;
  margin: 0 auto;
  background: var(--wf-paper);
  padding: 2rem;
  border: 1px solid var(--wf-line);
}

.wf-field { margin-bottom: 1rem; }

.wf-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wf-sage-d);
  margin-bottom: 0.35rem;
}

.wf-field input,
.wf-field textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--wf-line);
  font-family: inherit;
  background: #fff;
}

.wf-field textarea { min-height: 88px; }

.wf-footer {
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--wf-muted);
  border-top: 1px solid var(--wf-line);
}

.wf-demo-strip {
  text-align: center;
  font-size: 0.6875rem;
  padding: 1rem;
  color: var(--wf-muted);
  background: var(--wf-stone);
}

.wf-demo-strip a { color: var(--wf-sage-d); font-weight: 600; text-decoration: none; }
