:root {
  --ink: #16372d;
  --ink-soft: #4a635a;
  --green: #2f6b50;
  --green-dark: #234b3a;
  --green-soft: #dfece4;
  --sage: #9eb9a6;
  --cream: #f7f3e8;
  --sand: #e7dcc4;
  --white: #ffffff;
  --line: rgba(35, 75, 58, .14);
  --shadow: 0 18px 50px rgba(20, 55, 45, .12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfaf6;
  line-height: 1.6;
  overflow-x: hidden;
}
button, a { font: inherit; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.page-shell { min-height: 100vh; }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 246, .9);
  border-bottom: 1px solid rgba(35, 75, 58, .08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  box-shadow: 0 10px 28px rgba(35, 75, 58, .2);
}
.brand-mark svg { width: 29px; height: 29px; fill: #f4eddc; }
.brand-mark .leaf-cut { fill: none; stroke: #9fc1a8; stroke-width: 3; stroke-linecap: round; }
.brand strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; letter-spacing: .02em; }
.brand small { display: block; color: var(--ink-soft); font-size: .77rem; margin-top: -2px; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 650;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 2px;
  background: var(--green);
  transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }
.menu-toggle { display: none; }

.hero {
  min-height: 730px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(158,185,166,.22), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(231,220,196,.6), transparent 30%),
    linear-gradient(145deg, #fbfaf6 0%, #f4f0e5 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.eyebrow.light { color: #dce8df; }
.hero h1, .section-heading h2, .natural-copy h2, .contact-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.03em;
  margin: 0;
}
.hero h1 { font-size: clamp(3rem, 6vw, 5.7rem); max-width: 850px; }
.hero h1 span { color: var(--green); font-style: italic; }
.hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  color: var(--ink-soft);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: .94rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-dark); color: var(--white); box-shadow: 0 14px 30px rgba(35, 75, 58, .2); }
.btn-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.56); }
.btn-light { background: var(--cream); color: var(--green-dark); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px; color: var(--ink-soft); font-size: .92rem; }
.hero-meta div { display: inline-flex; align-items: center; gap: 9px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(47,107,80,.08); }

.hero-visual { position: relative; min-height: 510px; display: grid; place-items: center; }
.visual-card {
  width: min(430px, 92%);
  aspect-ratio: .83;
  border-radius: 44% 44% 28% 28% / 33% 33% 20% 20%;
  background: linear-gradient(160deg, #305f49, #1f4737);
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(27, 67, 51, .24);
  border: 1px solid rgba(255,255,255,.16);
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(244,237,220,.22);
  border-radius: inherit;
}
.plant-ring { position: absolute; inset: 26px 28px 110px; display: grid; place-items: center; }
.plant-ring svg { width: 100%; height: 100%; }
.ring-line { fill: none; stroke: rgba(244,237,220,.3); stroke-width: 2; }
.stem { fill: none; stroke: #d9e7d8; stroke-width: 5; stroke-linecap: round; }
.leaf { fill: #b8cfae; }
.leaf.small { fill: #d5dfbf; }
.visual-copy { position: absolute; inset: auto 34px 34px; color: #f5eddb; text-align: center; }
.visual-copy span { display: block; text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; opacity: .72; }
.visual-copy strong { display: block; font-family: Georgia, serif; font-size: 2rem; margin-top: 8px; font-weight: 500; }
.floating-note {
  position: absolute;
  background: rgba(255,255,255,.92);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--green-dark);
  box-shadow: 0 12px 34px rgba(27,67,51,.12);
  border: 1px solid rgba(47,107,80,.1);
  animation: float 4s ease-in-out infinite;
}
.note-one { top: 80px; right: 2px; }
.note-two { bottom: 95px; left: -12px; animation-delay: -2s; }
@keyframes float { 50% { transform: translateY(-8px); } }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .7; }
.hero-orb-one { width: 300px; height: 300px; right: -130px; bottom: -80px; background: rgba(158,185,166,.2); }
.hero-orb-two { width: 200px; height: 200px; left: -90px; top: 140px; background: rgba(231,220,196,.45); }

.stats-strip { padding: 0 0 20px; margin-top: -40px; position: relative; z-index: 5; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(35,75,58,.08);
  overflow: hidden;
}
.stat-card { padding: 34px; min-height: 220px; }
.stat-card + .stat-card { border-left: 1px solid var(--line); }
.stat-number { color: var(--sage); font-weight: 900; letter-spacing: .16em; font-size: .76rem; }
.stat-card h2 { font-family: Georgia, serif; font-size: 1.45rem; font-weight: 500; margin: 30px 0 10px; }
.stat-card p { margin: 0; color: var(--ink-soft); }

.content-section { background: #fbfaf6; }
.split-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.section-heading h2, .natural-copy h2, .contact-copy h2 { font-size: clamp(2.4rem, 4.6vw, 4.5rem); }
.content-panel {
  background: var(--cream);
  padding: 46px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(35,75,58,.08);
}
.large-copy { font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.55rem); line-height: 1.25; margin: 0; }
.content-panel > p:last-child { color: var(--ink-soft); font-size: 1.03rem; margin-bottom: 0; }
.accent-line { width: 72px; height: 3px; background: var(--green); margin: 28px 0; border-radius: 99px; }

.natural-section { background: var(--green-dark); color: #f2eee3; overflow: hidden; }
.natural-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.natural-copy p { font-size: 1.18rem; color: #d9e5de; }
.leaf-scene {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}
.leaf-shape { position: absolute; display: block; width: 180px; height: 92px; background: #8dad90; border-radius: 100% 0 100% 0; opacity: .85; }
.leaf-a { left: 52px; top: 74px; transform: rotate(22deg); }
.leaf-b { right: 44px; top: 130px; transform: rotate(112deg) scale(.88); background: #c1cda2; }
.leaf-c { left: 88px; bottom: 66px; transform: rotate(-24deg) scale(.74); background: #d8d6a7; }
.leaf-d { right: 62px; bottom: 54px; transform: rotate(154deg) scale(.62); background: #6f9a7b; }
.drop-mark { position: absolute; inset: 0; display: grid; place-items: center; }
.drop-mark svg { width: 110px; fill: none; stroke: #f5eddc; stroke-width: 2; opacity: .88; }
.quote-card { margin-top: 32px; padding: 30px; border-left: 3px solid #b9cfae; background: rgba(255,255,255,.06); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.quote-card p { margin: 4px 0 0; color: #fff; font-family: Georgia, serif; font-size: 1.7rem; line-height: 1.28; }
.quote-mark { font-family: Georgia, serif; font-size: 3rem; color: #c9d9bd; line-height: .7; }

.service-section { background: linear-gradient(180deg, #fbfaf6, #f2eee3); }
.centered { text-align: center; max-width: 760px; margin-inline: auto; }
.centered .eyebrow { justify-content: center; }
.centered p { color: var(--ink-soft); font-size: 1.07rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.service-card { background: rgba(255,255,255,.82); padding: 34px; border-radius: var(--radius-lg); border: 1px solid rgba(35,75,58,.08); box-shadow: 0 14px 40px rgba(20,55,45,.06); }
.service-icon { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: var(--green-soft); margin-bottom: 28px; }
.service-icon svg { width: 29px; height: 29px; fill: none; stroke: var(--green-dark); stroke-width: 2.6; stroke-linejoin: round; stroke-linecap: round; }
.service-card h3 { font-family: Georgia, serif; font-size: 1.45rem; font-weight: 500; margin: 0 0 10px; }
.service-card p { color: var(--ink-soft); margin: 0; }

.contact-section { padding-top: 60px; padding-bottom: 60px; background: #f2eee3; }
.contact-card {
  background: linear-gradient(135deg, #2f6049, #1f4737);
  color: white;
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(26, 63, 49, .2);
  position: relative;
  overflow: hidden;
}
.contact-card::after { content: ""; position: absolute; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; right: -110px; top: -160px; }
.contact-copy h2 { max-width: 780px; }
.contact-copy > p { color: #dce8df; margin-top: 20px; }
.phone-link { display: inline-block; font-size: clamp(1.6rem, 4vw, 3rem); font-weight: 900; text-decoration: none; margin-top: 10px; letter-spacing: .02em; }
.contact-actions { display: grid; gap: 18px; position: relative; z-index: 2; }
.social-card { padding: 20px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.07); }
.social-card span { display: block; text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; opacity: .72; }
.social-card strong { display: block; margin-top: 5px; line-height: 1.35; }

.site-footer { background: #183a2d; color: #dce8df; padding: 28px 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-grid strong, .footer-grid span { display: block; }
.footer-grid strong { color: white; }
.footer-grid span { font-size: .88rem; opacity: .8; margin-top: 2px; }
.footer-grid a { color: white; font-weight: 800; text-decoration: none; }

.floating-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  box-shadow: 0 16px 34px rgba(21,64,47,.26);
  z-index: 900;
  transition: transform .2s ease;
}
.floating-call:hover { transform: translateY(-3px) scale(1.02); }
.floating-call svg { width: 27px; fill: currentColor; }

.reveal { opacity: 1; transform: none; transition: transform .35s ease, box-shadow .35s ease; }
.stat-card.reveal:hover, .service-card.reveal:hover, .content-panel.reveal:hover { transform: translateY(-4px); }

@media (max-width: 980px) {
  .main-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 10px); display: grid; gap: 0; background: #fff; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid var(--line); padding: 10px; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: .22s ease; }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 12px 14px; }
  .main-nav a::after { display: none; }
  .menu-toggle { width: 46px; height: 46px; border: 0; background: var(--green-soft); border-radius: 14px; display: grid; place-content: center; gap: 5px; cursor: pointer; }
  .menu-toggle span { width: 21px; height: 2px; background: var(--green-dark); border-radius: 2px; }
  .hero-grid, .natural-grid, .contact-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 90px; }
  .hero-visual { min-height: 440px; }
  .hero-grid { gap: 30px; }
  .visual-card { width: min(390px, 80%); }
  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-grid, .stats-grid { grid-template-columns: 1fr; }
  .stat-card + .stat-card { border-left: 0; border-top: 1px solid var(--line); }
  .stats-strip { margin-top: 0; padding-top: 34px; }
  .natural-grid { gap: 42px; }
  .contact-card { gap: 36px; }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 28px, 1160px); }
  .section { padding: 78px 0; }
  .nav-wrap { min-height: 70px; }
  .brand small { display: none; }
  .hero { padding-top: 70px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.6rem); }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-meta { display: grid; gap: 12px; }
  .hero-visual { min-height: 390px; }
  .visual-card { width: 86%; }
  .note-one { top: 55px; right: 0; }
  .note-two { bottom: 60px; left: 0; }
  .content-panel { padding: 30px 24px; }
  .leaf-scene { min-height: 360px; }
  .service-grid { margin-top: 38px; }
  .service-card { padding: 28px; }
  .contact-card { padding: 34px 24px; border-radius: 26px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .floating-call { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

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

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(20, 55, 45, .08);
}
