
:root{
  --green:#173d2b;
  --green-2:#275b40;
  --cream:#f5f3ec;
  --gold:#b6a26b;
  --ink:#17221b;
  --white:#ffffff;
  --muted:#68746d;
  --shadow:0 18px 45px rgba(23,61,43,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.5;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{width:min(1180px, calc(100% - 40px)); margin:0 auto}
header{
  position:sticky; top:0; z-index:20;
  background:rgba(245,243,236,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(23,61,43,.08);
}
.nav{display:flex;align-items:center;justify-content:space-between;min-height:78px;gap:30px}
.logo{width:155px}
nav{display:flex;gap:24px;align-items:center;font-size:14px;font-weight:700}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--green);color:#fff;padding:13px 20px;border-radius:4px;
  font-weight:700;letter-spacing:.02em
}
.btn.secondary{background:transparent;color:var(--green);border:1px solid var(--green)}
.hero{display:grid;grid-template-columns:1fr 1.15fr;min-height:680px;background:#fff}
.hero-copy{padding:90px max(40px, calc((100vw - 1180px)/2)); padding-right:55px;display:flex;flex-direction:column;justify-content:center}
.eyebrow{color:var(--gold);font-size:13px;font-weight:800;letter-spacing:.16em;text-transform:uppercase}
h1{font-size:clamp(44px,6vw,78px);line-height:.98;margin:18px 0 22px;color:var(--green);letter-spacing:-.04em}
.lead{font-size:20px;max-width:620px;color:#38453d}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.hero-image{min-height:680px;background:url('assets/hero.jpg') center center/cover no-repeat}
.section{padding:90px 0}
.section.white{background:#fff}
.section-title{display:flex;justify-content:space-between;gap:30px;align-items:end;margin-bottom:38px}
.section-title h2{margin:0;font-size:42px;line-height:1.05;color:var(--green)}
.section-title p{margin:0;max-width:560px;color:var(--muted)}
.usp-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.usp{background:#fff;padding:28px;border-radius:10px;box-shadow:var(--shadow);border-top:4px solid var(--gold)}
.usp b{display:block;color:var(--green);font-size:18px;margin-bottom:8px}
.products{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}
.product{background:#fff;border-radius:12px;overflow:hidden;box-shadow:var(--shadow)}
.product-gallery{display:grid;grid-template-columns:repeat(3,1fr);height:310px;gap:2px;background:#e8e8e2}
.product-gallery.two{grid-template-columns:repeat(2,1fr)}
.product-gallery.one{grid-template-columns:1fr}
.product-gallery img{width:100%;height:100%;object-fit:cover}
.product-body{padding:24px 26px 26px}
.product-top{display:flex;justify-content:space-between;gap:18px;align-items:start}
.product h3{margin:0;color:var(--green);font-size:24px}
.availability{font-size:12px;font-weight:800;color:var(--green);background:#edf4ef;padding:8px 10px;border-radius:99px;white-space:nowrap}
.meta{margin:12px 0 0;color:#58655e;font-weight:700}
.cert-wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:34px;align-items:center}
.cert-card{background:var(--green);color:#fff;padding:38px;border-radius:12px}
.cert-badges{display:flex;gap:14px;flex-wrap:wrap;margin-top:22px}
.badge{background:#fff;color:var(--green);padding:16px 20px;border-radius:8px;font-weight:800;min-width:155px;text-align:center}
.floriday{background:var(--green);color:#fff;padding:70px 0}
.floriday .container{display:flex;justify-content:space-between;gap:30px;align-items:center}
.floriday h2{font-size:38px;margin:0 0 10px}
.contact{display:grid;grid-template-columns:1fr 1fr;gap:40px}
.contact-card{background:#fff;border-radius:12px;padding:34px;box-shadow:var(--shadow)}
.contact-card h3{margin-top:0;color:var(--green);font-size:26px}
footer{padding:30px 0;background:#112d20;color:#dce8df;font-size:14px}
footer .container{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
.small{font-size:13px;color:var(--muted)}
@media (max-width:900px){
  nav{display:none}
  .hero{grid-template-columns:1fr}
  .hero-copy{padding:65px 24px}
  .hero-image{min-height:500px}
  .usp-grid{grid-template-columns:repeat(2,1fr)}
  .products{grid-template-columns:1fr}
  .cert-wrap,.contact{grid-template-columns:1fr}
  .floriday .container{align-items:flex-start;flex-direction:column}
}
@media (max-width:600px){
  .container{width:min(100% - 24px,1180px)}
  .usp-grid{grid-template-columns:1fr}
  .section{padding:64px 0}
  .section-title{align-items:start;flex-direction:column}
  .product-gallery{height:250px}
  .product-gallery,.product-gallery.two{grid-template-columns:1fr 1fr}
  .product-gallery img:nth-child(3){display:none}
}
