*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#fffef9;
  --text:#2d3a2d;
  --muted:#5c6b5c;
  --yellow:#f5e6a3;
  --yellow-light:#fdf8e8;
  --green:#7ab07a;
  --green-dark:#3d6b3d;
  --green-light:#e8f5e8;
  --peach:#fce4d4;
  --border:#e8e4d8;
  --font-heading:'Georgia',serif;
  --font-body:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --radius:12px;
}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);line-height:1.7;color:var(--text);background:var(--bg);font-size:16px}
img{max-width:100%;height:auto;display:block;border-radius:var(--radius)}
a{color:var(--green-dark);text-decoration:none;transition:color .2s}
a:hover{color:var(--green)}

/* Layout */
.container{max-width:1060px;margin:0 auto;padding:0 1.5rem}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}

/* Header */
header{background:var(--bg);border-bottom:1px solid var(--border);padding:1rem 0;position:sticky;top:0;z-index:100}
header nav{display:flex;justify-content:space-between;align-items:center;max-width:1060px;margin:0 auto;padding:0 1.5rem}
.brand{display: inline-flex;align-items:center;gap:.5rem;font-family:var(--font-heading);font-weight:700;font-size:1.15rem;color:var(--text);text-decoration:none}
.brand svg{width:32px;height:32px}
.nav-links{display:flex;gap:1.5rem}
.nav-links a{color:var(--muted);font-size:.9rem;text-decoration:none;font-weight:500}
.nav-links a:hover{color:var(--green-dark)}

/* Hero */
.hero{padding:4rem 1.5rem;text-align:center;background:linear-gradient(180deg, var(--yellow-light) 0%, var(--bg) 100%)}
.hero h1{font-family:var(--font-heading);font-size:2.5rem;margin-bottom:1rem;color:var(--text);font-weight:700}
.hero p{font-size:1.1rem;color:var(--muted);max-width:560px;margin:0 auto 2rem}
.hero-img{max-width:800px;margin:0 auto;border-radius:var(--radius);height:400px;object-fit:cover}

/* Sections */
section{padding:4rem 0}
section.alt{background:var(--green-light)}
section.warm{background:var(--yellow-light)}
h2{font-family:var(--font-heading);font-size:1.8rem;margin-bottom:1rem;color:var(--text)}
h3{font-family:var(--font-heading);font-size:1.2rem;margin-bottom:.5rem;color:var(--text)}
p{margin-bottom:1rem}
.section-intro{color:var(--muted);max-width:600px;margin-bottom:2rem}
.text-center{text-align:center}
.text-center .section-intro{margin-left:auto;margin-right:auto}

/* Cards */
.card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:transform .2s,box-shadow .2s}
.card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.06)}
.card img{width:100%;height:220px;object-fit:cover;border-radius:0}
.card-body{padding:1.25rem}
.card-body h3{margin-bottom:.4rem}
.card-body p{color:var(--muted);font-size:.9rem;margin:0}
.card-tag{display:inline-block;font-size:.75rem;background:var(--yellow);color:var(--text);padding:.2rem .6rem;border-radius:20px;margin-bottom:.5rem;font-weight:500}

/* Product card */
.product-card{text-align:center}
.product-card img{height:200px;object-fit:cover;border-radius:var(--radius) var(--radius) 0 0}
.product-card .price{font-weight:700;color:var(--green-dark);font-size:1.1rem;margin-top:.5rem}

/* Article */
.article{max-width:700px;margin:0 auto}
.article h1{font-family:var(--font-heading);font-size:2.2rem;margin-bottom:.75rem}
.article .meta{color:var(--muted);font-size:.9rem;margin-bottom:2rem}
.article img{width:100%;margin:2rem 0;border-radius:var(--radius)}
.article h2{font-size:1.4rem;margin-top:2.5rem}
.article ul,.article ol{margin:1rem 0 1.5rem 1.5rem}
.article li{margin-bottom:.5rem}
.article blockquote{background:var(--yellow-light);border-left:4px solid var(--yellow);padding:1.25rem 1.5rem;margin:1.5rem 0;border-radius:0 var(--radius) var(--radius) 0;font-style:italic;color:var(--muted)}

/* Banner */
.banner{background:var(--peach);padding:2.5rem;border-radius:var(--radius);text-align:center;margin:2rem 0}
.banner h3{font-family:var(--font-heading);font-size:1.4rem;margin-bottom:.5rem}
.banner p{color:var(--muted);margin:0}
.banner a{font-weight:600}

/* Footer */
footer{background:var(--green-light);padding:3rem 0;margin-top:2rem}
.footer-inner{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:2rem;max-width:1060px;margin:0 auto;padding:0 1.5rem}
.footer-col h4{font-size:.85rem;text-transform:uppercase;letter-spacing:.04em;color:var(--green-dark);margin-bottom:.75rem;font-weight:600}
.footer-col a{display:block;color:var(--text);font-size:.9rem;margin-bottom:.4rem}
.footer-col a:hover{color:var(--green)}
.footer-bottom{text-align:center;color:var(--muted);font-size:.8rem;margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--border)}

/* Responsive */
@media(max-width:768px){
  .grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr 1fr}
  .grid-4{grid-template-columns:1fr 1fr}
  .hero h1{font-size:1.9rem}
  .hero{padding:3rem 1rem}
  .hero-img{height:260px}
  .footer-inner{flex-direction:column}
}
@media(max-width:480px){
  .grid-3,.grid-4{grid-template-columns:1fr}
  .nav-links{gap:1rem}
  .nav-links a{font-size:.8rem}
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
