:root{
  --bg:#faf7f2;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --brand:#2f6b3e;
  --brand-2:#7c5a2d;
  --ring: rgba(47,107,62,.25);
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(47,107,62,.10), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(124,90,45,.10), transparent 55%),
              var(--bg);
  line-height:1.6;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}

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

.skip-link{
  position:absolute; left:-999px; top:10px;
  background:var(--card); padding:10px 14px;
  border-radius:12px; box-shadow:var(--shadow);
}
.skip-link:focus{left:10px; outline:3px solid var(--ring)}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(250,247,242,.75);
  border-bottom:1px solid rgba(31,41,55,.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand__logo{width:44px; height:44px; border-radius:14px; box-shadow:var(--shadow)}
.brand__text{display:flex; flex-direction:column; line-height:1.2}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted)}

.nav{display:flex; align-items:center; gap:18px}
.nav a{font-weight:600; text-decoration:none; color:rgba(31,41,55,.92)}
.nav a:hover{color:var(--brand)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(31,41,55,.12);
  background:var(--card);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  text-decoration:none;
  font-weight:700;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,.10)}
.btn:focus{outline:3px solid var(--ring); outline-offset:2px}
.btn--primary{
  background: linear-gradient(135deg, var(--brand), #3f8a52);
  border-color: transparent;
  color:#fff;
}
.btn--ghost{background:transparent; box-shadow:none}

.menu-btn{
  display:none;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(31,41,55,.12);
  background:var(--card);
}

.hero{
  padding:56px 0 28px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.hero h1{font-size: clamp(32px, 4vw, 48px); margin:0 0 10px; line-height:1.15}
.hero p{margin:0 0 18px; color:rgba(31,41,55,.82); font-size:18px}
.hero__badges{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 22px}
.badge{
  padding:8px 12px;
  background: rgba(47,107,62,.10);
  border:1px solid rgba(47,107,62,.18);
  border-radius:999px;
  font-weight:700;
  color:#214b2c;
  font-size:13px;
}
.badge:nth-child(2){background: rgba(124,90,45,.10); border-color: rgba(124,90,45,.18); color:#5f431e}
.badge:nth-child(3){background: rgba(31,41,55,.08); border-color: rgba(31,41,55,.12); color:#2a3445}

.hero__card{
  background: rgba(255,255,255,.75);
  border:1px solid rgba(31,41,55,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__card img{width:100%; height:340px; object-fit:cover}
.hero__card .hero__card-body{padding:14px 16px}
.hero__card-title{font-weight:800; margin:0 0 4px}
.hero__card-sub{margin:0; color:var(--muted); font-size:14px}

.section{padding:34px 0}
.section__title{font-size:26px; margin:0 0 6px}
.section__lead{margin:0 0 18px; color:var(--muted)}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}
.card{
  grid-column: span 6;
  background: rgba(255,255,255,.80);
  border:1px solid rgba(31,41,55,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card__media{height:240px; object-fit:cover}
.card__body{padding:16px}
.card__kicker{font-size:13px; color:var(--muted); font-weight:700; letter-spacing:.2px}
.card__title{margin:6px 0 8px; font-size:20px; line-height:1.25}
.card__text{margin:0 0 12px; color:rgba(31,41,55,.82)}
.card__meta{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap}
.price{font-weight:900; font-size:18px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.panel{
  background: rgba(255,255,255,.75);
  border:1px solid rgba(31,41,55,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.panel h3{margin:0 0 8px}
.panel p{margin:0; color:rgba(31,41,55,.82)}

.faq{display:flex; flex-direction:column; gap:10px}
.faq details{
  background: rgba(255,255,255,.80);
  border:1px solid rgba(31,41,55,.10);
  border-radius: 16px;
  padding:12px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.faq summary{cursor:pointer; font-weight:800}
.faq p{margin:10px 0 0; color:rgba(31,41,55,.82)}

.footer{
  padding:28px 0;
  border-top:1px solid rgba(31,41,55,.10);
  background: rgba(255,255,255,.45);
}
.footer__grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:start}
.small{font-size:13px; color:var(--muted)}
.footer a{color:var(--brand); text-decoration:none}
.footer a:hover{text-decoration:underline}

.kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12px;
  padding:2px 6px;
  border-radius:8px;
  border:1px solid rgba(31,41,55,.18);
  background: rgba(255,255,255,.65);
}

@media (max-width: 860px){
  .hero__grid{grid-template-columns:1fr}
  .hero__card img{height:280px}
  .card{grid-column: span 12}
  .split{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .nav{display:none}
  .menu-btn{display:inline-flex}
  .nav--open{
    display:flex;
    position:absolute;
    top:64px;
    right:4%;
    left:4%;
    flex-direction:column;
    gap:12px;
    padding:14px;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    border:1px solid rgba(31,41,55,.10);
    box-shadow: var(--shadow);
  }
}

/* Product page */
.breadcrumb{display:flex; flex-wrap:wrap; gap:8px; align-items:center; font-size:14px; color:var(--muted)}
.breadcrumb a{color:var(--brand); text-decoration:none}
.breadcrumb a:hover{text-decoration:underline}
.product{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}
.product__img{
  border-radius: var(--radius);
  border:1px solid rgba(31,41,55,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.product__img img{width:100%; height:420px; object-fit:cover}
.product__box{
  background: rgba(255,255,255,.80);
  border:1px solid rgba(31,41,55,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.product__box h1{margin:6px 0 10px; line-height:1.15}
.product__box ul{margin:0; padding-left:18px; color:rgba(31,41,55,.85)}
.product__cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

@media (max-width: 860px){
  .product{grid-template-columns:1fr}
  .product__img img{height:320px}
}
