:root{
  --bg:#f7f3ea;
  --bg2:#eef7f0;
  --paper:#ffffff;
  --ink:#1f2a1f;
  --muted:#5e6b5e;
  --line:#e6decf;

  --accent:#2f7d62;     /* forest */
  --accent2:#a16207;    /* amber-brown */
  --accent3:#2563eb;    /* blue */

  --shadow: 0 18px 44px rgba(31,42,31,.12);
  --shadow2: 0 10px 26px rgba(31,42,31,.10);

  --r1:26px;
  --r2:18px;
  --r3:12px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:
    radial-gradient(900px 540px at 14% 16%, rgba(47,125,98,.14), transparent 60%),
    radial-gradient(900px 540px at 86% 18%, rgba(161,98,7,.12), transparent 58%),
    radial-gradient(900px 540px at 60% 92%, rgba(37,99,235,.10), transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg));
}

a{color:inherit}
.container{max-width:1180px; margin:0 auto; padding:0 18px;}

.shell{
  display:grid;
  grid-template-columns: 260px 1fr;
  min-height:100vh;
}
@media (max-width:980px){ .shell{grid-template-columns:1fr} }

.side{
  position:sticky; top:0;
  height:100vh;
  padding:18px;
}
@media (max-width:980px){
  .side{position:relative; height:auto}
}
.brand{
  display:flex; gap:12px; align-items:center;
  text-decoration:none;
  padding:12px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.70);
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
}
.mark{
  width:42px; height:42px; border-radius:16px;
  background:
    radial-gradient(circle at 28% 28%, rgba(47,125,98,.95), transparent 58%),
    radial-gradient(circle at 72% 72%, rgba(161,98,7,.85), transparent 58%),
    rgba(255,255,255,.65);
  border:1px solid var(--line);
}
.brand strong{display:block; letter-spacing:.2px}
.brand small{display:block; color:var(--muted); margin-top:2px}

.nav{
  margin-top:12px;
  padding:12px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.70);
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
  display:grid;
  gap:8px;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:10px 12px;
  border-radius:14px;
  border:1px solid transparent;
  transition:.18s ease;
}
.nav a:hover{
  color:var(--ink);
  background: rgba(47,125,98,.08);
  border-color: rgba(47,125,98,.14);
}

.miniCard{
  margin-top:12px;
  padding:12px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.70);
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
}
.miniCard h4{margin:0 0 8px; font-size:13.5px}
.kv{
  display:grid;
  gap:8px;
}
.kv .k{font-size:11px; color:var(--muted)}
.kv .v{font-weight:950}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  cursor:pointer;
  transition:.2s ease;
  font-weight:950;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  border-color: transparent;
  color:#fff;
  background: linear-gradient(135deg, var(--accent), rgba(37,99,235,.95));
  box-shadow: 0 18px 40px rgba(47,125,98,.18);
}

.main{
  padding:18px 18px 30px;
}

/* hero */
.hero{
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  border-radius: var(--r1);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero:before{
  content:"";
  position:absolute; inset:-160px -180px auto auto;
  width:520px; height:520px; border-radius:999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(47,125,98,.18), transparent 62%),
    radial-gradient(circle at 70% 70%, rgba(161,98,7,.14), transparent 62%);
  transform: rotate(18deg);
}
.heroGrid{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:12px;
  padding:18px;
  align-items:stretch;
}
@media (max-width:980px){ .heroGrid{grid-template-columns:1fr} }

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  color:var(--muted);
  width:fit-content;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--accent);
  box-shadow:0 0 0 6px rgba(47,125,98,.12);
}
.h1{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.8px;
}
@media (max-width:520px){ .h1{font-size:34px} }
.lead{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.85;
  font-size:15.5px;
}
.heroActions{display:flex; gap:10px; flex-wrap:wrap; align-items:center}

.heroRight{
  border:1px solid var(--line);
  border-radius: var(--r1);
  background: rgba(255,255,255,.88);
  padding:14px;
}
.heroRight h3{margin:0 0 8px; font-size:16px}
.heroRight p{margin:0 0 12px; color:var(--muted); line-height:1.6; font-size:13.5px}
.disc{
  border:1px dashed rgba(161,98,7,.35);
  background: rgba(161,98,7,.09);
  border-radius: 18px;
  padding:12px;
  color:var(--muted);
  line-height:1.55;
  font-size:13px;
}

.tiles{
  margin-top:12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width:520px){ .tiles{grid-template-columns:1fr} }
.tile{
  border:1px solid var(--line);
  background:#fff;
  border-radius:18px;
  padding:12px;
}
.tile small{display:block; color:var(--muted); margin-bottom:6px}
.tile div{font-weight:950}

/* sections */
.section{padding:22px 0 0}
.head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  margin:0 0 12px;
}
.head h2{margin:0; font-size:22px; letter-spacing:-.2px}
.head p{margin:0; color:var(--muted); line-height:1.65; max-width:780px}

/* catalog as mosaic */
.catalog{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: var(--r1);
  box-shadow: var(--shadow2);
}
.p{
  grid-column: span 4;
  padding:16px;
  border-radius: var(--r1);
  background:#fff;
  border:1px solid var(--line);
}
@media (max-width:980px){ .p{grid-column: span 6} }
@media (max-width:640px){ .p{grid-column: span 12} }

.pTop{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.tag{
  font-size:12px; font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(47,125,98,.10);
  color: var(--accent);
}
.tag.alt{
  background: rgba(37,99,235,.10);
  color: var(--accent3);
}
.tag.neu{
  background: rgba(31,42,31,.04);
  color: var(--muted);
}
.pack{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
}
.p h3{margin:12px 0 6px; font-size:16px}
.p p{margin:0; color:var(--muted); line-height:1.65; font-size:13.5px}
.pBottom{
  margin-top:14px;
  display:flex; justify-content:space-between; align-items:center;
  gap:10px; flex-wrap:wrap;
}
.price{font-weight:950; font-size:18px; letter-spacing:.2px}
.pBottom button{
  border:1px solid var(--line);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:950;
}
.pBottom button:hover{background: rgba(31,42,31,.02)}

/* benefits */
.benefits{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){ .benefits{grid-template-columns:1fr} }
.b{
  padding:16px;
}
.badgeNum{
  width:38px;height:38px;border-radius:16px;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  background:#fff;
  font-weight:950;
  color: var(--accent2);
}
.b h3{margin:10px 0 6px}
.b p{margin:0; color:var(--muted); line-height:1.65; font-size:13.5px}

/* shipping/payment as timeline */
.timeline{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){ .timeline{grid-template-columns:1fr} }
.step{
  padding:16px;
}
.step h3{margin:0 0 8px}
.step ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.9}
.step li{margin:6px 0}

/* faq */
.faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){ .faq{grid-template-columns:1fr} }
details{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  padding:12px 14px;
}
summary{cursor:pointer; font-weight:950; list-style:none}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted); line-height:1.7}

/* order */
.orderGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:12px;
  align-items:stretch;
}
@media (max-width:980px){ .orderGrid{grid-template-columns:1fr} }
.formCard{padding:18px}
.formCard h3{margin:0 0 6px}
.formCard p{margin:0 0 14px; color:var(--muted); line-height:1.6}
form{display:grid; gap:10px}
.field{display:grid; gap:6px}
label{font-size:12px; color:var(--muted)}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
  color:var(--ink);
}
textarea{min-height:92px; resize:vertical}
input:focus,select:focus,textarea:focus{
  border-color: rgba(47,125,98,.34);
  box-shadow: 0 0 0 4px rgba(47,125,98,.12);
}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:10px}
@media (max-width:520px){ .row2{grid-template-columns:1fr} }
.note{font-size:12px; color:var(--muted); line-height:1.55}

.legal{padding:18px}
.kvBox{
  border:1px solid var(--line);
  border-radius:18px;
  padding:12px;
  background:#fff;
}
.sep{height:1px;background:var(--line); margin:10px 0}

/* footer */
.footer{
  margin-top:22px;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.65);
}
.foot{
  padding:18px 0;
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.foot small{color:var(--muted); line-height:1.65}
.foot a{color:var(--muted); text-decoration:none}
.foot a:hover{color:var(--ink)}
.links{display:flex; gap:12px; flex-wrap:wrap; align-items:center}

/* inner pages */
.page{padding:22px 0}
.paper{
  padding:18px;
  border:1px solid var(--line);
  border-radius: var(--r1);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
}
.page h1{margin:0 0 10px; font-size:28px; letter-spacing:-.2px}
.page p,.page li{color:var(--muted); line-height:1.85}
