* { box-sizing: border-box; }
:root {
  --ink: #17321f;
  --muted: #66736a;
  --cream: #f7f3e8;
  --paper: #fffdf8;
  --green: #245b38;
  --green-dark: #173e26;
  --gold: #c49a42;
  --line: #e6e0d3;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,253,248,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-size: 1.1rem; font-weight: 800; letter-spacing: -.02em; }
.brand span { color: var(--gold); }
nav { display: flex; gap: 28px; font-weight: 650; color: #445149; }
nav a:hover { color: var(--green); }
.menu-toggle { display: none; border: 0; background: none; font-size: 1.6rem; }
.hero {
  background: radial-gradient(circle at 85% 20%, rgba(196,154,66,.16), transparent 30%), var(--cream);
  padding: 92px 0;
}
.hero-content { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: center; }
.eyebrow { color: var(--gold); font-size: .78rem; font-weight: 850; letter-spacing: .16em; margin: 0 0 12px; }
h1 { font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1.03; letter-spacing: -.055em; margin: 0 0 22px; max-width: 760px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -.035em; margin: 0 0 16px; }
h3 { margin: 0 0 8px; }
.hero-text { font-size: 1.15rem; color: var(--muted); max-width: 650px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 19px; border-radius: 999px;
  font-weight: 800; border: 1px solid transparent; transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { border-color: var(--green); color: var(--green); }
.btn-whatsapp { background: #25D366; color: #073b1b; }
.hero-card {
  min-height: 360px; border-radius: 32px; background: var(--green); color: white;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 35px; box-shadow: 0 24px 60px rgba(23,62,38,.18);
}
.hero-card .leaf { font-size: 7rem; margin-bottom: 20px; }
.hero-card p { margin: 0 0 5px; opacity: .8; }
.hero-card strong { font-size: 1.4rem; }
.section { padding: 90px 0; }
.section-soft { background: #f4f0e5; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading > p:last-child { color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { background: white; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: 0 12px 35px rgba(35,53,41,.06); }
.product-image { height: 230px; display: grid; place-items: center; font-size: 6rem; background: #e9f0df; }
.product-info { padding: 24px; }
.product-tag { color: var(--gold); text-transform: uppercase; font-size: .7rem; font-weight: 850; letter-spacing: .1em; }
.product-description { color: var(--muted); min-height: 76px; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 18px; margin-top: 18px; }
.price { font-size: 1.55rem; font-weight: 900; }
.order-btn { font-size: .86rem; }
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 22px; align-items: stretch; }
.about-grid > div:first-child { padding-right: 30px; }
.trust-box { background: white; padding: 28px; border: 1px solid var(--line); border-radius: 22px; }
.trust-box > div { font-size: 2rem; margin-bottom: 10px; }
.trust-box p, .about-grid > div:first-child p:not(.eyebrow) { color: var(--muted); }
.notice { background: #fff8df; border-top: 1px solid #ecdba7; border-bottom: 1px solid #ecdba7; padding: 25px 0; }
.notice h3 { font-size: 1rem; }
.notice p { color: #645a3d; margin: 0; font-size: .9rem; }
.contact-card { background: var(--green-dark); color: white; border-radius: 28px; padding: 42px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.contact-card p:not(.eyebrow) { opacity: .78; }
footer { background: #102619; color: rgba(255,255,255,.7); padding: 24px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; font-size: .9rem; }
.footer-inner a { color: white; font-weight: 700; }
@media (max-width: 820px) {
  .menu-toggle { display: block; }
  nav { display: none; position: absolute; left: 0; right: 0; top: 74px; padding: 20px 4%; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; }
  nav.open { display: flex; }
  .hero { padding: 65px 0; }
  .hero-content, .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 280px; }
  .contact-card { flex-direction: column; align-items: flex-start; }
}
