:root {
  --green-900: #1f3b1f;
  --green-800: #294c24;
  --green-700: #3f6128;
  --olive: #8a9146;
  --gold: #d9b65f;
  --cream: #fbf8ef;
  --cream-2: #f3ead7;
  --text: #24301f;
  --muted: #6f7564;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(31, 59, 31, 0.12);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 118px; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

@keyframes fadeRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(.4deg); }
}

@keyframes heroImageDrift {
  0%, 100% { transform: scale(1.03) translate3d(0, 0, 0); }
  50% { transform: scale(1.08) translate3d(-10px, -8px, 0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes softShine {
  from { transform: translateX(-130%) skewX(-16deg); }
  to { transform: translateX(130%) skewX(-16deg); }
}

@keyframes waveMove {
  0%, 35%, 100% { transform: translate3d(0, 0, 0) scaleY(1); }
  70% { transform: translate3d(-28px, 10px, 0) scaleY(1.05); }
}

@keyframes accentGrow {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes accentPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(217,182,95,0); }
  45% { box-shadow: 0 0 18px rgba(217,182,95,.34); }
}

@keyframes headingGlow {
  0%, 100% { box-shadow: 0 14px 34px rgba(31,59,31,.06); }
  45% { box-shadow: 0 18px 44px rgba(31,59,31,.10); }
}

@keyframes headingShine {
  from { transform: translateX(-120%); opacity: 0; }
  20% { opacity: 1; }
  to { transform: translateX(260%); opacity: 0; }
}

@keyframes headingFocus {
  0% { transform: translateY(0); box-shadow: 0 14px 34px rgba(31,59,31,.06); }
  35% { transform: translateY(-4px); box-shadow: 0 22px 52px rgba(31,59,31,.14); }
  100% { transform: translateY(0); box-shadow: 0 14px 34px rgba(31,59,31,.06); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(63, 97, 40, 0.12);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 112px; padding: 10px 0; gap: 22px; }
.brand { display: inline-flex; align-items: center; min-width: 330px; transform: translateY(6px); }
.brand img { width: 320px; height: auto; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; gap: 26px; font-size: 0.95rem; font-weight: 700; color: var(--green-900); }
.nav a { position: relative; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width .2s ease; }
.nav a:hover::after { width: 100%; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(31,59,31,.16); border-radius: 50%; background: rgba(255,255,255,.72); color: var(--green-900); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 999px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 59, 31, 0.20);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--green-800); box-shadow: 0 14px 30px rgba(31, 59, 31, 0.26); }
.btn-outline { background: transparent; color: var(--green-900); border: 2px solid rgba(31, 59, 31, 0.18); box-shadow: none; }
.btn-outline:hover { background: var(--white); }
.btn-small { min-height: 40px; padding: 9px 18px; font-size: .9rem; }

.hero { position: relative; overflow: hidden; padding: 82px 0 72px; background: radial-gradient(circle at 20% 20%, #fff7df 0, rgba(255,255,255,0) 32%), linear-gradient(135deg, var(--cream), #fffdf7); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 0.9fr; gap: 54px; align-items: center; }
.hero-copy .eyebrow { animation: fadeRise .65s .08s ease both; }
.eyebrow, .section-label { display: inline-block; color: var(--olive); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; margin-bottom: 14px; }
h1, h2, h3 { margin: 0; line-height: 1.12; color: var(--green-900); }
h1 { font-size: clamp(2.35rem, 5vw, 4.7rem); letter-spacing: -0.05em; }
.hero-title span { display: block; opacity: 0; transform: translateY(34px); animation: fadeRise .76s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-title span:nth-child(1) { animation-delay: .14s; }
.hero-title span:nth-child(2) { animation-delay: .24s; }
.hero-title span:nth-child(3) { animation-delay: .34s; }
.hero-title span:nth-child(4) { animation-delay: .44s; }
h2 { font-size: clamp(2rem, 3vw, 3.1rem); letter-spacing: -0.04em; }
h3 { font-size: 1.25rem; }
.hero-copy p { font-size: 1.16rem; color: var(--muted); max-width: 630px; margin: 24px 0; animation: fadeRise .75s .3s ease both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 22px; animation: fadeRise .75s .42s ease both; }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row span { padding: 8px 12px; border-radius: 999px; background: rgba(138,145,70,.13); color: var(--green-800); font-weight: 700; font-size: .9rem; animation: fadeRise .65s ease both; }
.trust-row span:nth-child(1) { animation-delay: .54s; }
.trust-row span:nth-child(2) { animation-delay: .62s; }
.trust-row span:nth-child(3) { animation-delay: .7s; }
.hero-card { position: relative; border-radius: 36px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); padding: 12px; transform: rotate(1deg); animation: fadeIn .8s .12s ease both, heroFloat 7s 1.1s ease-in-out infinite; }
.hero-card::before { content: ''; position: absolute; inset: -1px; z-index: 1; pointer-events: none; background: linear-gradient(120deg, rgba(255,255,255,.34), rgba(255,255,255,0) 34%, rgba(217,182,95,.16) 100%); }
.hero-card::after { content: ''; position: absolute; top: -25%; bottom: -25%; left: 0; z-index: 2; width: 42%; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.28), rgba(255,255,255,0)); animation: softShine 8s 1.8s ease-in-out infinite; }
.hero-card img { width: 100%; border-radius: 28px; aspect-ratio: 1/1; object-fit: cover; transform: scale(1.03); animation: heroImageDrift 12s ease-in-out infinite; }
.wave-separator { height: 150px; margin-top: -1px; overflow: hidden; background: var(--cream); }
.wave-separator svg { display: block; width: calc(100% + 56px); height: 100%; margin-left: -28px; fill: var(--white); transform-origin: center bottom; animation: waveMove 4s ease-in-out infinite; }

.section { padding: 84px 0; }
.split { display: grid; grid-template-columns: 1fr 0.9fr; gap: 54px; align-items: center; }
.split.reverse { grid-template-columns: .9fr 1fr; }
.about-section { position: relative; background: var(--white); }
.about-section .container { position: relative; z-index: 1; }
.about-section p, .why-copy p, .why-list p, .client-type-card p, .section-heading p, .contact-section p { color: var(--muted); font-size: 1.05rem; }
.about-image { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--cream); }
.about-image::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; border: 1px solid rgba(255,255,255,.64); border-radius: inherit; }
.about-image::after { content: ''; position: absolute; top: -20%; bottom: -20%; left: -45%; z-index: 2; width: 34%; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.28), rgba(255,255,255,0)); transform: skewX(-14deg); transition: left .55s ease; }
.about-image:hover::after { left: 115%; }
.about-image img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .42s ease, filter .42s ease; }
.about-image:hover img { transform: scale(1.035); filter: saturate(1.04) contrast(1.03); }

.highlight-band { padding: 32px 0; background: var(--green-900); color: var(--white); }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.highlight-grid div { padding: 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(255,255,255,.06); }
.highlight-grid strong { display: block; color: #fff7d9; font-size: 1.15rem; margin-bottom: 4px; }
.highlight-grid span { color: rgba(255,255,255,.8); font-size: .94rem; }

.why-section { background: var(--white); padding-bottom: 54px; }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.why-copy { position: sticky; top: 130px; }
.why-copy p { margin: 22px 0 28px; max-width: 520px; }
.why-copy .btn-outline { background: var(--cream); }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-list article { min-height: 230px; padding: 26px; border-radius: 24px; background: linear-gradient(180deg, var(--cream), #fffdf7); border: 1px solid rgba(31,59,31,.10); box-shadow: 0 12px 30px rgba(31,59,31,.07); transition: transform .2s ease, box-shadow .2s ease; }
.why-list article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-list span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-bottom: 26px; border-radius: 50%; background: var(--green-900); color: var(--white); font-weight: 900; font-size: .82rem; }
.why-list h3 { margin-bottom: 10px; }
.why-list p { margin: 0; font-size: .98rem; }
.why-note { grid-column: 1 / -1; padding: 18px 22px; border-left: 4px solid var(--gold); border-radius: 0 18px 18px 0; background: rgba(251,248,239,.86); color: var(--green-800); font-weight: 800; line-height: 1.45; box-shadow: 0 10px 26px rgba(31,59,31,.06); }

.products-section { padding-top: 58px; background: var(--cream); }
.products-section .section-heading { position: relative; max-width: 880px; padding: 10px 0 12px 28px; border-radius: 0; background: transparent; box-shadow: none; overflow: hidden; animation: fadeRise .65s ease both; transition: transform .22s ease; }
.products-section .section-heading::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; border-radius: 999px; background: var(--gold); transform-origin: top; animation: accentGrow .72s .18s ease both, accentPulse 3.2s 1s ease-in-out infinite; }
.products-section .section-heading::after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 34%; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,0), rgba(217,182,95,.10), rgba(255,255,255,0)); animation: headingShine 5.8s 1.4s ease-in-out infinite; }
.products-section .section-heading > * { position: relative; z-index: 1; }
.products-section .section-heading:hover { transform: translateY(-2px); }
.products-section .section-heading.is-highlighted { animation: headingFocus .95s ease both; }
.products-section .section-heading.is-highlighted::after { animation: headingShine 1.1s ease-in-out 2; }
.section-heading { max-width: 720px; margin-bottom: 36px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { position: relative; display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 34px rgba(31,59,31,.08); border: 1px solid rgba(31,59,31,.08); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; z-index: 1; height: 4px; background: linear-gradient(90deg, var(--gold), var(--green-700)); opacity: 0; transition: opacity .22s ease; }
.product-card:hover { transform: translateY(-5px); border-color: rgba(63,97,40,.18); box-shadow: 0 20px 48px rgba(31,59,31,.14); }
.product-card:hover::before { opacity: 1; }
.product-card img { width: 100%; aspect-ratio: 1.08/1; object-fit: cover; transition: transform .35s ease; }
.product-card:hover img { transform: scale(1.035); }
.product-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 22px; }
.product-body p { color: var(--muted); margin: 12px 0 0; font-size: .98rem; line-height: 1.58; }
.product-attributes { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.product-attributes span { display: inline-flex; align-items: center; min-height: 30px; padding: 6px 10px; border-radius: 999px; background: rgba(138,145,70,.12); color: var(--green-800); font-size: .78rem; font-weight: 800; line-height: 1.1; }
.product-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; margin-top: auto; padding: 8px 14px; border-radius: 999px; background: rgba(31,59,31,.07); color: var(--green-900); font-weight: 900; font-size: .86rem; transition: background .2s ease, transform .2s ease; }
.product-attributes + .product-cta { margin-top: 20px; }
.product-cta:hover { background: rgba(31,59,31,.15); transform: translateY(-1px); }
.tag { display: inline-flex; padding: 6px 11px; border-radius: 999px; background: rgba(217,182,95,.22); color: var(--green-800); font-size: .8rem; font-weight: 900; margin-bottom: 12px; }

.clients-section { background: linear-gradient(135deg, #fff, #f8f2e4); }
.client-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.client-type-card { min-height: 210px; padding: 26px; border-radius: 22px; background: rgba(255,255,255,.82); border: 1px solid rgba(31,59,31,.10); box-shadow: 0 12px 30px rgba(31,59,31,.07); }
.client-type-card span { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; margin-bottom: 24px; border-radius: 50%; background: rgba(217,182,95,.22); color: var(--green-800); font-weight: 900; font-size: .82rem; }
.client-type-card h3 { margin-bottom: 10px; }
.client-type-card p { margin: 0; font-size: .98rem; }

.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 44px; align-items: start; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.contact-card { background: var(--cream); padding: 34px; border-radius: 30px; border: 1px solid rgba(31,59,31,.10); box-shadow: var(--shadow); }
.contact-card .role { margin-top: 6px; color: var(--olive); font-weight: 800; }
.contact-card a { display: block; color: var(--green-900); font-weight: 900; margin: 12px 0; word-break: break-word; }
.contact-card small { display: inline-block; margin-top: 12px; color: var(--muted); }
.business-data { display: grid; gap: 8px; margin: 22px 0; }
.business-data span { display: block; padding: 10px 12px; border-radius: 14px; background: rgba(255,255,255,.58); color: var(--green-900); font-weight: 800; line-height: 1.35; }

.footer { padding: 54px 0 28px; background: var(--green-900); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr .75fr; gap: 34px; align-items: start; }
.footer-brand img { width: 250px; max-width: 100%; margin-bottom: 18px; padding: 8px 12px; border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.72); margin: 0; }
.footer strong { display: block; margin-bottom: 12px; color: #fff7d9; }
.footer-links a, .footer-info span { display: block; color: rgba(255,255,255,.74); margin: 9px 0; line-height: 1.4; overflow-wrap: anywhere; }
.footer-links a { transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: var(--white); transform: translateX(2px); }
.footer-contact-item { display: flex !important; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.76); margin: 10px 0; line-height: 1.35; overflow-wrap: anywhere; }
.footer-contact-item svg { flex: 0 0 19px; width: 19px; height: 19px; margin-top: 1px; fill: none; stroke: #fff7d9; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact-item span { min-width: 0; }
.footer-links a.footer-contact-item:hover { color: var(--white); transform: translateX(2px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.62); font-size: .92rem; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: #1f7a39;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); background: #208441; box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.whatsapp-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.18); font-size: .74rem; font-weight: 900; }
.whatsapp-label { display: flex; flex-direction: column; line-height: 1.05; }
.whatsapp-label strong { font-size: .95rem; }
.whatsapp-label small { margin-top: 3px; color: rgba(255,255,255,.76); font-size: .74rem; font-weight: 800; }

@media (max-width: 920px) {
  .nav-wrap { position: relative; }
  .menu-toggle { display: inline-block; order: 3; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(31,59,31,.12);
    border-radius: 22px;
    background: rgba(251,248,239,.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a { padding: 13px 10px; }
  .nav a::after { display: none; }
  .hero-grid, .split, .split.reverse, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-copy { position: static; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .client-type-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 54px; padding-bottom: 62px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1140px); }
  .nav-wrap { min-height: 92px; padding: 8px 0; }
  .brand { min-width: 0; transform: translateY(3px); }
  .brand img { width: 220px; }
  .btn-small { display: none; }
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .highlight-grid, .why-list, .product-grid, .client-type-grid { grid-template-columns: 1fr; }
  .why-note { grid-column: auto; }
  .why-list article { min-height: auto; }
  .client-type-card { min-height: auto; }
  .section { padding: 62px 0; }
  .hero-card { transform: none; }
  .wave-separator { height: 104px; }
  .wave-separator svg { width: calc(100% + 42px); margin-left: -21px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .whatsapp-float { right: 14px; bottom: 14px; min-height: 52px; padding-right: 13px; }
  .whatsapp-icon { width: 34px; height: 34px; }
  .whatsapp-label small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
