/* Zväz pestovateľov a spracovateľov sóje – štýly webu */
:root {
  --green-900: #0F3D29;
  --green-700: #185A3C;
  --green-600: #23704C;
  --green-100: #E4EDE6;
  --green-050: #F1F5F1;
  --gold-500: #C9962A;
  --gold-400: #E2B95A;
  --gold-700: #8A6516;
  --ink: #17211B;
  --ink-2: #4A5650;
  --ink-3: #66716B;
  --paper: #FFFFFF;
  --paper-2: #F5F6F1;
  --line: #DCE1DB;
  --line-2: #C6CEC7;
  --ok-bg: #E2F0E7; --ok: #1F6B45;
  --err-bg: #F9E7E5; --err: #A8281F;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --radius: 4px;
  --wrap: 1180px;
  --gutter: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body { margin: 0; font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; text-wrap: balance; color: var(--green-900); }
h1 { font-size: clamp(36px, 4.6vw, 58px); letter-spacing: -0.01em; }
h2 { font-size: clamp(28px, 3.2vw, 38px); }
h3 { font-size: 21px; }
p { margin: 0; }
a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-900); }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 2px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: 8px; top: -60px; background: var(--green-900); color: #fff; padding: 10px 14px; z-index: 200; border-radius: var(--radius); }
.skip:focus { top: 8px; }
.ph { color: var(--ink-3); font-style: italic; }
[hidden] { display: none !important; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Hlavička */
header.site { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.logo img { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { font-weight: 500; font-size: 15.5px; color: var(--ink); text-decoration: none; padding: 10px 12px; border-radius: var(--radius); }
.nav a:hover { background: var(--green-050); color: var(--green-900); }
.nav a.active { color: var(--green-900); box-shadow: inset 0 -2px 0 var(--gold-500); border-radius: 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--sans); font-weight: 600; font-size: 16px; padding: 13px 22px; border-radius: var(--radius); text-decoration: none; border: 1.5px solid transparent; cursor: pointer; line-height: 1.2; min-height: 44px; }
.btn-gold { background: var(--gold-500); color: var(--green-900); }
.btn-gold:hover { background: var(--gold-400); color: var(--green-900); }
.btn-outline { border-color: var(--green-700); color: var(--green-700); background: transparent; }
.btn-outline:hover { background: var(--green-050); }
.btn-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-sm { padding: 10px 16px; font-size: 15px; }
.btn[disabled] { opacity: .6; cursor: progress; }
.nav .nav-cta { display: none; }
.burger { display: none; background: none; border: 1.5px solid var(--line-2); border-radius: var(--radius); width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; }
.burger span, .burger span::before, .burger span::after { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; content: ""; }
.burger span::before { position: absolute; top: -6px; } .burger span::after { position: absolute; top: 6px; }

/* Hero */
.hero { padding: 56px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero-copy p.lead { font-size: 20px; line-height: 1.55; color: var(--ink-2); margin: 22px 0 32px; max-width: 34em; }
.eyebrow { font-family: var(--sans); font-size: 15px; color: var(--gold-700); font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); flex: none; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-photo { position: relative; margin: 0; }
.hero-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.hero-photo figcaption { position: absolute; left: 16px; bottom: 16px; background: rgba(15,61,41,.88); color: #fff; font-size: 13.5px; padding: 6px 12px; border-radius: 3px; }
.facts { margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 26px 24px 26px 0; border-right: 1px solid var(--line); margin-right: 24px; }
.fact:last-child { border-right: 0; margin-right: 0; }
.fact strong { font-family: var(--serif); font-weight: 600; font-size: 38px; color: var(--green-900); display: block; line-height: 1; font-variant-numeric: tabular-nums; }
.fact span { display: block; margin-top: 8px; color: var(--ink-2); font-size: 15px; line-height: 1.4; }

/* Sekcie */
section { padding: 88px 0; }
section.alt { background: var(--paper-2); }
section.dark { background: var(--green-900); color: #E8EFE9; }
section.dark h2, section.dark h3 { color: #fff; }
.sec-head { max-width: 40em; margin-bottom: 44px; }
.sec-head h2 { margin-bottom: 12px; }
.sec-head p { color: var(--ink-2); font-size: 18px; }
section.dark .sec-head p { color: #C7D4CA; }
.two { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.prose p { margin-bottom: 18px; max-width: 36em; }
.prose p:last-child { margin-bottom: 0; }

/* Časová os */
.about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.about .idcard { margin-top: 0; padding: 26px 28px; gap: 12px 22px; }
.tl-title { font-size: 22px; margin: 64px 0 28px; padding-top: 40px; border-top: 1px solid var(--line); }
.tl { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0 28px; position: relative; }
.tl::before { content: ""; position: absolute; left: 6px; right: 6px; top: 6px; height: 2px; background: var(--green-100); }
.tl li { position: relative; padding: 30px 0 0; }
.tl li::before { content: ""; position: absolute; left: 0; top: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--gold-500); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--green-100); }
.tl li.next::before { background: #fff; box-shadow: 0 0 0 2px var(--gold-500); }
.tl time, .tl .when { display: block; font-size: 14px; color: var(--gold-700); font-weight: 600; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.tl b { display: block; font-weight: 600; color: var(--green-900); font-size: 17px; line-height: 1.3; margin-bottom: 6px; }
.tl p { color: var(--ink-2); font-size: 15px; line-height: 1.5; margin: 0; }
.idcard { margin: 32px 0 0; padding: 22px 24px; background: var(--green-050); border-radius: var(--radius); display: grid; grid-template-columns: auto 1fr; gap: 8px 22px; font-size: 15px; align-content: start; }
.idcard dt { color: var(--ink-3); } .idcard dd { margin: 0; font-weight: 500; }

/* Činnosti */
.acts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 40px; }
.act { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.act svg { width: 44px; height: 44px; stroke: var(--green-700); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.act h3 { font-size: 19px; margin-bottom: 6px; }
.act p { color: var(--ink-2); font-size: 15.5px; }

/* Prínosy (tmavý pás) */
.goal { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; padding: 26px 30px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); margin-bottom: 40px; background: rgba(255,255,255,.04); }
.goal strong { font-family: var(--serif); font-size: 44px; font-weight: 600; color: var(--gold-400); line-height: 1; white-space: nowrap; font-variant-numeric: tabular-nums; }
.goal p { color: #C7D4CA; font-size: 15.5px; max-width: 46em; }
.goal p b { color: #fff; font-weight: 600; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit { padding: 26px 26px 28px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); }
.benefit h3 { font-size: 20px; margin-bottom: 8px; color: #fff; }
.benefit p { color: #C7D4CA; font-size: 15.5px; }
.benefit .mark { width: 34px; height: 3px; background: var(--gold-500); margin-bottom: 18px; }
.why-now { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 40px; border-top: 1px solid rgba(255,255,255,.18); padding-top: 32px; }
.why-now div b { display: block; font-family: var(--serif); font-size: 24px; color: #fff; margin-bottom: 6px; }
.why-now div span { color: #C7D4CA; font-size: 15px; }

/* Členstvo */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.plan { padding: 30px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.plan:last-child { border-right: 0; }
.plan h3 { font-size: 22px; }
.plan .who { color: var(--ink-2); font-size: 15.5px; margin: 10px 0 22px; flex: 1; }
.plan .fee { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--green-900); line-height: 1.1; font-variant-numeric: tabular-nums; }
.plan .fee small { display: block; font-family: var(--sans); font-size: 14px; color: var(--ink-3); font-weight: 400; margin-top: 6px; }
.plan.featured { background: var(--green-050); }
.plan .tag { align-self: flex-start; font-size: 12.5px; font-weight: 600; color: var(--green-700); background: var(--green-100); padding: 3px 9px; border-radius: 3px; margin-bottom: 14px; }
.steps { margin: 40px 0 0; padding: 0; list-style: none; counter-reset: s; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.steps li::before { content: counter(s); width: 40px; height: 40px; border-radius: 50%; background: var(--green-100); color: var(--green-900); font-family: var(--serif); font-weight: 600; font-size: 19px; display: grid; place-items: center; }
.steps b { display: block; font-weight: 600; margin-bottom: 4px; }
.steps span { color: var(--ink-2); font-size: 15.5px; }
.plans-cta { margin-top: 32px; display: flex; gap: 12px 24px; align-items: center; flex-wrap: wrap; }
.plans-cta .note { color: var(--ink-2); font-size: 15px; }
.fine-list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; font-size: 15px; color: var(--ink-2); }
.fine-list li { padding-left: 18px; position: relative; }
.fine-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: var(--gold-500); border-radius: 50%; }

/* Ľudia */
.people { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
.person { display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: center; }
.avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; background: var(--green-100); }
.avatar img { width: 64px; height: 64px; object-fit: cover; }
.person b { display: block; font-weight: 600; font-size: 16.5px; }
.person span { display: block; font-size: 14px; color: var(--ink-2); }

/* Aktuality */
.news { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 370px)); gap: 24px; }
.news article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.news img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.news .body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news time { font-size: 14px; color: var(--gold-700); font-weight: 600; font-variant-numeric: tabular-nums; }
.news h3 { font-size: 20px; }
.news p { color: var(--ink-2); font-size: 15.5px; flex: 1; }
.news a.more { font-weight: 600; font-size: 15px; text-decoration: none; }
.upcoming { margin-top: 28px; display: flex; gap: 16px; align-items: center; padding: 18px 22px; border-left: 3px solid var(--gold-500); background: #fff; border-radius: 0 var(--radius) var(--radius) 0; }
.upcoming b { color: var(--green-900); }
.upcoming span { color: var(--ink-2); font-size: 15.5px; }
.news-list { list-style: none; margin: 0; padding: 0; }
.news-list li { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); }
.news-list li:last-child { border-bottom: 1px solid var(--line); }
.news-list time { font-size: 15px; color: var(--gold-700); font-weight: 600; font-variant-numeric: tabular-nums; padding-top: 4px; }
.news-list h2 { font-size: 24px; margin-bottom: 10px; }
.news-list p { color: var(--ink-2); max-width: 44em; }
.news-list p + p { margin-top: 10px; }

/* Členovia */
.members-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.member { border: 1px solid var(--line); border-radius: var(--radius); min-height: 92px; display: grid; place-items: center; padding: 16px 20px; text-align: center; font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--ink-2); background: #fff; text-decoration: none; }
.member:hover { color: var(--green-900); border-color: var(--line-2); }
.member img { max-height: 52px; max-width: 170px; width: auto; height: auto; filter: grayscale(1); opacity: .78; transition: filter .25s, opacity .25s; }
.member:hover img { filter: none; opacity: 1; }
.founders { margin-top: 40px; display: flex; gap: 10px 28px; flex-wrap: wrap; align-items: baseline; }
.founders h3 { font-size: 17px; font-family: var(--sans); font-weight: 600; color: var(--ink-2); }
.founders ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px 22px; flex-wrap: wrap; font-size: 16px; }

/* Galéria */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 230px; gap: 12px; }
.gallery a { display: block; overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery a:first-child { grid-column: span 2; grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery a:hover img { transform: scale(1.03); }
.gallery .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 10px; font-size: 13.5px; color: #fff; background: linear-gradient(transparent, rgba(15,61,41,.75)); }
.lightbox { position: fixed; inset: 0; background: rgba(12,20,15,.92); display: none; place-items: center; z-index: 100; padding: 24px; }
.lightbox[open] { display: grid; }
.lightbox img { max-width: min(1200px, 100%); max-height: 86vh; width: auto; height: auto; border-radius: var(--radius); }
.lightbox button { position: absolute; top: 18px; right: 18px; background: none; border: 1px solid rgba(255,255,255,.4); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 22px; cursor: pointer; }

/* Témy */
.topics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.topic { display: block; text-decoration: none; padding: 26px 26px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink); }
.topic:hover { border-color: var(--green-700); color: var(--ink); }
.topic .src { font-size: 14px; color: var(--ink-3); margin-bottom: 10px; }
.topic h3 { font-size: 19px; margin-bottom: 10px; }
.topic p { font-size: 15.5px; color: var(--ink-2); }
.topic p b { color: var(--green-700); font-weight: 600; }

/* Kontakt a formuláre */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 24px; font-size: 16px; margin: 0; }
.contact dt { color: var(--ink-3); } .contact dd { margin: 0; }
form.card { background: var(--paper-2); padding: 30px; border-radius: var(--radius); display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
form.card .full { grid-column: 1 / -1; }
label { display: block; font-size: 14.5px; font-weight: 500; margin-bottom: 6px; }
form.card > div:not(.check) { display: flex; flex-direction: column; }
form.card > div:not(.check) > label { flex: 1 0 auto; }
form.card label .fine { display: block; font-weight: 400; line-height: 1.35; margin-top: 2px; }
input, textarea, select { width: 100%; font: inherit; font-size: 16px; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: var(--radius); background: #fff; color: var(--ink); }
textarea { min-height: 130px; resize: vertical; }
input[type="checkbox"], input[type="radio"] { width: 20px; height: 20px; accent-color: var(--green-700); margin: 0; flex: none; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend { font-size: 14.5px; font-weight: 500; margin-bottom: 8px; padding: 0; }
.choices { display: flex; gap: 10px 22px; flex-wrap: wrap; }
.choices label { display: inline-flex; gap: 9px; align-items: center; font-weight: 400; font-size: 16px; margin: 0; min-height: 30px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.check input { margin-top: 3px; }
.check label { font-weight: 400; margin: 0; }
.fine { font-size: 13.5px; color: var(--ink-2); }
.status { padding: 14px 18px; border-radius: var(--radius); font-size: 15.5px; }
.status.ok { background: var(--ok-bg); color: var(--ok); }
.status.err { background: var(--err-bg); color: var(--err); }
.status a { color: inherit; font-weight: 600; }

/* Podstránky */
.page-head { padding: 56px 0 0; }
.page-head h1 { font-size: clamp(32px, 4vw, 48px); }
.page-head p { color: var(--ink-2); font-size: 19px; max-width: 36em; margin-top: 14px; }
.crumbs { font-size: 14px; color: var(--ink-3); margin-bottom: 18px; }
.crumbs a { color: var(--ink-3); }
.page-body { padding: 48px 0 88px; }
.doc { max-width: 760px; }
.doc h2 { font-size: 24px; margin: 40px 0 12px; }
.doc h2:first-child { margin-top: 0; }
.doc p, .doc li { color: var(--ink-2); }
.doc p { margin-bottom: 14px; }
.doc ul, .doc ol { padding-left: 22px; margin: 0 0 14px; }
.doc li { margin-bottom: 6px; }
.doc table { border-collapse: collapse; width: 100%; font-size: 15px; margin: 8px 0 18px; }
.doc th, .doc td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.doc th { font-weight: 600; color: var(--ink-2); font-size: 13.5px; background: var(--paper-2); }
.tbl { overflow-x: auto; }
.side { display: grid; grid-template-columns: 1.3fr .9fr; gap: 56px; align-items: start; }
.aside-box { background: var(--paper-2); border-radius: var(--radius); padding: 26px 28px; }
.aside-box h3 { font-size: 19px; margin-bottom: 12px; }
.aside-box p, .aside-box li { color: var(--ink-2); font-size: 15.5px; }
.aside-box ol { margin: 0 0 16px; padding-left: 20px; }
.aside-box li { margin-bottom: 8px; }
.aside-box + .aside-box { margin-top: 20px; }

/* Pätička */
footer.site { background: var(--green-900); color: #C7D4CA; padding: 44px 0; font-size: 14.5px; }
.foot { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
footer.site a { color: #fff; }
footer.site .logo img { height: 40px; filter: brightness(0) invert(1); opacity: .9; }

/* Responzivita */
@media (max-width: 960px) {
  .hero-grid, .two, .contact, .side, .about { grid-template-columns: 1fr; gap: 36px; }
  .tl { grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }
  .tl::before { display: none; }
  .tl li { padding: 0 0 0 26px; }
  .tl li::before { top: 4px; }
  .facts-grid, .benefits, .plans, .people, .topics, .acts, .why-now, .steps { grid-template-columns: repeat(2, 1fr); }
  .members-grid { grid-template-columns: repeat(3, 1fr); }
  .plan { border-right: 0; border-bottom: 1px solid var(--line); }
  .plan:nth-child(odd) { border-right: 1px solid var(--line); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery a:first-child { grid-column: span 2; grid-row: span 1; }
  .goal { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .tl { grid-template-columns: 1fr; gap: 0; border-left: 2px solid var(--green-100); margin-left: 6px; }
  .tl li { padding: 0 0 24px 26px; }
  .tl li:last-child { padding-bottom: 0; }
  .tl li::before { left: -8px; top: 5px; }
  .tl-title { margin-top: 48px; padding-top: 32px; }
  section { padding: 64px 0; }
  .bar { height: 64px; }
  .logo img { height: 36px; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 64px; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 20px; gap: 2px; box-shadow: 0 12px 30px rgba(15,61,41,.12); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 12px; font-size: 17px; }
  .nav a.active { box-shadow: none; background: var(--green-050); border-radius: var(--radius); }
  .nav .nav-cta { display: inline-flex; margin-top: 10px; }
  .burger { display: inline-flex; }
  .bar > .btn { display: none; }
  .hero { padding-top: 32px; }
  .hero-copy p.lead { font-size: 18px; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact { border-right: 0; margin-right: 0; padding: 20px 0; }
  .fact:nth-child(odd) { border-right: 1px solid var(--line); margin-right: 20px; }
  .fact strong { font-size: 32px; }
  .acts, .benefits, .plans, .topics, .people, .why-now, .steps { grid-template-columns: 1fr; }
  .plan, .plan:nth-child(odd) { border-right: 0; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .member { font-size: 15px; min-height: 72px; }
  .gallery { grid-auto-rows: 170px; }
  form.card { grid-template-columns: 1fr; padding: 22px; }
  .news-list li { grid-template-columns: 1fr; gap: 6px; }
  .goal strong { font-size: 34px; }
}
