:root {
  --green-950: #06241c;
  --green-900: #0b3b2e;
  --green-800: #0f4d3c;
  --green-700: #146b52;
  --green-600: #1a8a68;
  --green-500: #22a57c;
  --green-400: #4ec49a;
  --green-100: #e6f6f0;
  --green-50: #f3faf7;
  --cream: #f7f4ee;
  --ivory: #fbfaf7;
  --gold: #c4a574;
  --gold-soft: #e8d7b8;
  --ink: #14201c;
  --muted: #5b6b65;
  --line: rgba(15, 77, 60, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(6, 36, 28, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -0.03em; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(145deg, var(--green-500), var(--green-900));
  display: grid; place-items: center; color: white; font-size: 13px;
  box-shadow: 0 8px 20px rgba(20, 107, 82, 0.28);
}
.brand span b { color: var(--green-700); font-weight: 800; }
.nav-links { display: flex; gap: 26px; font-size: 14px; color: var(--muted); font-weight: 600; }
.nav-links a:hover { color: var(--green-800); }
.nav-cta {
  background: var(--green-800); color: white; padding: 10px 18px;
  border-radius: 999px; font-size: 14px; font-weight: 700;
}
.menu-btn {
  display: none; border: 1px solid var(--line); background: white;
  width: 42px; height: 42px; border-radius: 12px;
}

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(196,165,116,.22), transparent 50%),
    linear-gradient(160deg, #0c3d30 0%, #146b52 48%, #1f8f70 100%);
  color: white; padding: 88px 0 72px;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--ivory));
}
.kicker {
  letter-spacing: .22em; text-transform: uppercase; font-size: 12px;
  color: var(--gold-soft); margin-bottom: 18px;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 7vw, 84px); line-height: .95; font-weight: 600;
  max-width: 14ch; margin-bottom: 22px;
}
.hero p { max-width: 52ch; color: rgba(255,255,255,.86); font-size: 18px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; padding: 14px 22px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent;
}
.btn-light { background: white; color: var(--green-900); }
.btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,.35); }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: -28px; position: relative; z-index: 2;
}
.stat {
  background: white; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; box-shadow: var(--shadow);
}
.stat strong {
  display: block; font-family: "Cormorant Garamond", serif;
  font-size: 34px; color: var(--green-800); line-height: 1;
}
.stat span { color: var(--muted); font-size: 13px; }

.section { padding: 88px 0; }
.section.alt { background: var(--cream); }
.section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 52px); line-height: 1.05; margin-bottom: 14px;
}
.lead { color: var(--muted); max-width: 62ch; margin-bottom: 36px; }

.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.pills { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pill {
  background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px;
}
.pill h3 { font-size: 16px; margin-bottom: 6px; }
.pill p { font-size: 14px; color: var(--muted); }

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: white; border: 1px solid var(--line); border-radius: 24px; padding: 26px;
  min-height: 220px;
}
.icon {
  width: 46px; height: 46px; border-radius: 14px; margin-bottom: 18px;
  display: grid; place-items: center; background: var(--green-100); color: var(--green-800);
  font-size: 20px;
}
.card h3 { margin-bottom: 8px; font-size: 20px; }
.card p { color: var(--muted); font-size: 15px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { padding: 28px; border-radius: 24px; background: var(--green-900); color: white; }
.step em { color: var(--gold); font-style: normal; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; }
.step h3 { font-family: "Cormorant Garamond", serif; font-size: 30px; margin: 10px 0; }

.hours-box, .map-box {
  background: white; border: 1px solid var(--line); border-radius: 24px; padding: 28px;
}
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: 0; }

footer {
  background: var(--green-950); color: rgba(255,255,255,.82); padding: 56px 0 28px;
}
footer h3 { color: white; margin-bottom: 10px; }
.legal { font-size: 13px; color: rgba(255,255,255,.62); margin-top: 22px; max-width: 80ch; }
.copy { margin-top: 28px; font-size: 12px; color: rgba(255,255,255,.45); }

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  background: #25D366; color: white; border-radius: 999px;
  padding: 14px 18px; font-weight: 700; box-shadow: 0 14px 30px rgba(37,211,102,.35);
}

@media (max-width: 860px) {
  .nav-cta { display: none; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; left: 20px; right: 20px; top: 76px;
    background: white; padding: 16px; border-radius: 16px; border: 1px solid var(--line);
  }
  .menu-btn { display: grid; place-items: center; }
  .stats, .services, .steps, .pills, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
}

.video-frame {
  background: #06241c;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
