:root{
  --green:#103f2d;
  --green2:#1f6047;
  --cream:#fff8ec;
  --cream2:#f6ead8;
  --text:#122d22;
  --muted:#5e6a62;
  --shadow:0 18px 45px rgba(16,63,45,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,Arial,sans-serif;background:var(--cream);color:var(--text)}
a{text-decoration:none;color:inherit}
.topbar{
  height:84px;display:flex;align-items:center;justify-content:space-between;
  padding:0 8%;position:sticky;top:0;z-index:20;
  background:rgba(255,248,236,.9);backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(16,63,45,.08)
}
.logo img{width:100px;display:block}
.menu{display:flex;gap:34px;font-size:14px;font-weight:700}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--green);color:white;border-radius:10px;
  padding:15px 26px;font-weight:800;border:0;cursor:pointer
}
.btn-small{padding:11px 18px;font-size:14px}
.hero{
  display:grid;grid-template-columns:42% 58%;align-items:center;
  gap:20px;padding:54px 8% 70px;
  background:linear-gradient(105deg,#fff7e8 0%,#fff1d9 48%,#ead0ac 100%)
}
.hero h1{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(52px,6vw,86px);line-height:.92;
  color:var(--green);margin:0 0 22px
}
.hero h1 em{font-style:italic}
.hero p{font-size:21px;line-height:1.45;max-width:440px;font-weight:600}
.mini-benefits{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px;color:var(--green);font-size:13px;font-weight:800}
.hero-image img{width:100%;border-radius:0 0 0 70px;box-shadow:var(--shadow);display:block}
.why,.products,.prepare,.testimonials,.order{padding:60px 8%}
h2{font-family:"Playfair Display",Georgia,serif;color:var(--green);font-size:40px;text-align:center;margin:0 0 34px}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;max-width:1120px;margin:auto}
.why-grid article{text-align:center;padding:20px;border-right:1px solid rgba(16,63,45,.15)}
.why-grid article:last-child{border-right:0}
.icon{font-size:38px}.why h3{margin:12px 0 8px}.why p{font-size:14px;color:var(--muted);line-height:1.5}
.products{background:white}
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;max-width:1100px;margin:auto}
.product-card{background:#fff;border-radius:16px;box-shadow:var(--shadow);overflow:hidden}
.product-card img{width:100%;height:210px;object-fit:cover;display:block}
.product-info{padding:24px}
.product-info h3{font-family:"Playfair Display",Georgia,serif;color:var(--green);font-size:25px;margin:0 0 8px}
.product-info p{line-height:1.45;margin:0 0 18px}
.product-info strong{display:block;font-size:24px;margin-bottom:3px}
.product-info small{display:block;color:var(--muted);margin-bottom:18px}
.product-info button{width:100%;padding:13px;border:1px solid var(--green);background:white;color:var(--green);border-radius:9px;font-weight:800;cursor:pointer}
.product-info button:hover{background:var(--green);color:white}
.delivery{text-align:center;font-weight:800;color:var(--green);margin-top:26px}
.prepare{background:var(--cream)}
.steps{display:grid;grid-template-columns:1fr 40px 1fr 40px 1fr;gap:18px;align-items:center;max-width:900px;margin:auto;text-align:center}
.steps div:not(.arrow){background:white;border-radius:16px;padding:24px;box-shadow:0 10px 25px rgba(16,63,45,.06)}
.steps b{display:inline-flex;width:34px;height:34px;border:1px solid var(--green);border-radius:50%;align-items:center;justify-content:center;margin-bottom:10px}
.steps span{font-size:42px;display:block}.arrow{font-size:30px;color:var(--green)}
.testimonials{background:white}
.testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;max-width:1050px;margin:auto}
.testimonial-grid article{background:var(--cream2);border-radius:16px;padding:30px}
.testimonial-grid span{font-family:Georgia,serif;font-size:52px;color:#8aa76b;line-height:0}
.testimonial-grid p{font-weight:700;line-height:1.45}.testimonial-grid div{color:#f6ad22;margin-top:10px}
.order{display:grid;grid-template-columns:.9fr 1.1fr;gap:35px;align-items:start;background:linear-gradient(90deg,var(--green),#0b2b20);color:white;margin:40px 8%;border-radius:18px}
.order h2{text-align:left;color:white;margin-bottom:10px}
.order p{font-size:18px;line-height:1.45}
form{display:grid;grid-template-columns:1fr 1fr;gap:14px}
input,select{padding:15px;border-radius:9px;border:0;font:inherit}
form .btn{grid-column:1/-1;background:white;color:var(--green)}
footer{display:grid;grid-template-columns:180px 1fr 220px;gap:40px;align-items:start;padding:45px 8%;background:#fff}
footer img{width:135px}footer p{line-height:1.55}footer div{display:flex;flex-direction:column;gap:8px}
.copyright{text-align:center;background:var(--green);color:white;padding:16px;font-size:12px}
@media(max-width:900px){
  .menu{display:none}
  .hero{grid-template-columns:1fr;padding-top:36px}
  .hero-image img{border-radius:24px}
  .why-grid,.product-grid,.testimonial-grid,.order,footer{grid-template-columns:1fr}
  .why-grid article{border-right:0;border-bottom:1px solid rgba(16,63,45,.12)}
  .steps{grid-template-columns:1fr}.arrow{transform:rotate(90deg)}
  form{grid-template-columns:1fr}
}
