:root {
  --green-deep:   #1e5c3a;
  --green-mid:    #2e8b57;
  --green-light:  #5dbf85;
  --green-pale:   #a8d8bc;
  --cream:        #f5f0e8;
  --cream-dark:   #ede6d6;
  --ink:          #0f1a14;
  --ink-soft:     #2a3d30;
  --gold:         #c8a96e;
  --gold-light:   #e8d4a8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5vw;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46, 139, 87, 0.15);
  transition: all 0.3s ease;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-mid); }
.nav-cta {
  background: var(--green-deep);
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-mid) !important; color: white !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5vw; padding-top: 80px;
  position: relative; overflow: hidden; gap: 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 75% 50%, rgba(46,139,87,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 10% 80%, rgba(168,216,188,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute; right: 0; top: 10%;
  width: 55%; height: 85%;
  border: 1px solid rgba(46,139,87,0.1);
  border-radius: 200px 0 0 200px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; animation: fadeUp 1s ease both; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 1.8rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--green-mid);
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 1.8rem;
}
h1 em { font-style: italic; color: var(--green-deep); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  color: var(--ink-soft); max-width: 460px; margin-bottom: 2.8rem;
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--green-deep); color: var(--cream);
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--green-deep);
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--green-deep); border-radius: 2px;
  transition: all 0.25s;
}
.btn-secondary:hover { background: var(--green-deep); color: var(--cream); transform: translateY(-2px); }

.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-card-stack { position: relative; width: 100%; max-width: 460px; }
.hero-card {
  background: white;
  border: 1px solid rgba(46,139,87,0.15);
  border-radius: 8px; padding: 1.8rem 2rem;
  box-shadow: 0 4px 40px rgba(30,92,58,0.08);
}
.hero-card + .hero-card {
  position: absolute; top: -18px; right: -18px; z-index: -1;
  background: var(--cream-dark); border-color: rgba(46,139,87,0.1);
}
.card-label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 0.8rem; font-weight: 500;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-bottom: 1.2rem;
}
.card-stat-row {
  display: flex; gap: 1.5rem;
  margin-top: 1.4rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.stat { flex: 1; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; color: var(--green-deep); line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--ink-soft); margin-top: 0.25rem; opacity: 0.7; }
.mini-bar-group { display: flex; flex-direction: column; gap: 0.7rem; }
.mini-bar { display: flex; align-items: center; gap: 0.8rem; font-size: 0.8rem; color: var(--ink-soft); }
.bar-track { flex: 1; height: 4px; background: var(--cream-dark); border-radius: 2px; overflow: hidden; }
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  border-radius: 2px;
  animation: barGrow 1.5s 0.8s ease both;
  transform-origin: left;
}
@keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* MARQUEE */
.marquee-wrap {
  border-top: 1px solid rgba(46,139,87,0.15);
  border-bottom: 1px solid rgba(46,139,87,0.15);
  padding: 1.1rem 0; background: var(--green-deep); overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 0 2.5rem; font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green-pale); font-weight: 400; white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; background: var(--green-light); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
section { padding: 7rem 5vw; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 1.2rem;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--green-mid); }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 1.2rem;
}
h2 em { font-style: italic; color: var(--green-deep); }
.section-lead {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: var(--ink-soft); max-width: 560px; margin-bottom: 3.5rem;
}

/* SERVICES */
#services { background: var(--ink); }
#services .section-eyebrow { color: var(--green-light); }
#services .section-eyebrow::before { background: var(--green-light); }
#services h2 { color: var(--cream); }
#services h2 em { color: var(--green-light); }
#services .section-lead { color: rgba(245,240,232,0.65); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden;
}
.service-card {
  background: var(--ink); padding: 2.8rem 2.5rem;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(46,139,87,0.07); }
.service-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300;
  color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.service-icon { width: 48px; height: 48px; margin-bottom: 1.4rem; color: var(--green-light); }
.service-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600;
  color: var(--cream); margin-bottom: 0.9rem; line-height: 1.2;
}
.service-desc { font-size: 0.88rem; font-weight: 300; line-height: 1.8; color: rgba(245,240,232,0.55); }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.6rem; }
.tag {
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-pale); border: 1px solid rgba(93,191,133,0.25);
  padding: 0.25rem 0.7rem; border-radius: 20px;
}

/* PROCESS */
#process { background: var(--cream); }
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 1.5rem; padding: 2rem 0;
  border-bottom: 1px solid rgba(30,92,58,0.1); cursor: pointer; transition: all 0.3s;
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300;
  color: var(--green-pale); line-height: 1; min-width: 50px; transition: color 0.3s;
}
.step:hover .step-num { color: var(--green-mid); }
.step-body h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.5rem;
}
.step-body p { font-size: 0.88rem; font-weight: 300; line-height: 1.75; color: var(--ink-soft); opacity: 0.75; }
.process-right { position: sticky; top: 120px; }
.process-visual {
  background: var(--ink); border-radius: 10px; padding: 3rem;
  position: relative; overflow: hidden;
}
.process-visual::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,87,0.2) 0%, transparent 70%);
}
.process-visual-label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 1.5rem;
}
.flow-node {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; margin-bottom: 0.6rem; transition: all 0.3s;
}
.flow-node:hover { background: rgba(46,139,87,0.12); border-color: rgba(46,139,87,0.3); }
.node-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-light); flex-shrink: 0;
  box-shadow: 0 0 8px var(--green-light);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.node-label { font-size: 0.82rem; color: rgba(245,240,232,0.7); }
.flow-arrow { text-align: center; color: rgba(93,191,133,0.4); font-size: 1.2rem; margin: 0.2rem 0; }

/* WHY */
#why { background: var(--cream-dark); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: rgba(30,92,58,0.1);
  border-radius: 6px; overflow: hidden; margin-top: 1rem;
}
.why-card { background: var(--cream-dark); padding: 2.5rem 2rem; transition: background 0.3s; }
.why-card:hover { background: var(--cream); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.85rem; font-weight: 300; line-height: 1.75; color: var(--ink-soft); opacity: 0.75; }

/* CONTACT */
#contact {
  background: var(--green-deep); text-align: center;
  padding: 8rem 5vw; position: relative; overflow: hidden;
}
#contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(93,191,133,0.12) 0%, transparent 70%);
  pointer-events: none;
}
#contact .section-eyebrow { color: var(--green-pale); justify-content: center; }
#contact .section-eyebrow::before { background: var(--green-pale); }
#contact h2 { color: var(--cream); max-width: 700px; margin: 0 auto 1.2rem; }
#contact h2 em { color: var(--green-pale); }
#contact .section-lead { color: rgba(245,240,232,0.65); max-width: 480px; margin: 0 auto 3rem; }
.contact-form { display: flex; gap: 0.8rem; max-width: 480px; margin: 0 auto; }
.contact-input {
  flex: 1; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 2px;
  padding: 1rem 1.4rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--cream); outline: none; transition: border-color 0.2s;
}
.contact-input::placeholder { color: rgba(245,240,232,0.4); }
.contact-input:focus { border-color: var(--green-light); }
.btn-light {
  background: var(--cream); color: var(--green-deep);
  padding: 1rem 1.8rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; border: none; border-radius: 2px;
  cursor: pointer; white-space: nowrap; transition: all 0.25s;
}
.btn-light:hover { background: var(--gold-light); transform: translateY(-2px); }

/* FOOTER */
footer {
  background: var(--ink); padding: 3rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo img { height: 30px; opacity: 0.7; }
footer p { font-size: 0.8rem; color: rgba(245,240,232,0.35); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.8rem; color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-light); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; gap: 3rem; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-layout { grid-template-columns: 1fr; }
  .process-right { position: static; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .contact-form { flex-direction: column; }
}
