/* ===== Nurturite — global styles ===== */
:root {
  --green: #00854f;
  --green-bright: #009b5c;
  --green-dark: #045c38;
  --green-deep: #0d2b1d;
  --green-pale: #e8f5ee;
  --green-mist: #f4faf6;
  --gold: #b98c1e;
  --ink: #1d2721;
  --ink-soft: #46554c;
  --line: #d9e6de;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 43, 29, .12);
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background: #fff;
  font-size: 16.5px;
}
img { max-width: 100%; display: block; }
a { color: var(--green-dark); }

.wrap { width: min(1140px, 92%); margin: 0 auto; }

/* ===== Header ===== */
.topbar {
  background: var(--green-deep);
  color: #cfe6d8;
  font-size: .82rem;
  padding: .4rem 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: .55rem 0; }
.brand img { height: 62px; width: auto; }
nav.main ul { display: flex; gap: .25rem; list-style: none; align-items: center; }
nav.main a {
  text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: .93rem;
  padding: .55rem .85rem; border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
nav.main a:hover { background: var(--green-pale); color: var(--green-dark); }
nav.main a.active { background: var(--green); color: #fff; }
nav.main a.cta { background: var(--gold); color: #fff; margin-left: .35rem; }
nav.main a.cta:hover { background: #a37a15; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  font-size: 1.7rem; color: var(--green-dark); line-height: 1; padding: .25rem .5rem;
}

/* ===== Hero ===== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--green-deep);
}
.hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.62);
}
.hero .inner {
  position: relative; z-index: 1;
  padding: clamp(4.5rem, 11vw, 9rem) 0;
  max-width: 720px;
}
.hero.small .inner { padding: clamp(2.8rem, 6vw, 4.5rem) 0; }
.hero .kicker {
  text-transform: uppercase; letter-spacing: .22em; font-size: .8rem;
  font-weight: 700; color: #9fdcbd; margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600; line-height: 1.12; margin-bottom: 1.1rem;
}
.hero p.lead { font-size: clamp(1.02rem, 2vw, 1.2rem); color: #e8f3ec; max-width: 56ch; }
.hero .actions { margin-top: 2rem; display: flex; gap: .8rem; flex-wrap: wrap; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: .8rem 1.6rem; border-radius: 999px; font-size: .95rem;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn.primary { background: var(--green); color: #fff; }
.btn.primary:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.ghost { border: 2px solid rgba(255,255,255,.75); color: #fff; }
.btn.ghost:hover { background: rgba(255,255,255,.14); }
.btn.dark { background: var(--green-deep); color: #fff; }
.btn.dark:hover { background: var(--green-dark); }

/* ===== Sections ===== */
section.block { padding: clamp(3rem, 7vw, 5.5rem) 0; }
section.tint { background: var(--green-mist); }
section.deep { background: var(--green-deep); color: #e8f3ec; }
.eyebrow {
  color: var(--green); font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; font-size: .8rem; margin-bottom: .6rem;
}
section.deep .eyebrow { color: #9fdcbd; }
h2.title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 600; line-height: 1.15; margin-bottom: 1rem; color: var(--green-deep);
}
section.deep h2.title { color: #fff; }
.sub { color: var(--ink-soft); max-width: 68ch; }
section.deep .sub { color: #cfe6d8; }

/* Cards */
.grid { display: grid; gap: 1.6rem; margin-top: 2.4rem; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .thumb { height: 220px; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 1.22rem; margin-bottom: .5rem; color: var(--green-deep); }
.card p { font-size: .95rem; color: var(--ink-soft); flex: 1; }
.card .link {
  margin-top: 1rem; font-weight: 700; text-decoration: none;
  color: var(--green); font-size: .93rem;
}
.card .link:hover { text-decoration: underline; }

/* Product detail rows */
.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center; padding: clamp(2.2rem, 5vw, 3.5rem) 0;
}
.product + .product { border-top: 1px solid var(--line); }
.product .photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; max-height: 430px; object-fit: cover; }
.product.flip .photo { order: 2; }
.product h3 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--green-deep); font-weight: 600; margin-bottom: .3rem;
}
.product .tag {
  display: inline-block; background: var(--green-pale); color: var(--green-dark);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; padding: .28rem .9rem; margin-bottom: .9rem;
}
.product ul.benefits { list-style: none; margin-top: 1.1rem; }
.product ul.benefits li {
  padding-left: 1.7rem; position: relative; margin-bottom: .55rem;
  color: var(--ink-soft); font-size: .97rem;
}
.product ul.benefits li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 800;
}

/* Comparison */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 2.2rem; }
.compare figure {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.compare img { width: 100%; height: 320px; object-fit: cover; }
.compare figcaption { padding: 1rem 1.2rem; font-weight: 700; text-align: center; }
.compare .good figcaption { color: var(--green-dark); }
.compare .bad figcaption { color: #9c3d1e; }

/* Feature list band */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 2.4rem; }
.feature { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 1.6rem; }
section:not(.deep) .feature { background: #fff; border-color: var(--line); }
.feature .num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green);
  color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.05rem;
}
.feature h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.feature p { font-size: .92rem; color: var(--ink-soft); }
section.deep .feature h3 { color: #fff; }
section.deep .feature p { color: #cfe6d8; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 1.6rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); margin-top: 2.4rem; align-items: start; }
form.contact {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
}
form.contact label { font-weight: 600; font-size: .9rem; display: block; margin: 1rem 0 .35rem; }
form.contact input, form.contact textarea, form.contact select {
  width: 100%; border: 1px solid #c3d5ca; border-radius: 8px;
  padding: .7rem .9rem; font: inherit; background: var(--green-mist);
}
form.contact input:focus, form.contact textarea:focus, form.contact select:focus {
  outline: 2px solid var(--green); border-color: var(--green); background: #fff;
}
form.contact button {
  margin-top: 1.5rem; width: 100%; border: 0; cursor: pointer;
  background: var(--green); color: #fff; font: inherit; font-weight: 700;
  padding: .9rem; border-radius: 999px; font-size: 1rem;
}
form.contact button:hover { background: var(--green-bright); }
.info-card { background: var(--green-deep); color: #e8f3ec; border-radius: var(--radius); padding: 2rem; }
.info-card h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 1rem; }
.info-card p { margin-bottom: 1rem; font-size: .97rem; }
.info-card a { color: #9fdcbd; font-weight: 600; text-decoration: none; }
.info-card a:hover { text-decoration: underline; }
.info-card .row { display: flex; gap: .8rem; margin-bottom: 1.1rem; align-items: baseline; }
.info-card .row .ico { font-size: 1.1rem; }

/* Footer */
footer.site { background: var(--green-deep); color: #b9d6c5; padding: 3.5rem 0 2rem; }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; align-items: start; }
footer.site img.flogo { height: 58px; margin-bottom: 1rem; }
footer.site h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: .5rem; }
footer.site a { color: #b9d6c5; text-decoration: none; font-size: .93rem; }
footer.site a:hover { color: #fff; }
footer.site .legal {
  border-top: 1px solid rgba(255,255,255,.14); margin-top: 2.5rem; padding-top: 1.4rem;
  font-size: .82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}

/* Page hero titles reuse .hero */
.breadcrumb { font-size: .85rem; color: #9fdcbd; margin-bottom: .8rem; }
.breadcrumb a { color: #9fdcbd; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2.4rem; text-align: center; }
.stat .big {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700; color: var(--green); line-height: 1;
}
section.deep .stat .big { color: #9fdcbd; }
.stat .cap { font-size: .9rem; color: var(--ink-soft); margin-top: .5rem; }
section.deep .stat .cap { color: #cfe6d8; }

/* Notice */
.note {
  background: var(--green-pale); border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0; padding: 1.1rem 1.4rem; margin-top: 2rem;
  font-size: .95rem; color: var(--ink-soft);
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .grid.cols-3, .features, .stats { grid-template-columns: 1fr 1fr; }
  .product, .contact-grid, .grid.cols-2 { grid-template-columns: 1fr; }
  .product.flip .photo { order: 0; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  nav.main {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    display: none; box-shadow: var(--shadow);
  }
  nav.main.open { display: block; }
  nav.main ul { flex-direction: column; align-items: stretch; padding: .8rem; }
  nav.main a { display: block; }
  .grid.cols-3, .features, .compare, .stats { grid-template-columns: 1fr; }
  footer.site .cols { grid-template-columns: 1fr; }
  .brand img { height: 50px; }
  .card .thumb { height: 190px; }
}
