:root{
  --brown:#4E3B2A; --gold:#C8A04A; --green:#1D8A3F; --red:#C2302B; --beige:#FAF7F2;
  --text:#0f172a; --muted:#6b7280; --white:#fff;
  --shadow:0 18px 45px rgba(0,0,0,.10);
  --radius-lg:24px; --radius-md:18px; --radius-sm:12px;
  --container:1200px;
}
*{box-sizing:border-box} html,body{margin:0;padding:0}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
     color:var(--text); background:var(--beige);}
.container{max-width:var(--container); margin:0 auto; padding:0 24px}

/* header */
header{position:sticky; top:0; z-index:50; backdrop-filter:saturate(140%) blur(8px);
       background:rgba(255,255,255,.75); border-bottom:1px solid #eee;}
.nav{height:72px; display:flex; align-items:center; justify-content:space-between}
.brand{display:flex; align-items:center; gap:12px}
.brand img{height:44px; width:auto; border-radius:10px; box-shadow:var(--shadow)}
.brand .title{font-weight:800; color:var(--brown); line-height:1}
.brand .sub{font-size:12px; color:var(--green)}
.menu{display:flex; align-items:center; gap:22px}
.menu a{color:var(--brown); text-decoration:none; font-weight:600; padding:6px 4px}
.menu a.active{border-bottom:3px solid var(--gold)}
.menu .btn{background:var(--red); color:#fff; padding:10px 16px; border-radius:12px}

/* hero */
.hero-wrap{background:linear-gradient(135deg, var(--gold), var(--green)); color:#fff}
.hero{display:grid; grid-template-columns:1.15fr 1fr; gap:36px; align-items:center; padding:60px 0;} /* reduced */
.hero h1{margin:0 0 14px; font-size:48px; line-height:1.15; text-shadow:0 2px 12px rgba(0,0,0,.15)}
.hero p{margin:0 0 24px; font-size:18px; opacity:.95}
.cta{display:flex; gap:12px; flex-wrap:wrap}
.btn{display:inline-block; padding:12px 18px; border-radius:16px; font-weight:700; text-decoration:none}
.btn-brown{background:var(--brown); color:#fff}
.btn-outline{border:2px solid #fff; color:#fff}

/* stats */
.stats-wrap{border-radius:var(--radius-lg); padding:8px; background:linear-gradient(135deg,var(--red),var(--gold));
            box-shadow:var(--shadow)}
.stats{background:#fff; border-radius:var(--radius-lg); padding:28px}
.stats-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.stat{border:2px solid var(--gold); border-radius:16px; text-align:center; padding:16px}
.stat h3{margin:0; color:var(--brown); font-size:28px; font-weight:900}
.stat p{margin:6px 0 0; font-size:13px; color:var(--muted)}
.wave{display:block; width:100%; height:72px}
.wave path{fill:var(--beige)}

/* sections */
section{padding:72px 0}
h2{margin:0 0 12px; font-size:32px; color:var(--brown)}
.muted{color:var(--muted)}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:28px}
.card{background:#fff; border:1px solid #eee; border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow)}

/* services & products */
.services{background:#fff}
.service{border:1px solid #eee; border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow)}
.service h3{margin:0 0 10px}
.chips{display:flex; flex-wrap:wrap; gap:10px}
.chip{border:1px solid var(--gold); border-radius:999px; padding:7px 12px; font-size:13px; background:#fff}

/* band */
.band{background:linear-gradient(90deg, var(--brown), var(--gold)); color:#fff}
.band .container{padding:30px 24px}
.band h2{color:#fff; margin-bottom:6px}
.band p{margin:0; opacity:.95}

/* contact form */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:28px}
.form{background:#fff; border:1px solid #eee; border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow)}
.form label{font-size:13px; font-weight:600; margin-bottom:6px; display:block; color:#374151}
.form input,.form textarea{width:100%; padding:12px 14px; border:1px solid #e5e7eb; border-radius:12px; font:inherit}
.form textarea{min-height:120px; resize:vertical}
.form button{margin-top:8px; background:var(--green); color:#fff; border:0; padding:12px 16px; border-radius:14px; font-weight:700; cursor:pointer}

/* footer */
footer{background:var(--brown); color:#fff; padding:22px 0}
.foot{display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap}
.tags{opacity:.9; display:flex; gap:14px; font-size:14px}

/* page headers (inner pages) */
.page-hero{background:linear-gradient(135deg, var(--gold), var(--green)); color:#fff; padding:42px 0}
.page-hero h1{margin:0; font-size:36px}

/* responsive */
@media (max-width: 980px){
  .hero{grid-template-columns:1fr}
  .grid-2, .contact-grid{grid-template-columns:1fr}
  .hero h1{font-size:38px}
  .menu{gap:14px}
}
/* tables */
.table{width:100%; border-collapse:collapse; font-size:14px}
.table th,.table td{border:1px solid #eee; padding:10px 12px; text-align:left}
.table thead th{background:#f7f7f7; color:#374151; font-weight:700}
.table tbody tr:nth-child(even){background:#fafafa}
.table a{color:var(--brown); text-decoration:underline}
/* contact helpers */
.fieldset{border:1px solid #eee;border-radius:14px;padding:16px;margin:12px 0;background:#fff}
.fieldset legend{font-weight:700;color:var(--brown);padding:0 6px}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width: 900px){ .row{grid-template-columns:1fr} }
.hint{font-size:12px;color:#6b7280;margin-top:4px}
.form-note{font-size:13px;color:#6b7280;margin-top:6px}
/* contact helpers */
.fieldset{border:1px solid #eee;border-radius:14px;padding:16px;margin:12px 0;background:#fff}
.fieldset legend{font-weight:700;color:var(--brown);padding:0 6px}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width: 900px){ .row{grid-template-columns:1fr} }
.hint{font-size:12px;color:#6b7280;margin-top:4px}
.form-note{font-size:13px;color:#6b7280;margin-top:6px}
/* helpers */
.hide{display:none}
.fieldset{border:1px solid #eee;border-radius:14px;padding:16px;margin:12px 0;background:#fff}
.fieldset legend{font-weight:700;color:var(--brown);padding:0 6px}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width: 900px){ .row{grid-template-columns:1fr} }
.hint{font-size:12px;color:#6b7280;margin-top:4px}
.form-note{font-size:13px;color:#6b7280;margin-top:6px}
/* product cards */
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
@media (max-width: 980px){ .product-grid{grid-template-columns:1fr 1fr} }
@media (max-width: 620px){ .product-grid{grid-template-columns:1fr} }

.product-card{background:#fff;border:1px solid #eee;border-radius:24px;box-shadow:var(--shadow);overflow:hidden;display:flex;flex-direction:column;transition:transform .15s ease, box-shadow .15s ease}
.product-card:hover{transform:translateY(-4px);box-shadow:0 22px 60px rgba(0,0,0,.12)}

.product-media{position:relative;aspect-ratio:4/3;overflow:hidden;background:#f7f7f7}
.product-media img{width:100%;height:100%;object-fit:cover;display:block}
.product-body{padding:16px 18px}
.product-title{margin:0 0 6px;color:var(--brown);font-size:18px;font-weight:800}
.product-sub{margin:0 0 12px;color:var(--muted);font-size:13px}
.product-actions{margin-top:auto;padding:0 18px 16px}
