:root {
  --bg: #f6f3ea;
  --paper: #fffcf6;
  --ink: #1c3326;
  --muted: #5d6b62;
  --accent: #3d7a4a;
  --forest: #1f3d2d;
  --forest-2: #254a36;
  --mint: #6fa86f;
  --line: #e4ddd0;
  --card: #fffcf6;
  --hero: #1f3d2d;
  --accent2: #254a36;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  background-image:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(111,168,111,.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(31,61,45,.05), transparent 50%);
}
img { max-width: 100%; display: block; }
a { color: var(--forest-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1240px, calc(100% - 2.8rem)); margin-inline: auto; }

/* —— top utility —— */
.util {
  background: #f3efe4;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
}
.util-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem 0;
  flex-wrap: wrap;
}
.util a { color: var(--ink); font-weight: 700; text-decoration: none; }
.util-social { display: flex; gap: .55rem; align-items: center; }
.util-social a {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--forest); color: #fff !important;
}
.util-social a:hover { background: var(--accent); text-decoration: none; }
.util-social svg { width: 13px; height: 13px; fill: currentColor; }

/* —— header —— */
header.top {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,252,246,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.top-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0; flex-wrap: nowrap;
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none !important; color: var(--ink);
  flex-shrink: 0;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--forest); color: #c5e4b8;
  display: grid; place-items: center;
}
.brand-mark svg { width: 22px; height: 22px; fill: currentColor; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-txt strong {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem; font-weight: 700;
}
.brand-txt small {
  font-size: .62rem; letter-spacing: .16em; font-weight: 800;
  color: var(--accent); text-transform: uppercase;
}
nav.main { display: flex; flex-wrap: nowrap; gap: .15rem 1.35rem; font-size: .95rem; }
nav.main a {
  color: var(--ink); text-decoration: none; font-weight: 700;
  padding: .2rem 0; position: relative;
}
nav.main a[aria-current="page"]::after,
nav.main a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
nav.main a:hover { text-decoration: none; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  background: var(--forest); color: #fff !important;
  text-decoration: none !important; padding: .72rem 1.25rem;
  border-radius: 999px; font-weight: 800; font-size: .92rem; border: 0; cursor: pointer;
}
.btn:hover { background: var(--forest-2); }
.btn.wa { background: #128C7E; }
.btn.wa:hover { background: #0e7a6e; }
.btn.ghost {
  background: transparent; color: var(--forest) !important;
  border: 1.5px solid var(--forest);
}
.btn.ghost:hover { background: var(--forest); color: #fff !important; }
.btn.light {
  background: #fff; color: var(--forest) !important;
}
.cta-row { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.callbar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: #fff; border-top: 1px solid var(--line);
  padding: .65rem .8rem; grid-template-columns: 1fr 1fr; gap: .5rem;
}
.callbar .btn { justify-content: center; width: 100%; }

/* —— hero —— */
.hero {
  position: relative;
  padding: 2.4rem 0 3.2rem;
  overflow: hidden;
  background: transparent;
  color: inherit;
}
.hero::before {
  content: "";
  position: absolute; inset: auto auto 8% -4%;
  width: 280px; height: 280px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path fill='%233d7a4a' fill-opacity='.08' d='M40 160c40-10 50-70 90-90 20-10 50-10 50 20-30 10-40 50-80 80-20 16-60 10-60-10z'/></svg>") no-repeat;
  background-size: contain;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 2rem;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.15rem, 4.6vw, 3.55rem);
  line-height: 1.18;
  max-width: 14ch;
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 700;
}
.hero h1 em {
  font-family: "Great Vibes", cursive;
  font-style: normal;
  color: var(--accent);
  font-size: 1.18em;
  font-weight: 400;
  display: inline-block;
  line-height: .9;
}
.hero p.lead {
  max-width: 44ch;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-visual {
  position: relative;
  min-height: 420px;
}
.hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 48% 32%;
  border-radius: 48% 40% 46% 42% / 40% 48% 42% 52%;
  box-shadow: 0 24px 50px rgba(31,61,45,.16);
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 8% auto auto -8%;
  width: 120px; height: 160px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 120'><path fill='none' stroke='%233d7a4a' stroke-width='1.4' d='M40 110 C20 80 60 70 30 40 C10 20 50 10 40 0'/><ellipse cx='28' cy='42' rx='14' ry='8' fill='%233d7a4a' fill-opacity='.25' transform='rotate(-30 28 42)'/></svg>") no-repeat;
  pointer-events: none;
}

/* —— 4-icon strip —— */
.strip {
  background: var(--forest);
  color: #e8f0e6;
  border-radius: 22px;
  padding: 1.35rem 1.2rem;
  margin: 0 auto 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.strip article {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .35rem .5rem;
}
.strip .ico {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: #2f6b45; color: #d7efc8;
  display: grid; place-items: center;
}
.strip .ico svg { width: 22px; height: 22px; fill: currentColor; }
.strip strong { display: block; font-size: .98rem; color: #fff; }
.strip span { font-size: .8rem; color: #c5d6c4; }

/* —— sections —— */
section { padding: 3.2rem 0; }
h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: .45rem;
  color: var(--ink);
}
.eyebrow {
  color: var(--accent);
  font-weight: 800;
  font-size: .82rem;
  display: flex; align-items: center; gap: .4rem;
  margin-bottom: .35rem;
}
.eyebrow svg { width: 16px; height: 16px; fill: currentColor; }
.sub { color: var(--muted); margin-bottom: 1.6rem; max-width: 60ch; }
.grid { display: grid; gap: 1rem; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.3rem;
}
.card h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.card p, .card li { color: var(--muted); font-size: .95rem; }
.card ul { padding-left: 1.1rem; margin-top: .5rem; }

/* grow together */
.together {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.4rem;
  align-items: center;
}
.feat-row {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-top: 1.2rem;
}
.feat-row .leaf {
  width: 42px; height: 42px; border-radius: 50%;
  background: #e8f2e2; color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}
.feat-row .leaf svg { width: 20px; height: 20px; fill: currentColor; }
.feat-row h3 { font-size: 1.02rem; margin-bottom: .15rem; }
.together-visual { position: relative; }
.together-visual img {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: 22px;
}
.float-card {
  position: absolute; left: 1.1rem; bottom: 1.1rem; right: 18%;
  background: #f3f7ee;
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 12px 30px rgba(28,51,38,.12);
}
.float-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.float-card p { font-size: .88rem; color: var(--muted); margin-bottom: .7rem; }
.float-card a { font-weight: 800; font-size: .9rem; color: var(--forest); }

/* service photo cards */
.svc-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(28,51,38,.08);
  text-decoration: none !important;
  color: inherit;
  display: flex; flex-direction: column;
}
.svc-card img { width: 100%; height: 168px; object-fit: cover; }
.svc-card div { padding: 1.05rem 1.1rem 1.2rem; }
.svc-card h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.svc-card p { color: var(--muted); font-size: .9rem; margin-bottom: .7rem; }
.svc-card span { font-weight: 800; font-size: .88rem; color: var(--forest); }
.center-head { text-align: center; }
.center-head .sub { margin-inline: auto; }

/* newsletter */
.news {
  background: var(--forest);
  color: #e8f0e6;
  border-radius: 22px;
  padding: 1.5rem 1.6rem;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 1.2rem;
  align-items: center;
}
.news h2 { color: #fff; font-size: 1.55rem; margin: 0; }
.news p { color: #c9d9c6; margin: .25rem 0 0; }
.news form {
  display: flex; gap: .5rem; background: #fff;
  border-radius: 999px; padding: .28rem;
}
.news input {
  flex: 1; border: 0; background: transparent; padding: .7rem 1rem; min-width: 0;
}
.news button { flex-shrink: 0; }

/* generic page */
.kicker {
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; font-weight: 800; color: var(--accent);
}
.steps { counter-reset: s; }
.steps article { position: relative; padding-left: 3rem; }
.steps article::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--forest); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: .9rem;
}
table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: 14px; overflow: hidden; }
th, td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line); font-size: .95rem; }
th { background: var(--forest); color: #fff; font-weight: 600; }
details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: .9rem 1rem; margin: .45rem 0;
}
details summary { cursor: pointer; font-weight: 700; }
details p { margin-top: .5rem; color: var(--muted); }
form.lead { display: grid; gap: .7rem; max-width: 520px; }
form.lead label { display: grid; gap: .35rem; font-size: .9rem; font-weight: 700; }
input, select, textarea {
  font: inherit; padding: .75rem .85rem;
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
}
textarea { min-height: 120px; }
button[type=submit] { border: 0; cursor: pointer; }

footer.site {
  background: var(--forest);
  color: #c5d4c8;
  padding: 2.8rem 0 1.5rem;
  margin-top: 2rem;
  font-size: .9rem;
}
footer.site a { color: #fff; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}
.foot-grid strong { color: #fff; display: block; margin-bottom: .55rem; }
.foot-grid a { display: block; margin: .28rem 0; color: #d7e4d6; text-decoration: none; }
.foot-grid a:hover { color: #fff; }
.crumbs { font-size: .85rem; color: var(--muted); margin: 1.2rem 0 1rem; }
.page-hero { padding: 2rem 0 .5rem; }
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: .3rem 0 .8rem;
}
article.prose p { margin-bottom: .9rem; color: #334155; }
article.prose h2 { margin: 1.6rem 0 .6rem; font-size: 1.35rem; }
article.prose ul { margin: 0 0 1rem 1.2rem; color: #334155; }
.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chips a {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .35rem .75rem; font-size: .85rem; color: var(--ink); text-decoration: none;
}
.mnav { display: none; position: relative; }
.mnav summary {
  list-style: none; cursor: pointer; font-weight: 700;
  padding: .4rem .7rem; border: 1px solid var(--line);
  border-radius: 999px; background: #fff;
}
.mnav summary::-webkit-details-marker { display: none; }
.mnav nav {
  position: absolute; right: 0; top: calc(100% + .4rem);
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: .6rem; display: grid; gap: .35rem; min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

@media (max-width: 960px) {
  .strip, .g3, .g4, .foot-grid, .g2, .together, .news, .hero-grid { grid-template-columns: 1fr 1fr; }
  nav.main { display: none; }
  .mnav { display: block; }
  .hero-visual img { height: 380px; }
}
@media (max-width: 720px) {
  .strip, .g3, .g4, .foot-grid, .g2, .together, .news, .hero-grid, .util-inner { grid-template-columns: 1fr; }
  .desk-cta { display: none; }
  .callbar { display: grid; }
  body { padding-bottom: 4.6rem; }
  .hero-visual img { height: 300px; border-radius: 36% 40% 38% 42% / 32% 40% 34% 44%; }
  .news form { flex-direction: column; border-radius: 16px; }
  .float-card { right: 1.1rem; }
  .util .hide-sm { display: none; }
}

