:root {
  --green: #244b2d;
  --green-deep: #17371f;
  --leaf: #58743f;
  --gold: #b88a27;
  --cream: #f7f1e5;
  --paper: #fffdf8;
  --ink: #1f241f;
  --muted: #64695f;
  --line: rgba(36, 75, 45, .16);
  --shadow: 0 18px 48px rgba(31, 36, 31, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 86px;
  padding: 10px clamp(20px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 248, .95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 150px; height: 64px; object-fit: contain; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { text-decoration: none; font-weight: 600; font-size: .94rem; }
nav a:not(.nav-cta):hover { color: var(--gold); }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: white;
  background: var(--green);
}
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 86px));
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(16, 37, 21, .88) 0%, rgba(16, 37, 21, .68) 42%, rgba(16, 37, 21, .05) 78%); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(660px, 90%);
  margin-left: clamp(24px, 8vw, 140px);
  padding: 72px 0;
  color: white;
}
.eyebrow { margin: 0 0 10px; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700; }
.eyebrow.green { color: var(--leaf); }
.eyebrow.gold { color: #e4c66f; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(3rem, 6vw, 5.7rem); margin-bottom: 24px; letter-spacing: -.04em; }
h1 em { color: #f1d483; font-weight: 600; }
.hero-content > p:not(.eyebrow) { max-width: 590px; font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 12px 22px; border-radius: 999px; text-decoration: none; font-weight: 700; }
.button.primary { background: #e0b849; color: var(--green-deep); }
.button.secondary { border: 1px solid rgba(255,255,255,.65); color: white; background: rgba(255,255,255,.08); }
.button.light { background: white; color: var(--green-deep); }
.button:hover { transform: translateY(-2px); }

.intro {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 28px 46px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: end;
}
.intro h2, .story h2, .trade h2 { font-size: clamp(2.3rem, 4.5vw, 4rem); margin-bottom: 0; color: var(--green-deep); }
.intro > p { margin: 0; color: var(--muted); font-size: 1.08rem; }

.product-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.product-card { background: white; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: 0 9px 30px rgba(31,36,31,.06); }
.product-card.feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr .85fr; }
.product-card img, .olive-visual { width: 100%; height: 390px; object-fit: cover; }
.product-card.feature img { height: 100%; min-height: 480px; }
.product-copy { padding: clamp(26px, 4vw, 50px); }
.product-copy > span { color: var(--gold); text-transform: uppercase; letter-spacing: .15em; font-size: .75rem; font-weight: 700; }
.product-copy h3 { margin: 10px 0 16px; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--green-deep); }
.product-copy p { color: var(--muted); }
.product-copy a { display: inline-block; margin-top: 14px; color: var(--green); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.olive-visual { background: linear-gradient(rgba(21, 52, 28, .15), rgba(21, 52, 28, .15)), url("assets/olizana-mesa.jpg") center 55% / cover; }

.story { display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); }
.story-image-wrap { min-height: 650px; }
.story-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.story-copy { align-self: center; padding: clamp(52px, 8vw, 110px); }
.story-copy p { color: var(--muted); font-size: 1.06rem; }
.story-copy ul { list-style: none; padding: 0; margin: 30px 0 0; }
.story-copy li { padding: 13px 0 13px 30px; border-bottom: 1px solid var(--line); position: relative; }
.story-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.trade {
  margin: clamp(24px, 6vw, 90px);
  padding: clamp(38px, 6vw, 80px);
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: white;
  background: var(--green-deep);
}
.trade h2 { color: white; margin-bottom: 18px; }
.trade p { max-width: 680px; margin-bottom: 0; color: rgba(255,255,255,.78); }
.trade .button { flex: 0 0 auto; }

footer {
  position: relative;
  padding: 70px clamp(24px, 7vw, 120px) 34px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  background: #101d14;
  color: rgba(255,255,255,.78);
}
.footer-brand img { width: 170px; background: white; border-radius: 12px; padding: 6px; }
footer h2 { color: white; font-family: "DM Sans", sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .15em; }
footer a { display: block; margin: 7px 0; text-decoration: none; }
footer a:hover { color: #e4c66f; }
.copyright { grid-column: 1 / -1; padding-top: 28px; margin: 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; }

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 999px;
  color: white;
  background: #168a48;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.whatsapp-float span { font-size: 1.35rem; }

@media (max-width: 820px) {
  .site-header { min-height: 74px; }
  .brand img { width: 124px; height: 52px; }
  .menu-button { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; background: white; color: var(--green); font: inherit; font-weight: 700; }
  nav { display: none; position: absolute; top: 73px; left: 0; right: 0; padding: 24px; flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  nav.open { display: flex; }
  nav a { padding: 7px 0; }
  .nav-cta { text-align: center; padding: 12px 18px; }
  .hero { min-height: 700px; }
  .hero-image { object-position: 62% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(16,37,21,.4), rgba(16,37,21,.91) 70%); }
  .hero-content { align-self: end; margin: 0; width: 100%; padding: 70px 24px 56px; }
  h1 { font-size: clamp(2.75rem, 12vw, 4.4rem); }
  .intro { grid-template-columns: 1fr; gap: 22px; padding-top: 74px; }
  .product-grid { grid-template-columns: 1fr; padding-bottom: 74px; }
  .product-card.feature { grid-column: auto; grid-template-columns: 1fr; }
  .product-card.feature img, .product-card img, .olive-visual { min-height: 0; height: 360px; }
  .story { grid-template-columns: 1fr; }
  .story-image-wrap { min-height: 470px; }
  .trade { flex-direction: column; align-items: flex-start; }
  footer { grid-template-columns: 1fr; gap: 28px; }
  .copyright { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero-actions .button { width: 100%; }
  .product-card.feature img, .product-card img, .olive-visual { height: 290px; }
  .trade { margin: 18px; border-radius: 22px; }
  .trade .button { width: 100%; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 13px; }
  .whatsapp-float strong { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
