:root{
  --bg:#f7f5ef;
  --paper:#ffffff;
  --paper2:#fbfaf7;
  --ink:#1f2a1f;
  --muted:#5a6a5f;
  --line:rgba(31,42,31,.12);

  --accent:#2f6f4e;   /* forest */
  --accent2:#c07a2c;  /* copper */
  --accent3:#3b82f6;  /* blue (links) */

  --shadow: 0 18px 55px rgba(31,42,31,.10);
  --shadow2: 0 10px 28px rgba(31,42,31,.08);

  --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(1000px 560px at 12% 8%, rgba(47,111,78,.12), transparent 62%),
    radial-gradient(1000px 560px at 86% 10%, rgba(192,122,44,.10), transparent 62%),
    linear-gradient(180deg, #ffffff, var(--bg));
}

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

/* header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(247,245,239,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.headerRow{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.mark{
  width:46px; height:46px; border-radius:18px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 30% 30%, rgba(47,111,78,.92), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(192,122,44,.78), transparent 60%),
    rgba(255,255,255,.70);
  box-shadow: 0 18px 40px rgba(47,111,78,.12);
}
.brand strong{display:block; letter-spacing:.2px}
.brand small{display:block; color:var(--muted); margin-top:2px}

.nav{
  display:flex; gap:8px; flex-wrap:wrap; align-items:center;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.18s ease;
}
.nav a:hover{
  color:var(--ink);
  background: rgba(255,255,255,.85);
  border-color: var(--line);
}

.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;
  font-weight:950;
  transition:.18s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  border-color: transparent;
  color:#fff;
  background: linear-gradient(135deg, var(--accent), #245a3f);
  box-shadow: 0 16px 40px rgba(47,111,78,.18);
}
.btn.copper{
  border-color: rgba(192,122,44,.20);
  background: rgba(192,122,44,.08);
}

/* hero */
.hero{
  padding:20px 0 0;
}
.heroShell{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:14px;
  align-items:stretch;
}
@media (max-width:980px){ .heroShell{grid-template-columns:1fr} }

.heroCard{
  border:1px solid var(--line);
  border-radius: var(--r1);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.heroCard:before{
  content:"";
  position:absolute; inset:-220px -260px auto auto;
  width:560px; height:560px; border-radius:999px;
  background:
    radial-gradient(circle at 40% 40%, rgba(47,111,78,.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(192,122,44,.14), transparent 60%);
  transform: rotate(-10deg);
}
.kicker{
  position:relative;
  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;
}
.kicker i{
  width:10px;height:10px;border-radius:999px;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(192,122,44,.12);
  display:inline-block;
}
.h1{
  position:relative;
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.8px;
}
@media (max-width:520px){ .h1{font-size:34px} }
.lead{
  position:relative;
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.85;
  font-size:15.5px;
}
.heroActions{position:relative; display:flex; gap:10px; flex-wrap:wrap; align-items:center}

.sideCard{
  border:1px solid var(--line);
  border-radius: var(--r1);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow2);
  padding:16px;
  display:grid;
  gap:12px;
}
.notice{
  border:1px dashed rgba(47,111,78,.35);
  background: rgba(47,111,78,.08);
  border-radius: 18px;
  padding:12px;
  color:var(--muted);
  line-height:1.55;
  font-size:13px;
}
.quickGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width:520px){ .quickGrid{grid-template-columns:1fr} }
.quick{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  padding:12px;
}
.quick small{display:block; color:var(--muted); margin-bottom:6px}
.quick div{font-weight:950}

/* sections */
.section{padding:26px 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}

/* product rail */
.rail{
  display:grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap:12px;
  overflow:auto;
  padding-bottom:6px;
  scroll-snap-type: x mandatory;
}
.rail::-webkit-scrollbar{height:10px}
.rail::-webkit-scrollbar-thumb{background: rgba(31,42,31,.12); border-radius:999px}
.prod{
  scroll-snap-align:start;
  border:1px solid var(--line);
  border-radius: var(--r1);
  background:#fff;
  box-shadow: var(--shadow2);
  padding:16px;
  display:grid;
  gap:12px;
}
.thumb{
  height:96px;
  border-radius: 18px;
  border:1px solid var(--line);
  background:
    radial-gradient(160px 90px at 30% 30%, rgba(47,111,78,.18), transparent 65%),
    radial-gradient(160px 90px at 70% 70%, rgba(192,122,44,.14), transparent 65%),
    linear-gradient(180deg, rgba(31,42,31,.06), rgba(31,42,31,.02));
}
.badges{display:flex; gap:8px; flex-wrap:wrap}
.badge{
  font-size:12px; font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(47,111,78,.08);
}
.badge.c{background: rgba(192,122,44,.10)}
.badge.n{background: rgba(31,42,31,.04); color:var(--muted)}
.prod h3{margin:0; font-size:16px}
.prod p{margin:0; color:var(--muted); line-height:1.65; font-size:13.5px}
.bottom{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; flex-wrap:wrap;
}
.price{font-weight:950; font-size:18px; letter-spacing:.2px}
.pick{
  border:1px solid var(--line);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:950;
}
.pick:hover{background: rgba(31,42,31,.02)}

/* steps */
.steps{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){ .steps{grid-template-columns:1fr} }
.step{
  border:1px solid var(--line);
  border-radius: var(--r1);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow2);
  padding:16px;
}
.num{
  width:40px;height:40px;border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:950;
  color: var(--accent);
}
.step h3{margin:10px 0 6px}
.step p{margin:0; color:var(--muted); line-height:1.65; font-size:13.5px}

/* delivery/payment */
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){ .grid2{grid-template-columns:1fr} }
.box{
  border:1px solid var(--line);
  border-radius: var(--r1);
  background:#fff;
  box-shadow: var(--shadow2);
  padding:16px;
}
.box h3{margin:0 0 8px}
.box ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.9}
.box 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;
  box-shadow: var(--shadow2);
  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 area */
.orderWrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:12px;
  align-items:stretch;
}
@media (max-width:980px){ .orderWrap{grid-template-columns:1fr} }
.formCard{
  border:1px solid var(--line);
  border-radius: var(--r1);
  background:#fff;
  box-shadow: var(--shadow2);
  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,111,78,.36);
  box-shadow: 0 0 0 4px rgba(47,111,78,.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}

.summaryCard{
  border:1px solid var(--line);
  border-radius: var(--r1);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow2);
  padding:18px;
  display:grid;
  gap:12px;
}
.kv{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  padding:12px;
}
.k{color:var(--muted); font-size:12px}
.v{font-weight:950; margin-top:4px}
.sep{height:1px;background:var(--line); margin:10px 0}

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

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