:root {
  --soil: #2c1810;
  --terracotta: #c45c26;
  --clay: #e8c4a8;
  --sand: #f3e6d8;
  --forest: #1e3d2f;
  --leaf: #3d6b4f;
  --ink: #1a120e;
  --display: "Libre Baskerville", Georgia, serif;
  --body: "Outfit", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--body); background: var(--sand); color: var(--ink); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
.skip { position: absolute; left: -9999px; }
.wrap { width: min(1100px, calc(100% - 2.5rem)); margin-inline: auto; }
.topbar {
  background: var(--soil);
  color: var(--sand);
  position: sticky; top: 0; z-index: 20;
}
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0;
}
.brand { font-family: var(--display); font-size: 1.15rem; font-weight: 700; }
.phone { font-weight: 600; color: var(--clay); }
.hero-band {
  background: linear-gradient(180deg, var(--soil) 0%, #3a2418 100%);
  color: var(--sand);
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}
.soil {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  color: var(--terracotta);
  font-weight: 600;
  margin: 0 0 .85rem;
}
h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 700;
}
.lede { color: #d4c0ae; max-width: 38ch; margin: 0 0 1.75rem; font-size: 1.05rem; }
.btn {
  display: inline-flex;
  background: var(--terracotta);
  color: #fff;
  font-weight: 700;
  padding: .9rem 1.3rem;
  border-radius: 4px;
}
.btn:hover { filter: brightness(1.08); }
.btn.light { background: var(--sand); color: var(--soil); }
.terraces {
  display: grid;
  gap: 12px;
  transform: rotate(-2deg);
}
.t {
  height: 52px;
  border-radius: 6px 28px 6px 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.t1 { background: linear-gradient(90deg, var(--leaf), #5a8f6a); width: 92%; margin-left: 8%; }
.t2 { background: linear-gradient(90deg, var(--terracotta), #d4783c); width: 100%; }
.t3 { background: linear-gradient(90deg, #5a4030, #8a6550); width: 85%; margin-left: 5%; }
.t4 { background: linear-gradient(90deg, #2f5a40, var(--forest)); width: 96%; margin-left: 2%; height: 64px; }
.band { padding: clamp(2.75rem, 6vw, 4.5rem) 0; }
.clay { background: var(--clay); }
.clay h2, .forest h2, .clay-light h2, .cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin: 0 0 1.5rem;
}
.strips { display: grid; gap: 1rem; }
.strip {
  background: var(--sand);
  border-left: 6px solid var(--forest);
  padding: 1.2rem 1.35rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  align-items: start;
}
.strip h3 { font-family: var(--display); font-size: 1.15rem; margin: 0; }
.strip p { margin: 0; color: #5a4638; font-size: .95rem; }
.forest {
  background: var(--forest);
  color: var(--sand);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.forest ul { margin: 0; padding: 0; list-style: none; }
.forest li {
  padding: .9rem 0;
  border-bottom: 1px solid rgba(243,230,216,.2);
  color: #c5d6c9;
}
.clay-light { background: var(--sand); }
.cities { color: #5a4638; font-size: 1.05rem; max-width: 48ch; line-height: 1.7; margin: 0; }
.cta-band {
  background: var(--terracotta);
  color: #fff;
  text-align: center;
}
.cta p { margin: 0 0 1.25rem; opacity: .92; }
footer {
  background: var(--soil);
  color: #b9a090;
  padding: 1.25rem 0;
  font-size: .9rem;
}
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
footer a { color: var(--clay); font-weight: 600; }
@media (max-width: 800px) {
  .hero, .split, .strip { grid-template-columns: 1fr; }
  .terraces { margin-top: 1rem; }
}
