:root {
  --green-deep: #183d2b;
  --green: #496f4a;
  --sage: #dfe9d7;
  --cream: #fbf7ee;
  --clay: #b96b45;
  --ink: #1f2521;
  --muted: #68736b;
  --white: #fffdf8;
  --line: rgba(31, 37, 33, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Avenir Next", Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 6vw;
  background: rgba(251, 247, 238, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: 0.03em;
}

nav { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}
nav a:hover { color: var(--green-deep); }

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: center;
  gap: 3rem;
  padding: 7rem 6vw 5rem;
  background:
    radial-gradient(circle at top right, rgba(185,107,69,0.18), transparent 32%),
    linear-gradient(135deg, var(--cream), var(--sage));
}

.eyebrow, .section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  color: var(--green-deep);
  margin: 0 0 1rem;
}

h1 { font-size: clamp(3rem, 8vw, 6.8rem); max-width: 850px; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: 1.55rem; }

.intro {
  max-width: 720px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #38443b;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--green-deep);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--green-deep);
}
.button.secondary {
  background: transparent;
  color: var(--green-deep);
}
.button:hover { transform: translateY(-1px); }

.hero-card {
  min-height: 420px;
  border-radius: 2rem;
  background: var(--green-deep);
  color: var(--sage);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  box-shadow: 0 30px 70px rgba(24, 61, 43, 0.22);
}
.hero-card span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.section { padding: 5.5rem 6vw; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  border-top: 1px solid var(--line);
}
.split p, .feature p, .contact p { font-size: 1.08rem; color: #3d4840; }

.cards-section { background: var(--white); border-top: 1px solid var(--line); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.card {
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.5rem;
  background: var(--cream);
}
.card p { color: var(--muted); margin-bottom: 0; }

.feature {
  background: var(--green-deep);
  color: var(--white);
}
.feature h2, .feature .section-label { color: var(--sage); }
.feature p { color: rgba(255, 253, 248, 0.86); max-width: 850px; }
.quiet-list {
  margin-top: 2rem;
  padding-left: 1.2rem;
  color: rgba(255, 253, 248, 0.9);
}
.quiet-list li { margin: 0.45rem 0; }

.pale { background: var(--sage); }
.contact { text-align: center; background: var(--cream); border-top: 1px solid var(--line); }
.contact p { max-width: 720px; margin: 0 auto 1.5rem; }

footer {
  padding: 2rem 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero, .split, .cards { grid-template-columns: 1fr; }
  .hero { padding-top: 4rem; }
  .hero-card { min-height: 280px; }
}
