:root {
  --forest: #193d2d;
  --green: #2f6b4f;
  --green-2: #3f8063;
  --mint: #eaf2ec;
  --sand: #f6f1e8;
  --paper: #fffdf9;
  --ink: #23302a;
  --muted: #627069;
  --line: rgba(25, 61, 45, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(25, 61, 45, 0.13);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
}
.skip-link:focus { top: 1rem; }

.top-note {
  background: var(--forest);
  color: rgba(255,255,255,.88);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .88rem;
}
.top-note a { color: var(--white); font-weight: 750; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,253,249,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-shell {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: -.04em;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; }
.brand-copy span { margin-top: .3rem; color: var(--muted); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 1.35rem; }
.nav-links a { color: #39463f; font-size: .93rem; font-weight: 650; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--forest);
}
.menu-toggle svg { width: 22px; height: 22px; margin: auto; }

.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-soft { background: var(--sand); }
.section-green { background: var(--forest); color: var(--white); }
.section-tight { padding: 56px 0; }
.eyebrow {
  margin: 0 0 .9rem;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-green .eyebrow { color: #b9dbc8; }
h1, h2, h3 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-green h1, .section-green h2, .section-green h3 { color: var(--white); }
h1 { max-width: 900px; font-size: clamp(2.7rem, 6vw, 5.6rem); }
h2 { max-width: 800px; font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
.lead { max-width: 720px; margin: 1.4rem 0 0; color: #49574f; font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.section-green .lead { color: rgba(255,255,255,.77); }
.muted { color: var(--muted); }
.kicker { font-weight: 760; color: var(--green); }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.btn {
  min-height: 48px;
  padding: .82rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 780;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--forest); }
.btn-light { background: var(--white); color: var(--forest); }
.btn-outline { border-color: rgba(25,61,45,.25); background: transparent; color: var(--forest); }
.section-green .btn-outline { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn-sm { min-height: 42px; padding: .62rem 1rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 70px;
  background:
    radial-gradient(circle at 8% 15%, rgba(47,107,79,.12), transparent 30%),
    linear-gradient(120deg, var(--paper), var(--sand));
}
.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -22vw;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(47,107,79,.12);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.hero h1 { font-size: clamp(3.05rem, 6.2vw, 6rem); }
.hero-card { position: relative; }
.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(47,107,79,.28);
  border-radius: 42% 42% 18% 18%;
}
.hero-card img {
  position: relative;
  width: 100%;
  aspect-ratio: .86;
  object-fit: cover;
  object-position: 66% center;
  border-radius: 42% 42% 18% 18%;
  box-shadow: var(--shadow);
}
.hero-note {
  position: absolute;
  left: -34px;
  bottom: 36px;
  width: min(250px, 70%);
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 15px 35px rgba(25,61,45,.2);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.3;
}
.micro { margin-top: .85rem; color: var(--muted); font-size: .86rem; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.35rem 1rem; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem; }
.trust-item span { color: var(--muted); font-size: .82rem; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.feature-list { display: grid; gap: .8rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 28px 1fr; gap: .7rem; align-items: start; }
.feature-list li::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-top: .12rem;
  border-radius: 50%;
  background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f6b4f' stroke-width='2'%3E%3Cpath d='m7 12 3 3 7-7'/%3E%3C/svg%3E") center/15px no-repeat;
}
.quote-card { padding: clamp(1.6rem, 4vw, 3rem); border-radius: var(--radius); background: var(--forest); color: rgba(255,255,255,.8); }
.quote-card p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 3vw, 2.45rem); line-height: 1.2; color: var(--white); }
.quote-card small { display: block; margin-top: 1.3rem; color: #c9e0d2; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; }
.card { display: flex; flex-direction: column; padding: 1.55rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.card.featured { background: var(--forest); color: rgba(255,255,255,.78); transform: translateY(-10px); }
.card.featured h3 { color: var(--white); }
.card p { color: var(--muted); }
.card.featured p { color: rgba(255,255,255,.75); }
.card .btn { align-self: flex-start; margin-top: auto; }
.card-index { width: 38px; height: 38px; margin-bottom: 1.2rem; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green); font-weight: 800; }
.featured .card-index { background: rgba(255,255,255,.12); color: var(--white); }
.tag { display: inline-flex; align-self: flex-start; margin-bottom: 1rem; padding: .32rem .65rem; border-radius: 999px; background: var(--mint); color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.featured .tag { background: rgba(255,255,255,.12); color: #d4eadc; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 2.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.pillar { padding: 1.6rem; background: var(--paper); }
.pillar span { display: block; margin-bottom: .7rem; color: var(--green); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.pillar p { margin-bottom: 0; color: var(--muted); }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.article-art { min-height: 165px; display: grid; place-items: center; background: var(--mint); }
.article-art svg { width: 68px; height: 68px; stroke: var(--green); }
.article-body { padding: 1.4rem; }
.article-body small { color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.article-body h3 { margin-top: .55rem; }
.article-body p { color: var(--muted); }

.page-hero { padding: 76px 0 68px; background: var(--sand); }
.page-hero h1 { max-width: 920px; font-size: clamp(2.8rem, 5vw, 4.8rem); }
.prose { max-width: 780px; }
.prose h2 { margin-top: 3.2rem; font-size: clamp(1.7rem, 3.2vw, 2.7rem); }
.prose h3 { margin-top: 2.2rem; }
.prose p, .prose li { color: #46534c; }
.prose li + li { margin-top: .5rem; }
.numbered { counter-reset: item; display: grid; gap: 1rem; margin-top: 2.3rem; }
.numbered article { counter-increment: item; position: relative; padding: 1.5rem 1.5rem 1.5rem 4.8rem; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.numbered article::before { content: counter(item); position: absolute; left: 1.35rem; top: 1.35rem; width: 2.4rem; height: 2.4rem; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green); font-weight: 850; }
.numbered article p { margin-bottom: 0; color: var(--muted); }

.compare { width: 100%; margin-top: 2rem; border-collapse: collapse; overflow: hidden; border-radius: 18px; }
.compare th, .compare td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare th { background: var(--forest); color: var(--white); }
.compare tr:nth-child(even) td { background: var(--sand); }

.faq { display: grid; gap: .7rem; margin-top: 2rem; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.faq summary { cursor: pointer; padding: 1.15rem 3rem 1.15rem 1.2rem; color: var(--forest); font-weight: 780; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.2rem; top: .85rem; font-size: 1.5rem; color: var(--green); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0; padding: 0 1.2rem 1.2rem; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.contact-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-decoration: none; }
.contact-card small { display: block; color: var(--muted); }
.contact-card strong { display: block; margin-top: .35rem; color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.contact-card:hover { border-color: rgba(47,107,79,.45); box-shadow: 0 12px 30px rgba(25,61,45,.08); }

.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.cta-band p { color: rgba(255,255,255,.73); }

.site-footer { padding: 60px 0 24px; background: #10281d; color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 3rem; }
.site-footer .brand-copy strong { color: var(--white); }
.site-footer .brand-copy span { color: rgba(255,255,255,.58); }
.site-footer h3 { color: var(--white); font-family: inherit; font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.site-footer ul { padding: 0; list-style: none; }
.site-footer li + li { margin-top: .48rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 2rem; font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 22%;
    z-index: 50;
    padding: 6rem 1.5rem 2rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    background: var(--paper);
    box-shadow: -20px 0 60px rgba(25,61,45,.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .7rem 0; font-size: 1.05rem; }
  .nav-links .btn { margin-top: .8rem; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-card { width: min(650px, 90%); margin: 1rem auto 0; }
  .hero-card img { aspect-ratio: 1.15; object-position: 67% center; }
  .cards, .pillars, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .card.featured { transform: none; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .top-note { font-size: .78rem; }
  .nav-shell { min-height: 68px; }
  .brand-copy span { display: none; }
  .section { padding: 68px 0; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .hero-card { width: 100%; }
  .hero-note { left: 12px; bottom: 18px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards, .pillars, .article-grid, .contact-grid { grid-template-columns: 1fr; }
  .cta-band, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
