:root {
  --forest: #123d2d;
  --forest-deep: #09251a;
  --leaf: #2f7a4f;
  --sprout: #cce76b;
  --cream: #f4f1e8;
  --sand: #e5dccb;
  --white: #fff;
  --ink: #15201a;
  --muted: #667269;
  --line: #dce2dc;
  --max: 1380px;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(11, 42, 29, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: #fff; font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; object-fit: cover; }
picture { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 { font-family: var(--display); font-weight: 500; }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 12px 16px; color: #fff; background: var(--forest-deep); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 30; min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 0 max(24px, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid rgba(18, 61, 45, .09); background: rgba(255, 255, 255, .94); backdrop-filter: blur(18px); }
.brand { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; }
.brand img { width: 56px; height: 56px; border-radius: 50%; object-fit: contain; background: #fff; box-shadow: 0 0 0 1px rgba(18, 61, 45, .1); }
.brand span { display: flex; flex-direction: column; }
.brand b { color: var(--forest); font-size: 16px; line-height: 1.2; }
.brand small { margin-top: 3px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); font-size: 13px; font-weight: 750; }
nav a { position: relative; padding: 33px 0; }
nav a::after { content: ""; position: absolute; right: 0; bottom: 24px; left: 0; height: 2px; background: var(--leaf); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
nav a:hover::after, nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--forest); font-size: 12px; font-weight: 800; cursor: pointer; }
.menu { display: none; width: 44px; height: 44px; padding: 11px; border: 0; border-radius: 50%; background: var(--forest); cursor: pointer; }
.menu span { display: block; height: 2px; margin: 4px 0; background: #fff; transition: transform .2s, opacity .2s; }
.menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; min-height: min(900px, calc(100svh - 86px)); display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: var(--forest-deep); }
.hero-media, .hero-slide, .hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { opacity: 0; transform: scale(1.035); transition: opacity .9s ease, transform 7s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide img { object-position: center 42%; }
.hero-slide:nth-child(2) img { object-position: center 48%; }
.hero-slide:nth-child(3) img { object-position: center 40%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 29, 19, .9) 0%, rgba(6, 29, 19, .64) 43%, rgba(6, 29, 19, .1) 78%), linear-gradient(0deg, rgba(5, 26, 17, .64) 0%, transparent 55%); }
.hero-copy { position: relative; z-index: 2; width: min(930px, calc(100% - 48px)); margin-right: auto; margin-left: max(24px, calc((100vw - var(--max)) / 2)); padding: 90px 0 190px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--leaf); font-size: 11px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.hero .eyebrow, .dark .eyebrow, .cta .eyebrow, .full-image .eyebrow { color: var(--sprout); }
.hero h1 { max-width: 860px; margin: 22px 0 22px; font-size: clamp(58px, 7.2vw, 112px); line-height: .89; letter-spacing: -.055em; }
.hero p { max-width: 660px; margin: 0; color: rgba(255, 255, 255, .84); font-size: clamp(16px, 1.45vw, 20px); line-height: 1.65; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 16px; padding: 0 21px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 850; transition: transform .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.primary { color: var(--forest-deep); background: var(--sprout); }
.primary:hover { background: #dbf28d; }
.ghost { border-color: rgba(255, 255, 255, .5); color: #fff; background: rgba(255, 255, 255, .03); }
.ghost:hover { background: rgba(255, 255, 255, .12); }
.darkbtn { color: #fff; background: var(--forest); }
.hero-controls { position: absolute; left: 0; bottom: 122px; display: flex; align-items: center; gap: 12px; }
.hero-arrow { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: transparent; cursor: pointer; }
.hero-dots { display: flex; gap: 7px; }
.hero-dot { width: 24px; height: 3px; padding: 0; border: 0; border-radius: 3px; background: rgba(255, 255, 255, .35); cursor: pointer; }
.hero-dot[aria-selected="true"] { background: var(--sprout); }
.hero-stats { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding: 22px max(24px, calc((100vw - var(--max)) / 2)); background: rgba(7, 34, 23, .82); backdrop-filter: blur(14px); }
.hero-stats div { display: flex; flex-direction: column; padding: 0 20px; border-left: 1px solid rgba(255, 255, 255, .2); }
.hero-stats b { font-family: var(--display); font-size: 27px; font-weight: 500; }
.hero-stats span { margin-top: 3px; color: rgba(255, 255, 255, .64); font-size: 11px; }

.section { width: min(100%, var(--max)); margin: 0 auto; padding: 120px 24px; }
.section-head h2, .people h2, .recognition h2, .cta h2, .split h2, .full-image h2 { max-width: 900px; margin: 18px 0 0; font-size: clamp(42px, 5vw, 74px); line-height: .98; letter-spacing: -.045em; }
.intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(45px, 8vw, 130px); align-items: end; }
.lead { margin: 0 0 4px; color: #4c5b52; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.72; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding-top: 0; }
.feature-card { position: relative; min-height: 700px; overflow: hidden; border-radius: 22px; background: var(--forest-deep); }
.feature-card picture, .feature-card img { width: 100%; height: 100%; }
.feature-card img { transition: transform .65s ease; }
.feature-card:hover img { transform: scale(1.035); }
.feature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6, 26, 17, .93), rgba(6, 26, 17, .05) 70%); }
.card-overlay { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 40px; color: #fff; }
.card-overlay > span { color: var(--sprout); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.card-overlay h3 { margin: 12px 0; font-family: var(--display); font-size: clamp(42px, 4vw, 62px); font-weight: 500; letter-spacing: -.04em; }
.card-overlay p { max-width: 530px; margin: 0; color: rgba(255,255,255,.72); line-height: 1.65; }
.card-overlay b { display: block; margin-top: 24px; font-size: 13px; }

.dark { width: 100%; max-width: none; padding-right: max(24px, calc((100vw - var(--max)) / 2)); padding-left: max(24px, calc((100vw - var(--max)) / 2)); color: #fff; background: var(--forest-deep); }
.light h2 { max-width: 820px; }
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 72px; border-top: 1px solid rgba(255,255,255,.24); }
.cap-grid > div { min-height: 270px; padding: 28px 28px 10px 0; border-right: 1px solid rgba(255,255,255,.18); }
.cap-grid > div + div { padding-left: 28px; }
.cap-grid .cap-number { display: block; margin-bottom: 52px; color: var(--sprout); font-size: 11px; }
.cap-grid b { font-family: var(--display); font-size: 26px; font-weight: 500; }
.cap-grid p { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.68; }
.row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.text-link { flex: 0 0 auto; padding-bottom: 8px; color: var(--forest); font-size: 13px; font-weight: 850; border-bottom: 1px solid var(--forest); }
.crop-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.crop-strip > a { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.crop-strip > a:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.crop-visual { height: 275px; overflow: hidden; background: var(--cream); }
.crop-visual img { height: 100%; object-fit: cover; }
.crop-strip small, .crop-strip b, .crop-strip span { display: block; margin-right: 20px; margin-left: 20px; }
.crop-strip small { margin-top: 20px; color: var(--leaf); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.crop-strip b { margin-top: 6px; font-family: var(--display); font-size: 28px; font-weight: 500; }
.crop-strip span { margin-top: 4px; margin-bottom: 22px; color: var(--muted); font-size: 12px; }

.people { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(44px, 6vw, 90px); align-items: center; }
.people-copy p { max-width: 560px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.people-grid picture:nth-child(2) { transform: translateY(42px); }
.people-grid picture, .people-grid img { height: 500px; }
.people-grid picture { overflow: hidden; border-radius: 130px 130px 14px 14px; }
.recognition { width: 100%; max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 130px); padding-right: max(24px, calc((100vw - var(--max)) / 2)); padding-left: max(24px, calc((100vw - var(--max)) / 2)); background: var(--cream); }
.timeline { border-top: 1px solid var(--forest); }
.timeline div { display: grid; grid-template-columns: 110px 1fr; align-items: center; padding: 24px 0; border-bottom: 1px solid #d6d3c9; }
.timeline b { font-family: var(--display); color: var(--forest); font-size: 28px; font-weight: 500; }
.timeline p { margin: 0; color: #4e5a53; }
.cta { position: relative; width: 100%; max-width: none; min-height: 620px; display: flex; align-items: center; overflow: hidden; padding-right: max(24px, calc((100vw - var(--max)) / 2)); padding-left: max(24px, calc((100vw - var(--max)) / 2)); color: #fff; }
.cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 26, 17, .88), rgba(5, 26, 17, .2)); }
.cta > picture, .cta > picture img, .cta > img { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta > div { position: relative; z-index: 2; max-width: 820px; }

.page-hero, .contact-hero { min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--cream); }
.page-hero > div, .contact-hero > div { align-self: center; padding: 80px clamp(24px, 5vw, 80px) 80px max(24px, calc((100vw - var(--max)) / 2)); }
.page-hero > img, .contact-hero > img, .page-hero > picture, .contact-hero > picture { min-width: 0; height: 100%; min-height: 720px; }
.page-hero > picture img, .contact-hero > picture img { height: 100%; }
.page-hero h1, .contact-hero h1 { margin: 20px 0 22px; font-size: clamp(55px, 6vw, 94px); line-height: .92; letter-spacing: -.055em; }
.page-hero p, .contact-hero p { max-width: 650px; color: #536057; font-size: 17px; line-height: 1.7; }
.page-hero .btn { margin-top: 18px; }
.page-hero.compact { min-height: 610px; }
.page-hero.compact > img, .page-hero.compact > picture { min-height: 610px; }
.filterbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.filterbar input { width: min(540px, 100%); padding: 16px 19px; border: 1px solid var(--line); border-radius: 999px; background: #fff; outline: 0; }
.filterbar input:focus { border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(47, 122, 79, .12); }
.filterbar span { color: var(--muted); font-size: 13px; }
.seed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seed-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.seed-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.seed-img { position: relative; height: 310px; overflow: hidden; background: var(--cream); }
.seed-img img { height: 100%; object-fit: cover; }
.seed-img span { position: absolute; top: 14px; left: 14px; padding: 8px 11px; border-radius: 999px; color: #fff; background: var(--forest); font-size: 10px; font-weight: 850; }
.seed-copy { padding: 22px; }
.seed-copy small { color: var(--leaf); }
.seed-copy h3 { margin: 5px 0 10px; font-family: var(--display); font-size: 31px; font-weight: 500; }
.seed-copy p { min-height: 65px; color: var(--muted); font-size: 14px; line-height: 1.58; }
.detailBtn { padding: 0; border: 0; color: var(--forest); background: transparent; font-size: 13px; font-weight: 850; cursor: pointer; }
.seed-detail { display: none; }
.modal { position: fixed; inset: 0; z-index: 60; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(6, 28, 18, .78); backdrop-filter: blur(8px); }
.modal.open { display: flex; }
.modal-panel { position: relative; width: min(820px, 100%); max-height: 90vh; overflow: auto; padding: 38px; border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.modal-close { position: absolute; z-index: 2; top: 14px; right: 16px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--cream); font-size: 24px; cursor: pointer; }
.modal-grid { display: grid; grid-template-columns: 260px 1fr; gap: 34px; }
.modal-grid img { height: 260px; border-radius: 12px; background: var(--cream); object-fit: cover; }
.modal-grid h2 { margin: 10px 0 2px; font-size: 46px; }
.spec-list { margin-top: 18px; }
.spec-list div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.spec-list span { color: var(--muted); font-size: 12px; }
.spec-list b { font-size: 13px; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 65px; border-top: 1px solid var(--line); }
.process div { padding: 28px; border-right: 1px solid var(--line); }
.process span { color: var(--leaf); font-size: 12px; font-weight: 850; }
.process h3 { font-family: var(--display); font-size: 25px; font-weight: 500; }
.process p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.full-image { position: relative; height: 700px; color: #fff; }
.full-image img, .full-image picture { width: 100%; height: 100%; }
.full-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 27, 17, .85), rgba(5, 27, 17, .06)); }
.full-image > div { position: absolute; z-index: 2; top: 50%; left: max(24px, calc((100vw - var(--max)) / 2)); max-width: 780px; transform: translateY(-50%); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 7vw, 100px); align-items: center; }
.list div { display: flex; justify-content: space-between; gap: 30px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.list span { max-width: 350px; color: var(--muted); }
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 300px 300px; gap: 10px; }
.gallery img, .gallery picture { height: 100%; }
.gallery > :first-child { grid-row: 1 / 3; }
.gallery > :last-child { grid-column: 2 / 4; }
.founder img { height: 620px; border-radius: 20px; background: var(--cream); object-fit: contain; }
.founder p, .darksplit p { color: var(--muted); font-size: 17px; line-height: 1.76; }
.darksplit p { color: rgba(255,255,255,.7); }
.darksplit img { height: 520px; border-radius: 18px; }
.leader-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.leader-grid div { padding: 34px; border-radius: 16px; background: var(--cream); }
.leader-grid b, .leader-grid span { display: block; }
.leader-grid b { font-family: var(--display); font-size: 28px; font-weight: 500; }
.leader-grid span { margin: 7px 0 18px; color: var(--leaf); font-size: 12px; font-weight: 800; }
.leader-grid p { color: var(--muted); line-height: 1.65; }
.recognition-images { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 50px; }
.recognition-images figure { margin: 0; }
.recognition-images img { height: 470px; border-radius: 16px; }
.recognition-images figcaption { padding-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(45px, 8vw, 100px); }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { font-size: 12px; font-weight: 800; }
input, select, textarea { display: block; width: 100%; margin-top: 8px; padding: 14px; border: 1px solid var(--line); border-radius: 9px; color: var(--ink); background: #fff; }
input:focus, select:focus, textarea:focus { border-color: var(--leaf); outline: 3px solid rgba(47,122,79,.12); }
label:has(textarea), form .btn, #formNote, .form-status { grid-column: 1 / 3; }
form .btn { justify-self: start; border: 0; cursor: pointer; }
#formNote, .form-status { margin: 0; color: var(--muted); font-size: 12px; }
.form-status.success { color: var(--leaf); }
.form-status.error { color: #a62929; }
.contact-grid aside { padding: 34px; border-radius: 18px; background: var(--cream); }
.contact-grid aside div { padding: 18px 0; border-bottom: 1px solid #d7d4ca; }
.contact-grid aside small, .contact-grid aside b { display: block; }
.contact-grid aside small { margin-bottom: 7px; color: var(--muted); }
.contact-grid aside b { line-height: 1.55; }

.whatsapp { position: fixed; z-index: 25; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 9px; padding: 8px 14px 8px 8px; border-radius: 999px; color: #fff; background: #1f9d55; box-shadow: 0 12px 36px rgba(5, 38, 20, .25); font-size: 12px; }
.whatsapp span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.18); font-size: 10px; font-weight: 900; }
footer { padding: 74px max(24px, calc((100vw - var(--max)) / 2)) 24px; color: #fff; background: #071d14; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 45px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 11px; }
.footer-grid p, .footer-grid a { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.7; }
.footer-grid a:hover { color: #fff; }
.footer-grid > div > b { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.footer-mark { display: flex !important; align-items: center; gap: 12px; color: #fff !important; font-family: var(--display); font-size: 24px !important; }
.footer-mark img { width: 54px; height: 54px; border-radius: 50%; object-fit: contain; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.42); font-size: 11px; }
.footer-brand { font-family: var(--display); font-size: 50px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { min-height: 74px; }
  .brand img { width: 48px; height: 48px; }
  nav { position: fixed; top: 74px; right: 0; bottom: 0; width: min(390px, 100%); display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 24px; background: #fff; box-shadow: -18px 30px 60px rgba(8,38,24,.15); transform: translateX(105%); transition: transform .25s ease; }
  nav.open { transform: translateX(0); }
  nav a { padding: 20px 4px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 27px; font-weight: 500; }
  nav a::after { display: none; }
  .menu { display: block; }
  .hero { min-height: 860px; }
  .hero-copy { padding-bottom: 230px; }
  .hero-controls { bottom: 155px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .intro, .people, .recognition, .split, .contact-grid { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .feature-card { min-height: 610px; }
  .cap-grid, .process { grid-template-columns: 1fr 1fr; }
  .cap-grid > div:nth-child(2) { border-right: 0; }
  .crop-strip { grid-template-columns: 1fr 1fr; }
  .people { gap: 75px; }
  .page-hero, .contact-hero { grid-template-columns: 1fr; }
  .page-hero > img, .contact-hero > img, .page-hero > picture, .contact-hero > picture { min-height: 460px; max-height: 520px; }
  .seed-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery > :first-child, .gallery > :last-child { grid-row: auto; grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header { padding: 0 15px; }
  .brand small { display: none; }
  .brand b { font-size: 14px; }
  .lang { display: none; }
  .hero { min-height: 810px; }
  .hero-slide img { object-position: 58% center; }
  .hero-slide:first-child img { object-position: 64% center; }
  .hero-copy { width: calc(100% - 32px); margin-left: 16px; padding: 60px 0 270px; }
  .hero h1 { font-size: clamp(51px, 16vw, 72px); }
  .hero p { max-width: 90%; font-size: 15px; }
  .hero-controls { bottom: 188px; }
  .hero-stats { padding: 18px 16px; }
  .hero-stats div { padding: 0 10px; }
  .hero-stats b { font-size: 22px; }
  .section { padding: 82px 17px; }
  .section-head h2, .people h2, .recognition h2, .cta h2, .split h2, .full-image h2 { font-size: 43px; }
  .intro { gap: 25px; }
  .duo { padding-top: 0; }
  .feature-card { min-height: 520px; border-radius: 14px; }
  .card-overlay { padding: 25px; }
  .cap-grid, .process, .crop-strip, .seed-grid, .leader-grid, .recognition-images, .footer-grid { grid-template-columns: 1fr; }
  .cap-grid > div, .cap-grid > div + div { min-height: auto; padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .cap-grid .cap-number { margin-bottom: 26px; }
  .row { display: block; }
  .text-link { display: inline-block; margin-top: 24px; }
  .crop-visual { height: 300px; }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .people-grid picture:nth-child(2) { transform: translateY(25px); }
  .people-grid picture, .people-grid img { height: 330px; }
  .people-grid picture:last-child { display: none; }
  .timeline div { grid-template-columns: 90px 1fr; }
  .cta { min-height: 590px; }
  .cta::after { background: linear-gradient(90deg, rgba(5,26,17,.86), rgba(5,26,17,.36)); }
  .page-hero > div, .contact-hero > div { padding: 60px 17px; }
  .page-hero h1, .contact-hero h1 { font-size: 52px; }
  .page-hero > img, .contact-hero > img, .page-hero > picture, .contact-hero > picture { min-height: 400px; }
  .filterbar { display: block; }
  .filterbar span { display: block; margin-top: 12px; }
  .seed-img { height: 290px; }
  .modal-panel { padding: 24px; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-grid img { height: 260px; }
  .spec-list div { grid-template-columns: 1fr; gap: 5px; }
  .process div { border-right: 0; border-bottom: 1px solid var(--line); }
  .full-image { height: 630px; }
  .full-image > div { right: 18px; left: 18px; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery img, .gallery picture { height: 330px; }
  .recognition-images img { height: 360px; }
  form { grid-template-columns: 1fr; }
  label:has(textarea), form .btn, #formNote, .form-status { grid-column: 1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 6px; }
  .whatsapp b { display: none; }
  .whatsapp { padding-right: 8px; }
}

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