/* ==========================================================================
   AGRONOMI GROUP — Agri-business theme
   Leaf green · deep navy · harvest orange. Photo-led, clean, accessible.
   ========================================================================== */

:root {
  --primary: #2E7D32;
  --primary-600: #276B2B;
  --primary-700: #1F5723;
  --primary-50: #EEF6EE;
  --primary-100: #D7EBD8;
  --lime: #9CCC65;

  --accent: #F28C1B;
  --accent-600: #E07A0A;
  --accent-50: #FEF3E6;

  --navy: #0F2233;
  --navy-2: #173349;
  --navy-3: #21435C;

  --ink: #14212B;
  --body: #4A5763;
  --muted: #6B7785;
  --line: #E3E8E1;
  --bg: #FFFFFF;
  --bg-soft: #F5F8F2;

  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1240px;
  --gutter: clamp(16px, 4vw, 32px);
  --section: clamp(72px, 9vw, 120px);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(15, 34, 51, .06);
  --shadow: 0 14px 40px -16px rgba(15, 34, 51, .22);
  --shadow-lg: 0 30px 70px -24px rgba(15, 34, 51, .35);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 84px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; background: var(--bg); color: var(--body);
  font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--primary); color: #fff; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 16px; top: -80px; z-index: 200; background: var(--navy); color: #fff; padding: 12px 18px; border-radius: var(--r-sm); }
.skip-link:focus { top: 16px; }
.icon { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .8125rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--primary);
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 3px; background: var(--accent); }
.eyebrow--light { color: var(--lime); }
.h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); margin-top: 14px; }
.lead { font-size: 1.125rem; color: var(--body); margin-top: 16px; }

.section-head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 720px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .eyebrow::after { content: ""; width: 28px; height: 3px; border-radius: 3px; background: var(--accent); }
.section-head--split { max-width: none; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px 64px; align-items: end; }
.section-head--split .lead { margin: 0; }
.section-head--spaced { margin-top: var(--section); }
@media (max-width: 860px) { .section-head--split { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: .975rem; line-height: 1.2;
  border: 2px solid transparent; white-space: nowrap;
  transition: background-color .25s, color .25s, border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.btn .icon { width: 1.15em; height: 1.15em; transition: transform .25s var(--ease); }
.btn:hover .icon:last-child { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--lg { min-height: 56px; padding: 14px 30px; font-size: 1.025rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px -8px rgba(46,125,50,.6); }
.btn--primary:hover { background: var(--primary-600); }
.btn--accent { background: var(--accent); color: var(--navy); box-shadow: 0 10px 24px -10px rgba(242,140,27,.8); }
.btn--accent:hover { background: #F59B38; }
.btn--ghost { border-color: rgba(255,255,255,.55); color: #fff; backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--ghost:hover .icon { transform: none; }

.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; font-size: .875rem; font-weight: 600; }
.pill--glass { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.pill--glass .icon { color: var(--accent); }
.tag { display: inline-block; vertical-align: middle; margin-left: 8px; padding: 2px 10px; border-radius: 999px; background: var(--accent-50); color: #9A4A00; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-family: var(--font-head); }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy); color: #C9D3DC; font-size: .85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 42px; }
.topbar__info, .topbar__right { display: flex; align-items: center; gap: 24px; }
.topbar li, .topbar a { display: inline-flex; align-items: center; gap: 8px; }
.topbar .icon { color: var(--lime); width: 1rem; height: 1rem; }
.topbar a:hover { color: #fff; }
.lang-switch { display: inline-flex; gap: 2px; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.08); }
.lang-switch__link { padding: 3px 11px; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .05em; }
.lang-switch__link.is-current { background: var(--primary); color: #fff; }
@media (max-width: 1000px) { .topbar__info li:last-child { display: none; } }
@media (max-width: 720px) { .topbar { display: none; } }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s; }
.header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header__inner { display: flex; align-items: center; gap: 32px; min-height: var(--header-h); }
.header__brand { flex: none; }
.nav { margin-left: auto; }
.nav__list { display: flex; gap: 4px; }
.nav__link { display: block; padding: 10px 16px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--ink); transition: background-color .2s, color .2s; }
.nav__link:hover { background: var(--primary-50); color: var(--primary); }
.nav__link.is-current { background: var(--primary-50); color: var(--primary); }
.nav__mobile-extra { display: none; }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__call { display: flex; align-items: center; gap: 12px; padding: 6px 18px 6px 6px; border-radius: 999px; background: var(--primary); color: #fff; transition: background-color .2s; }
.header__call:hover { background: var(--primary-600); }
.header__call-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; }
.header__call-icon .icon { width: 18px; height: 18px; }
.header__call-text { display: flex; flex-direction: column; line-height: 1.2; }
.header__call-text small { font-size: .72rem; opacity: .85; }
.header__call-text strong { font-family: var(--font-head); font-size: .92rem; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark { width: 46px; height: 46px; }
.logo__disc { fill: var(--primary); }
.logo__leaf, .logo__soil { fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.logo__soil { stroke: var(--accent); }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; letter-spacing: .02em; color: var(--ink); }
.logo__sub { font-family: var(--font-head); font-weight: 700; font-size: .7rem; letter-spacing: .42em; color: var(--accent-600); margin-top: 5px; }
.logo--light .logo__name { color: #fff; }
.logo--light .logo__sub { color: var(--accent); }

.burger { display: none; width: 48px; height: 48px; border-radius: 50%; background: var(--primary-50); position: relative; }
.burger span { position: absolute; left: 14px; right: 14px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) { .header__call-text { display: none; } .header__call { padding: 6px; } .nav__link { padding: 10px 12px; } }
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .burger { display: block; }
  .header__actions { margin-left: auto; }
  .header__call { display: none; }
  .logo__mark { width: 40px; height: 40px; }
  .logo__name { font-size: 1.2rem; }
  .nav {
    position: fixed; left: 0; right: 0; top: var(--nav-top, var(--header-h)); bottom: 0;
    background: #fff; padding: 16px var(--gutter) 32px; overflow-y: auto;
    display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s, transform .3s var(--ease), visibility .25s;
    border-top: 1px solid var(--line);
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { padding: 16px 18px; border-radius: var(--r); font-size: 1.2rem; }
  .nav__mobile-extra { display: flex; flex-direction: column; align-items: center; gap: 14px; }
  .nav__mobile-mail { color: var(--muted); }
  .nav__mobile-extra .lang-switch { background: var(--primary-50); }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; min-height: min(88vh, 820px); display: flex; align-items: center; padding: clamp(80px, 10vw, 140px) 0 clamp(140px, 14vw, 190px); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; animation: heroZoom 18s ease-out both; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,25,38,.88) 0%, rgba(10,25,38,.62) 45%, rgba(10,25,38,.15) 100%), linear-gradient(0deg, rgba(10,25,38,.5), transparent 40%); }
.hero__inner { max-width: var(--container); }
.hero__title { color: #fff; font-size: clamp(2.5rem, 5.8vw, 4.6rem); line-height: 1.05; max-width: 15ch; margin: 24px 0 22px; }
.hero__title span { color: var(--accent); }
.hero__lede { max-width: 56ch; font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: rgba(255,255,255,.88); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 40px; font-weight: 500; color: rgba(255,255,255,.92); }
.hero__checks li { display: inline-flex; align-items: center; gap: 10px; }
.hero__checks .icon { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--primary); color: #fff; stroke-width: 3; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* ---------- Stats ---------- */
.stats-wrap { position: relative; z-index: 2; margin-top: -84px; }
.stats-wrap--page { margin-top: -56px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.stats__item { display: flex; align-items: center; gap: 16px; padding: 30px 28px; }
.stats__item + .stats__item { border-left: 1px solid var(--line); }
.stats__icon { width: 56px; height: 56px; flex: none; border-radius: var(--r); display: grid; place-items: center; background: var(--primary-50); color: var(--primary); }
.stats__icon .icon { width: 26px; height: 26px; }
.stats__body { display: flex; flex-direction: column; }
.stats__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 2.6vw, 2.2rem); color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.stats__label { color: var(--muted); font-size: .92rem; margin-top: 6px; }
@media (max-width: 960px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(3) { border-left: 0; }
  .stats__item:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .stats__item { flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px 18px; }
  .stats__icon { width: 44px; height: 44px; }
}

/* ---------- Sections ---------- */
.section { padding: var(--section) 0; }
.section--tight { padding: calc(var(--section) * .5) 0; }
.section--tint { background: var(--bg-soft); }
.section--dark { background: var(--navy); color: #C3CDD6; }
.section--dark .h2 { color: #fff; }
.section--dark .lead { color: #AAB7C3; }

/* ---------- Products ---------- */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product__link { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.product__link:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.product__media { position: relative; aspect-ratio: 16 / 11; }
.product__img { height: 100%; overflow: hidden; }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product__link:hover .product__media img { transform: scale(1.06); }
.product__icon { position: absolute; left: 24px; bottom: -26px; width: 56px; height: 56px; border-radius: var(--r); background: var(--primary); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(46,125,50,.7); border: 4px solid #fff; }
.product__icon .icon { width: 24px; height: 24px; }
.product__body { padding: 44px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.product__title { font-size: 1.35rem; }
.product__text { margin-top: 10px; color: var(--body); }
.product__more { margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: var(--primary); }
.product__more .icon { transition: transform .25s var(--ease); }
.product__link:hover .product__more .icon { transform: translateX(4px); }
@media (max-width: 1000px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .products { grid-template-columns: 1fr; } }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }

.split__text .lead { color: var(--ink); font-weight: 500; }
.split__text > p:not(.lead) { margin-top: 14px; }
.split__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 32px; margin-top: 36px; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 28px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--ink); }
.checklist .icon { width: 24px; height: 24px; padding: 5px; border-radius: 50%; background: var(--primary-100); color: var(--primary); stroke-width: 3; margin-top: 1px; }
.founder { display: flex; align-items: center; gap: 12px; }
.founder__avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 800; }
.founder strong { display: block; color: var(--ink); font-family: var(--font-head); }
.founder small { color: var(--muted); }

.collage { position: relative; padding: 0 0 64px 0; }
.collage__main { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 4.4; width: 82%; box-shadow: var(--shadow); }
.collage__main img, .collage__small img { width: 100%; height: 100%; object-fit: cover; }
.collage__small { position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; border: 8px solid var(--bg-soft); box-shadow: var(--shadow); }
.collage__badge { position: absolute; left: -12px; bottom: 96px; background: var(--accent); color: var(--navy); border-radius: var(--r); padding: 18px 22px; box-shadow: var(--shadow); text-align: center; }
.collage__badge strong { display: block; font-family: var(--font-head); font-size: 2rem; line-height: 1; }
.collage__badge span { font-size: .8rem; font-weight: 600; }
@media (max-width: 960px) { .split { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .checklist { grid-template-columns: 1fr; } .collage__badge { left: 8px; bottom: 40%; } }

/* ---------- Features (dark) ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { padding: 32px 28px; border-radius: var(--r-lg); background: var(--navy-2); border: 1px solid rgba(255,255,255,.06); transition: transform .35s var(--ease), background-color .35s; }
.feature:hover { transform: translateY(-6px); background: var(--navy-3); }
.feature__icon { width: 60px; height: 60px; border-radius: var(--r); display: grid; place-items: center; background: rgba(156,204,101,.14); color: var(--lime); margin-bottom: 24px; }
.feature__icon .icon { width: 28px; height: 28px; }
.feature__title { color: #fff; font-size: 1.2rem; }
.feature__text { margin-top: 10px; font-size: .98rem; color: #AAB7C3; }
@media (max-width: 1000px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------- Audiences ---------- */
.audiences { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.audience { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3 / 4; isolation: isolate; }
.audience img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.audience::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 35%, rgba(10,25,38,.9) 100%); }
.audience:hover img { transform: scale(1.07); }
.audience__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; color: #fff; }
.audience__body h3 { color: #fff; font-size: 1.2rem; }
.audience__body p { font-size: .94rem; color: rgba(255,255,255,.85); margin-top: 6px; }
@media (max-width: 1000px) { .audiences { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .audiences { grid-template-columns: 1fr; } .audience { aspect-ratio: 4 / 3; } }

/* ---------- Timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 11px; height: 2px; background: linear-gradient(90deg, var(--primary-100), var(--primary), var(--accent)); }
.timeline__item { position: relative; padding-top: 44px; }
.timeline__dot { position: absolute; top: 0; left: 0; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 5px solid var(--primary); box-shadow: 0 0 0 6px var(--bg-soft); }
.timeline__item:last-child .timeline__dot { border-color: var(--accent); }
.timeline__mark { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--primary); line-height: 1; }
.timeline__title { font-size: 1.05rem; margin-top: 12px; }
.timeline__text { font-size: .92rem; margin-top: 8px; }
.timeline__place { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: .8rem; font-weight: 600; color: var(--muted); }
.timeline__place .icon { width: 14px; height: 14px; color: var(--accent-600); }
@media (max-width: 1100px) {
  .timeline { grid-template-columns: 1fr; gap: 0; max-width: 720px; margin-inline: auto; }
  .timeline::before { left: 11px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, var(--primary-100), var(--primary), var(--accent)); }
  .timeline__item { padding: 0 0 36px 52px; }
  .timeline__item:last-child { padding-bottom: 0; }
}

/* ---------- Locations & stacked photos ---------- */
.locations { display: grid; gap: 14px; margin-top: 32px; }
.location { display: flex; gap: 18px; align-items: flex-start; padding: 20px 22px; border-radius: var(--r); border: 1px solid var(--line); background: #fff; transition: border-color .25s, box-shadow .25s; }
.location:hover { border-color: var(--primary-100); box-shadow: var(--shadow-sm); }
.location__icon { width: 48px; height: 48px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--primary-50); color: var(--primary); }
.location__icon .icon { width: 22px; height: 22px; }
.location h3 { font-size: 1.1rem; }
.location p { font-size: .95rem; margin-top: 4px; }
.locations--grid { grid-template-columns: repeat(3, 1fr); margin-top: 0; }
@media (max-width: 900px) { .locations--grid { grid-template-columns: 1fr; } }

.stack { position: relative; padding-bottom: 80px; }
.stack__a { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5 / 4; box-shadow: var(--shadow); }
.stack__b { position: absolute; right: -8px; bottom: 0; width: 52%; aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; border: 8px solid #fff; box-shadow: var(--shadow); }
.stack__a img, .stack__b img { width: 100%; height: 100%; object-fit: cover; }
.stack__card { position: absolute; left: 24px; top: 24px; background: var(--primary); color: #fff; border-radius: var(--r); padding: 18px 22px; box-shadow: var(--shadow); max-width: 200px; }
.stack__card strong { display: block; font-family: var(--font-head); font-size: 1.8rem; line-height: 1; }
.stack__card span { font-size: .85rem; opacity: .9; }

/* ---------- Partner logos ---------- */
.logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.logos__item { display: grid; place-items: center; height: 116px; padding: 22px 28px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: box-shadow .3s, transform .3s var(--ease); }
.logos__item img { max-height: 60px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: filter .3s, opacity .3s; }
.logos__item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.logos__item:hover img { filter: none; opacity: 1; }
.logos__item--more { background: var(--primary); border-color: var(--primary); color: #fff; text-align: center; place-content: center; gap: 2px; }
.logos__item--more strong { font-family: var(--font-head); font-size: 1.8rem; line-height: 1; }
.logos__item--more span { font-size: .85rem; opacity: .9; }
.logos__names { margin: 28px auto 0; max-width: 900px; text-align: center; color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) { .logos { grid-template-columns: repeat(2, 1fr); } .logos__item { height: 96px; } }

/* ---------- Group card ---------- */
.group-card { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; background: var(--navy); border-radius: var(--r-lg); overflow: hidden; }
.group-card__item { padding: 36px 40px; color: #AAB7C3; display: flex; flex-direction: column; gap: 14px; }
.group-card__item strong { color: #fff; }
.group-card__item--link { background: var(--navy-2); transition: background-color .3s; }
.group-card__item--link:hover { background: var(--navy-3); }
.group-card__name { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; }
.group-card__name em { font-style: normal; color: var(--accent); }
.group-card__visit { display: inline-flex; align-items: center; gap: 6px; color: var(--lime); font-weight: 600; margin-top: auto; }
.group-card__plus { display: grid; place-items: center; width: 56px; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent); background: linear-gradient(90deg, var(--navy), var(--navy-2)); }
@media (max-width: 800px) { .group-card { grid-template-columns: 1fr; } .group-card__plus { width: auto; height: 44px; } .group-card__item { padding: 28px 24px; } }

/* ---------- CTA ---------- */
.cta { position: relative; isolation: isolate; color: #fff; padding: clamp(80px, 10vw, 120px) 0; overflow: hidden; }
.cta__media { position: absolute; inset: 0; z-index: -1; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,87,35,.94), rgba(15,34,51,.78)); }
.cta__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px 64px; align-items: center; }
.cta .h2 { color: #fff; }
.cta__text p { margin-top: 16px; color: rgba(255,255,255,.88); font-size: 1.1rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
@media (max-width: 900px) { .cta__inner { grid-template-columns: 1fr; } .cta__actions { justify-content: flex-start; } }

/* ---------- Footer ---------- */
.footer { background: #0A1824; color: #9FAEBB; padding-top: clamp(64px, 8vw, 96px); font-size: .96rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.footer__brand p { margin-top: 20px; max-width: 38ch; }
.footer__sister { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; margin-top: 24px; padding: 12px 18px; border-radius: var(--r); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); transition: background-color .25s; }
.footer__sister:hover { background: rgba(255,255,255,.1); }
.footer__sister span { font-size: .8rem; }
.footer__sister strong { color: #fff; font-family: var(--font-head); }
.footer__sister .icon { width: 16px; height: 16px; color: var(--lime); }
.footer__title { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.footer__links { display: grid; gap: 10px; }
.footer__links a { transition: color .2s, padding .2s; }
.footer__links a:hover { color: var(--lime); padding-left: 4px; }
.footer__contact { display: grid; gap: 14px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact .icon { color: var(--lime); margin-top: 3px; width: 18px; height: 18px; }
.footer__contact a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 24px 0 28px; border-top: 1px solid rgba(255,255,255,.08); font-size: .88rem; }
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Page hero ---------- */
.page-hero { position: relative; isolation: isolate; color: #fff; padding: clamp(72px, 9vw, 120px) 0 clamp(96px, 11vw, 150px); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: -1; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,25,38,.9), rgba(10,25,38,.55)); }
.breadcrumb { display: flex; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: var(--accent); font-weight: 600; }
.page-hero__title { color: #fff; font-size: clamp(2.4rem, 5vw, 3.8rem); margin-top: 16px; }
.page-hero__lede { margin-top: 14px; max-width: 58ch; font-size: 1.12rem; color: rgba(255,255,255,.88); }

/* ---------- About page ---------- */
.story { display: grid; grid-template-columns: 1fr 360px; gap: clamp(40px, 6vw, 80px); align-items: start; }
.prose { color: var(--body); font-size: 1.075rem; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 1.9em; display: flex; align-items: center; gap: 14px; }
.prose h2::before { content: ""; width: 10px; height: 34px; border-radius: 6px; background: linear-gradient(var(--primary), var(--lime)); flex: none; }
.prose h2:first-child { margin-top: 0; }
.prose ul { display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 36px; color: var(--ink); font-weight: 500; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: var(--primary-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7D32' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 14px no-repeat; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.prose--narrow { max-width: 760px; }
.story__aside { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 20px; }
.fact-card { padding: 28px; border-radius: var(--r-lg); background: var(--bg-soft); border: 1px solid var(--line); }
.fact-card__title { font-size: 1.2rem; margin-bottom: 16px; }
.facts div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); font-size: .95rem; }
.facts dt { color: var(--muted); }
.facts dd { color: var(--ink); font-weight: 600; text-align: right; }
.facts a { color: var(--primary); }
.aside-photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; }
.aside-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 960px) { .story { grid-template-columns: 1fr; } .story__aside { position: static; } }

/* ---------- Catalogs ---------- */
.toolbar { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px 48px; align-items: end; margin-bottom: 48px; }
.toolbar__intro p + p { margin-top: 10px; }
.toolbar__intro strong { color: var(--ink); }
.toolbar__intro--center { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.search { display: flex; align-items: center; gap: 12px; padding: 0 8px 0 20px; min-height: 60px; border-radius: 999px; background: #fff; border: 2px solid var(--line); transition: border-color .2s, box-shadow .2s; }
.search:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-50); }
.search > .icon { color: var(--muted); }
.search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font: inherit; color: var(--ink); }
.search__count { padding: 8px 14px; border-radius: 999px; background: var(--primary-50); color: var(--primary); font-weight: 700; font-size: .85rem; white-space: nowrap; }
.catalogs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.catalog[hidden] { display: none; }
.catalog__link { display: flex; flex-direction: column; height: 100%; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; }
.catalog__link:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.catalog__cover { position: relative; aspect-ratio: 3 / 4; background: var(--bg-soft); overflow: hidden; }
.catalog__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.catalog__hover { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 10px; background: rgba(31,87,35,.82); color: #fff; font-family: var(--font-head); font-weight: 700; opacity: 0; transition: opacity .3s; }
.catalog__link:hover .catalog__hover { opacity: 1; }
.catalog__link:hover .catalog__cover img { transform: scale(1.05); }
.catalog__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.catalog__title { font-size: 1.02rem; line-height: 1.3; }
.catalog__desc { margin-top: 6px; font-size: .9rem; color: var(--muted); }
.catalog__more { margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .9rem; color: var(--primary); font-family: var(--font-head); }
.catalog__more .icon { width: 16px; height: 16px; }
.empty-note { text-align: center; padding: 48px 0; color: var(--muted); font-size: 1.1rem; }
.help-banner { display: flex; align-items: center; gap: 24px; margin-top: 64px; padding: 28px 32px; border-radius: var(--r-lg); background: var(--primary-50); border: 1px solid var(--primary-100); }
.help-banner__icon { width: 60px; height: 60px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--primary); color: #fff; }
.help-banner__icon .icon { width: 26px; height: 26px; }
.help-banner h2 { font-size: 1.3rem; }
.help-banner p { margin-top: 4px; }
.help-banner .btn { margin-left: auto; }
@media (max-width: 1100px) { .catalogs { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .toolbar { grid-template-columns: 1fr; } .catalogs { grid-template-columns: repeat(2, 1fr); gap: 16px; } .help-banner { flex-direction: column; align-items: flex-start; } .help-banner .btn { margin-left: 0; } }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -120px; position: relative; z-index: 2; }
.contact-card { padding: 28px 26px; border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 6px; }
.contact-card h2 { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }
.contact-card__icon { width: 52px; height: 52px; border-radius: var(--r); display: grid; place-items: center; background: var(--primary-50); color: var(--primary); }
.contact-card__value { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: clamp(.98rem, 1.25vw, 1.12rem); line-height: 1.4; overflow-wrap: break-word; }
.contact-card__value--sm { font-size: .98rem; font-weight: 700; }
a.contact-card__value:hover { color: var(--primary); }
.contact-card p { color: var(--muted); font-size: .9rem; }
.contact-card--primary { background: var(--primary); }
.contact-card--primary h2, .contact-card--primary p { color: rgba(255,255,255,.8); }
.contact-card--primary .contact-card__value { color: #fff; font-size: 1.35rem; }
.contact-card--primary a.contact-card__value:hover { color: var(--accent); }
.contact-card--primary .contact-card__icon { background: rgba(255,255,255,.16); color: #fff; }
.contact-split { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 80px); margin-top: var(--section); align-items: start; }
.steps { display: grid; gap: 22px; margin: 32px 0 36px; }
.steps li { display: flex; gap: 18px; }
.steps__num { width: 44px; height: 44px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--navy); font-family: var(--font-head); font-weight: 800; }
.steps h3 { font-size: 1.15rem; }
.steps p { margin-top: 4px; }
.steps a { color: var(--primary); font-weight: 600; }
.map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 440px; display: flex; }
.map iframe { flex: 1; width: 100%; border: 0; min-height: 440px; }
@media (max-width: 1000px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } .contact-split { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .contact-cards { grid-template-columns: 1fr; margin-top: -80px; } }

/* ---------- Gallery ---------- */
.gallery { columns: 3 300px; column-gap: 20px; }
.gallery__item { break-inside: avoid; margin-bottom: 20px; }
.gallery__open { position: relative; display: block; width: 100%; border-radius: var(--r); overflow: hidden; }
.gallery__open img { width: 100%; transition: transform .6s var(--ease); }
.gallery__open:hover img { transform: scale(1.04); }
.gallery__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px 18px 16px; color: #fff; text-align: left; background: linear-gradient(transparent, rgba(10,25,38,.8)); font-weight: 600; opacity: 0; transition: opacity .3s; }
.gallery__open:hover .gallery__caption, .gallery__open:focus-visible .gallery__caption { opacity: 1; }
.lightbox { border: 0; padding: 0; background: transparent; max-width: 92vw; max-height: 92vh; }
.lightbox::backdrop { background: rgba(10,25,38,.92); }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r); }
.lightbox__close { position: fixed; top: 16px; right: 24px; font-size: 2.6rem; color: #fff; line-height: 1; }
.empty { text-align: center; padding: clamp(48px, 7vw, 88px) 24px; border-radius: var(--r-lg); background: var(--bg-soft); border: 2px dashed var(--primary-100); }
.empty__icon { width: 80px; height: 80px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; background: var(--primary-50); color: var(--primary); }
.empty__icon .icon { width: 36px; height: 36px; }
.empty h2 { font-size: 1.6rem; }
.empty p { margin: 10px auto 28px; max-width: 52ch; }

/* ---------- Generic ---------- */
.index-list { display: grid; gap: 10px; margin-top: 32px; }
.index-list a { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-radius: var(--r); border: 1px solid var(--line); font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.index-list a:hover { border-color: var(--primary); color: var(--primary); }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

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