:root {
  --green: #2f7a4d;
  --green-2: #3aa66b;
  --cream: #f7f3e7;
  --ink: #1b2a22;
  --ink-2: #3b4a40;
  --muted: #6b7a70;
  --accent: #e7a73b;
  --border: #e2dccb;
  --shadow: 0 6px 24px rgba(27, 42, 34, 0.08);
  --radius: 14px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--green);
  text-decoration: none;
}
a:hover {
  color: var(--green-2);
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 600;
}
h1 {
  font-size: 2.1rem;
}
h2 {
  font-size: 1.55rem;
}
h3 {
  font-size: 1.15rem;
}
p {
  color: var(--ink-2);
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--ink);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-ghost:hover {
  background: var(--green);
  color: #fff;
}

.site-header {
  position: relative;
  z-index: 50;
  background: transparent;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink);
}
.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--green-2), var(--green));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.brand .mark i {
  font-size: 18px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-toggle i {
  font-size: 22px;
  transition: transform 0.25s;
}
.nav-toggle[aria-expanded="true"] .ph-list {
  display: none;
}
.nav-toggle .ph-x {
  display: none;
}
.nav-toggle[aria-expanded="true"] .ph-x {
  display: inline-block;
}
.primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.primary-nav a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
}
.primary-nav a:hover,
.primary-nav a.active {
  background: #ffffff;
  color: var(--green);
  box-shadow: var(--shadow);
}
.header-cta {
  display: inline-flex;
  gap: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 8px auto 36px;
  background: linear-gradient(135deg, #eaf4ec 0%, #f7f3e7 60%);
  padding: 46px 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.hero h1 {
  margin-bottom: 14px;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}
.hero p.lead {
  font-size: 1.02rem;
  color: var(--ink-2);
  max-width: 46ch;
  margin-bottom: 20px;
}
.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-art {
  position: relative;
}
.hero-art img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -14px;
  left: -14px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge i {
  color: var(--accent);
}

section {
  padding: 36px 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 26px;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-head h2 {
  margin-bottom: 8px;
}
.section-head p {
  color: var(--muted);
  font-size: 0.95rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: 0.25s;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pillar i {
  font-size: 26px;
  color: var(--green);
  background: #eaf4ec;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pillar h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.pillar p {
  font-size: 0.88rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}
.step {
  background: var(--cream);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -12px;
  left: 14px;
  background: var(--green);
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
}
.step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.step p {
  font-size: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
  object-fit: cover;
}
.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.checklist i {
  color: var(--green-2);
  font-size: 18px;
  margin-top: 2px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.quote p {
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 12px;
}
.quote footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 700;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-2), var(--accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Fraunces", serif;
}

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after {
  content: "\002B";
  color: var(--green);
  font-size: 1.2rem;
}
.faq details[open] summary::after {
  content: "\2212";
}
.faq p {
  margin-top: 8px;
  font-size: 0.9rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--ink) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 8px;
}
.cta-band p {
  color: #dfeae3;
  margin-bottom: 16px;
}
.cta-band .btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.cta-band .btn-primary:hover {
  background: #fff;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf4ec, #fff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 26px;
  border: 1px solid var(--border);
}
.product h3 {
  font-size: 1.1rem;
}
.product .price {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  color: var(--green);
  font-weight: 700;
}
.product ul {
  list-style: none;
  display: grid;
  gap: 6px;
  margin: 6px 0 12px;
}
.product ul li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--ink-2);
}
.product ul li i {
  color: var(--green-2);
  margin-top: 2px;
}
.product .btn {
  margin-top: auto;
  align-self: flex-start;
}

.page-hero {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 24px;
  margin: 8px auto 28px;
  text-align: center;
}
.page-hero .crumbs {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.page-hero h1 {
  margin-bottom: 8px;
}
.page-hero p {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.about-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--green);
}
.stat span {
  font-size: 0.78rem;
  color: var(--muted);
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.value {
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}
.value i {
  color: var(--green);
  font-size: 24px;
  margin-bottom: 8px;
  display: inline-block;
}
.value h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.value p {
  font-size: 0.85rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-card h2 {
  margin-bottom: 6px;
}
.contact-card .lead {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.contact-info {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-2);
  list-style: none;
}
.contact-info i {
  color: var(--green);
  font-size: 20px;
  background: #eaf4ec;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info b {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 240px;
  margin-top: 8px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

form.contact-form {
  background: linear-gradient(160deg, #fff 0%, #eaf4ec 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
form.contact-form h2 {
  margin-bottom: 4px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-row input,
.form-row textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: 0.2s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58, 166, 107, 0.18);
}
.form-row textarea {
  min-height: 120px;
  resize: vertical;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-2);
}
.consent input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
}

.policy article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.policy h2 {
  margin: 22px 0 8px;
  font-size: 1.25rem;
}
.policy h3 {
  margin: 14px 0 6px;
  font-size: 1.02rem;
}
.policy p,
.policy li {
  font-size: 0.92rem;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.policy ul,
.policy ol {
  padding-left: 22px;
}
.policy .updated {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--muted);
  background: #eaf4ec;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.center-screen {
  min-height: calc(100vh - var(--hf, 220px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
.center-card {
  text-align: center;
  max-width: 560px;
  padding: 38px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.center-card .big-i {
  font-size: 54px;
  color: var(--green);
  margin-bottom: 8px;
}
.center-card h1 {
  margin-bottom: 10px;
}
.center-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.site-footer {
  background: var(--ink);
  color: #cfd8d2;
  padding: 22px 0;
  margin-top: 40px;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.site-footer .brand {
  color: #fff;
}
.site-footer .brand .mark {
  box-shadow: none;
}
.site-footer nav a {
  color: #cfd8d2;
  font-size: 0.85rem;
  margin: 0 8px;
}
.site-footer nav a:hover {
  color: #fff;
}
.copy {
  font-size: 0.8rem;
  color: #9aa9a1;
  width: 100%;
  text-align: center;
  border-top: 1px solid #2c3d33;
  padding-top: 12px;
  margin-top: 8px;
}

.cookie-popup {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 200;
  font-size: 0.86rem;
}
.cookie-popup.show {
  display: block;
  animation: slideUp 0.35s ease;
}
.cookie-popup h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.cookie-popup p {
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.cookie-popup .actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .pillars,
  .testimonials,
  .products {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .values {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding: 32px 22px;
  }
  h1 {
    font-size: 1.75rem;
  }
}
@media (max-width: 936px) {
  .nav-toggle {
    display: inline-flex;
  }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 10px 18px;
    display: none;
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .primary-nav.open {
    display: block;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .primary-nav a {
    display: block;
    padding: 10px 12px;
  }
  .header-cta {
    display: none;
  }
}
@media (max-width: 560px) {
  .pillars,
  .testimonials,
  .products,
  .steps,
  .values {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .hero {
    padding: 26px 18px;
  }
  .page-hero {
    padding: 26px 18px;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 360px) {
  body {
    font-size: 14px;
  }
  .container {
    padding: 0 12px;
  }
  .btn {
    padding: 9px 14px;
    font-size: 0.85rem;
  }
}
