:root {
  --green-900: #223f1b;
  --green-700: #365b2c;
  --green-500: #5f8c4a;
  --sand-100: #f2ece3;
  --sand-200: #e6d8c5;
  --soil-700: #6b4e33;
  --white: #ffffff;
  --text: #1f2c1b;
  --radius: 16px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #edf5e8, #f8f4ee 45%, #ffffff);
}
img { max-width: 100%; display: block; border-radius: 14px; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.section { padding: 4rem 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid #e3e3e3;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 0; }
.logo { font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 700; }
.logo span { color: var(--green-700); }
.nav-toggle { display: none; }
.main-nav { display: flex; gap: 1rem; font-weight: 500; }
.main-nav a:hover { color: var(--green-700); }
.nav-cta { display: flex; gap: 0.6rem; }

.hero { padding: 4rem 0 2rem; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 2rem; }
.hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 3vw, 3.2rem); margin: 0.2rem 0 0.8rem; }
.eyebrow { color: var(--green-700); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.78rem; }
.hero-image img { min-height: 320px; object-fit: cover; }
.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1rem; }

.btn { display: inline-block; padding: 0.75rem 1rem; border-radius: 999px; font-weight: 700; border: 1px solid transparent; }
.btn-primary { background: linear-gradient(120deg, var(--green-700), var(--green-500)); color: var(--white); }
.btn-soft { background: var(--sand-100); color: var(--soil-700); border-color: var(--sand-200); }
.btn-ghost { border-color: #b8c5b2; color: var(--green-900); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card, .product-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 12px 32px rgba(53, 77, 39, 0.07);
}
.link { color: var(--green-700); font-weight: 700; }
.bg-soft { background: linear-gradient(180deg, #f6f8f3, #fff); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.tick-list { padding-left: 1.2rem; }
.tick-list li { margin-bottom: 0.6rem; }
.quick-form input,
.quick-form select,
.quick-form textarea,
.quick-form button,
iframe {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 0.7rem;
  font: inherit;
}
.quick-form button { border: 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.product-card .content { padding-top: 0.8rem; }
.chip-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1rem 0; }
.chip { background: #eaf1e6; border-radius: 999px; padding: 0.4rem 0.8rem; font-size: 0.9rem; text-decoration: none; color: inherit; }
.chip:hover { background: #c8dfc0; }
.chip-active { background: #365b2c; color: #fff; }
.prose { max-width: 780px; }
.prose img { margin: 1rem 0; }
.rich-content { line-height: 1.75; }
.rich-content p { margin: 0.8rem 0; }
.rich-content h2,
.rich-content h3,
.rich-content h4 { margin: 1.2rem 0 0.7rem; line-height: 1.35; }
.rich-content ul,
.rich-content ol { padding-left: 1.2rem; margin: 0.7rem 0; }
.rich-content blockquote {
  margin: 1rem 0;
  padding: 0.65rem 0.9rem;
  border-left: 4px solid var(--green-500);
  background: #f6faf3;
  border-radius: 8px;
}
.rich-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}
.rich-content th,
.rich-content td {
  border: 1px solid #d8dfd3;
  padding: 0.55rem;
  text-align: left;
}
.rich-content a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.success { color: #246f39; font-weight: 700; }

.site-footer { background: #132010; color: #dcead8; padding: 2rem 0; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }

.floating-wa,
.floating-call {
  position: fixed;
  right: 1rem;
  z-index: 25;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
}
.floating-wa { bottom: 4.4rem; background: #25d366; }
.floating-call { bottom: 1.2rem; background: var(--soil-700); }

@media (max-width: 980px) {
  .main-nav { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.97); border-bottom: 1px solid #e3e3e3; padding: 0.5rem 1rem 1rem; z-index: 20; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.75rem 0; border-bottom: 1px solid #eee; font-size: 1rem; }
  .main-nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta .btn-soft { display: none; }
  .site-header { position: relative; }
  .hero-grid,
  .split,
  .card-grid,
  .product-grid,
  .footer-grid { grid-template-columns: 1fr; }
}

.logo { align-self: stretch; display: flex !important; align-items: center; }
.logo-img { height: 100%; width: auto; max-height: 80px; object-fit: contain; }
.logo-text { font-family: Poppins, sans-serif; font-size: 1.15rem; font-weight: 600; color: #1a2e1a; line-height: 1.2; margin-left: 0.5rem; white-space: nowrap; }
.logo-text strong { color: var(--green-700); font-weight: 700; }

/* ===== ABOUT PAGE ===== */
.about-hero { background: linear-gradient(135deg, #f0f7ee 0%, #e8f5e3 100%); padding: 4rem 0 3rem; text-align: center; }
.about-hero h1 { font-size: 2.5rem; color: var(--text); margin: 0.5rem 0 1rem; }
.about-hero p { font-size: 1.15rem; color: #555; max-width: 600px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.about-text p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.about-img { width: 100%; border-radius: 16px; object-fit: cover; max-height: 400px; }
.about-img-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mission-card { background: #fff; border-radius: 16px; padding: 2rem; box-shadow: 0 2px 16px rgba(0,0,0,0.07); text-align: center; }
.mission-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mission-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--green-700); }
.mission-card p { color: #555; line-height: 1.7; font-size: 0.95rem; }
.about-mission { background: #f8faf7; }
.section-header-center { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header-center h2 { font-size: 2rem; margin: 0.5rem 0 1rem; }
.section-header-center p { color: #666; font-size: 1rem; line-height: 1.7; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cat-item { background: #fff; border-radius: 14px; padding: 1.5rem; border: 1px solid #eee; transition: box-shadow 0.2s; }
.cat-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.cat-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.cat-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--green-700); }
.cat-item p { font-size: 0.9rem; color: #666; line-height: 1.65; }
.about-why { background: #f8faf7; }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.why-item { display: flex; gap: 1.5rem; align-items: flex-start; background: #fff; border-radius: 14px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.why-num { font-size: 2rem; font-weight: 800; color: var(--green-700); opacity: 0.3; min-width: 3rem; line-height: 1; }
.why-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.why-item p { font-size: 0.92rem; color: #666; line-height: 1.65; }
.about-location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-location-grid h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.about-location-grid p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.location-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.location-list li { font-size: 1rem; color: #444; }
.location-list a { color: var(--green-700); text-decoration: none; font-weight: 600; }
@media (max-width: 768px) {
  .about-grid, .mission-grid, .cat-grid, .about-location-grid { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 1.75rem; }
}

/* ===== ABOUT PAGE ===== */
.about-hero { background: linear-gradient(135deg, #f0f7ee 0%, #e8f5e3 100%); padding: 4rem 0 3rem; text-align: center; }
.about-hero h1 { font-size: 2.5rem; color: var(--text); margin: 0.5rem 0 1rem; }
.about-hero p { font-size: 1.15rem; color: #555; max-width: 600px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.about-text p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.about-img { width: 100%; border-radius: 16px; object-fit: cover; max-height: 400px; }
.about-img-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mission-card { background: #fff; border-radius: 16px; padding: 2rem; box-shadow: 0 2px 16px rgba(0,0,0,0.07); text-align: center; }
.mission-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mission-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--green-700); }
.mission-card p { color: #555; line-height: 1.7; font-size: 0.95rem; }
.about-mission { background: #f8faf7; }
.section-header-center { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header-center h2 { font-size: 2rem; margin: 0.5rem 0 1rem; }
.section-header-center p { color: #666; font-size: 1rem; line-height: 1.7; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cat-item { background: #fff; border-radius: 14px; padding: 1.5rem; border: 1px solid #eee; transition: box-shadow 0.2s; }
.cat-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.cat-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.cat-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--green-700); }
.cat-item p { font-size: 0.9rem; color: #666; line-height: 1.65; }
.about-why { background: #f8faf7; }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.why-item { display: flex; gap: 1.5rem; align-items: flex-start; background: #fff; border-radius: 14px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.why-num { font-size: 2rem; font-weight: 800; color: var(--green-700); opacity: 0.3; min-width: 3rem; line-height: 1; }
.why-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.why-item p { font-size: 0.92rem; color: #666; line-height: 1.65; }
.about-location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-location-grid h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.about-location-grid p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.location-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.location-list li { font-size: 1rem; color: #444; }
.location-list a { color: var(--green-700); text-decoration: none; font-weight: 600; }
@media (max-width: 768px) {
  .about-grid, .mission-grid, .cat-grid, .about-location-grid { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 1.75rem; }
}
