/* Шрифты — грузятся из сети если есть интернет, иначе используются системные */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --ink:        #1a1f14;
  --ink-mid:    #3a4232;
  --cream:      #f7f4ec;
  --cream-dark: #ede9dc;
  --sage:       #4a6741;
  --sage-light: #e8f0e4;
  --moss:       #2e4a28;
  --lime:       #c8e020;
  --lime-dark:  #a8bc10;
  --terra:      #c4611a;
  --terra-lt:   #fdf0e6;
  --white:      #ffffff;
  --muted:      #7a8270;
  --border:     #dddbd0;
  --serif: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --sans: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max: 1200px;
  --r: 16px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:var(--sans); background:var(--cream); color:var(--ink); font-size:18px; line-height:1.7; overflow-x:hidden; }
a { color:inherit; text-decoration:none; }

/* PAGE SYSTEM */
.page { display:none; }
.page.active { display:block; }

/* ── HEADER ── */
header {
  background:var(--cream);
  border-bottom:1px solid var(--border);
  position:sticky; top:0; z-index:200;
}
.hdr {
  max-width:var(--max); margin:0 auto;
  padding:0 40px; height:68px;
  display:flex; align-items:center; gap:32px;
}
.logo {
  font-family:var(--serif); font-size:18px; font-weight:700;
  color:var(--moss); display:flex; align-items:center; gap:10px;
  white-space:nowrap; letter-spacing:-.2px; cursor:pointer;
}
.logo-mark {
  width:36px; height:36px; border-radius:50%;
  background:var(--moss);
  display:flex; align-items:center; justify-content:center;
  font-size:17px; flex-shrink:0;
}
nav { display:flex; gap:2px; flex:1; overflow-x:auto; scrollbar-width:none; }
nav::-webkit-scrollbar { display:none; }
.nl {
  padding:7px 16px; border-radius:22px; white-space:nowrap;
  font-size:13px; font-weight:500; color:var(--muted);
  cursor:pointer; transition:all .18s; border:none; background:none;
  font-family:var(--sans);
}
.nl:hover { background:var(--sage-light); color:var(--moss); }
.nl.active { background:var(--moss); color:#fff; font-weight:600; }
.hdr-cta {
  padding:10px 22px; border-radius:24px;
  background:var(--lime); color:var(--ink);
  font-family:var(--sans); font-size:13px; font-weight:700;
  border:none; cursor:pointer; white-space:nowrap;
  transition:all .18s; letter-spacing:-.1px;
}
.hdr-cta:hover { background:var(--lime-dark); transform:translateY(-1px); }
.burger {
  display:none; background:none; border:none;
  color:var(--ink); cursor:pointer; padding:6px; margin-left:auto;
}

/* ── HERO — SPLIT LAYOUT ── */
.hero-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:520px;
}
.hero-left {
  background:var(--cream);
  padding:64px 60px 56px;
  display:flex; flex-direction:column; justify-content:center;
  animation:heroSlideL .7s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroSlideL {
  from { opacity:0; transform:translateX(-28px); }
  to { opacity:1; transform:translateX(0); }
}
.hero-right {
  background:linear-gradient(155deg,#1e3e1a 0%,#0c1e0e 55%,#0a1a0c 100%);
  position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  animation:heroFadeR .9s ease .15s both;
}
@keyframes heroFadeR { from{opacity:0} to{opacity:1} }

.hero-eyebrow {
  display:inline-flex; align-items:center; gap:6px;
  font-size:10px; font-weight:700;
  text-transform:uppercase; letter-spacing:.12em;
  color:var(--sage); margin-bottom:20px;
}
.hero-eyebrow::before {
  content:''; width:20px; height:2px; background:var(--terra);
}
.hero-h1 {
  font-family:var(--serif);
  font-size:clamp(28px, 3.5vw, 44px);
  font-weight:900; color:var(--ink);
  line-height:1.1; letter-spacing:-.5px;
  margin-bottom:16px;
}
.hero-h1 em { font-style:italic; color:var(--sage); }
.hero-sub {
  color:var(--muted); font-size:15px; line-height:1.7;
  max-width:420px; margin-bottom:28px;
}
.hero-actions { display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 28px; border-radius:26px;
  background:var(--moss); color:#fff;
  font-family:var(--sans); font-size:14px; font-weight:700;
  border:none; cursor:pointer; transition:all .2s;
}
.btn-primary:hover { background:#234020; transform:translateY(-2px); box-shadow:0 8px 24px rgba(46,74,40,.25); }
.btn-primary svg { transition:transform .2s; }
.btn-primary:hover svg { transform:translateX(4px); }
.btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 24px; border-radius:26px;
  background:transparent; color:var(--terra);
  font-family:var(--sans); font-size:14px; font-weight:600;
  border:1.5px solid var(--terra); cursor:pointer; transition:all .2s;
}
.btn-ghost:hover { background:var(--terra-lt); }

.hero-stats {
  display:flex; gap:32px; margin-top:32px;
  padding-top:24px; border-top:1px solid var(--border);
}
.stat-num {
  font-family:var(--serif); font-size:28px; font-weight:900;
  color:var(--ink); line-height:1;
  display:flex; align-items:baseline; gap:2px;
}
.stat-num sup { font-size:12px; color:var(--terra); font-family:var(--sans); font-weight:700; }
.stat-label { font-size:11px; color:var(--muted); font-weight:600; margin-top:3px; }

/* Orbit scene */
.orbit-scene { position:relative; width:380px; height:380px; }
.orbit-ring {
  position:absolute; border-radius:50%;
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.orbit-ring-outer {
  width:100%; height:100%;
  border:1px solid rgba(200,224,32,.12);
  animation:orbitSpin 30s linear infinite;
}
.orbit-ring-inner {
  width:62%; height:62%;
  border:1px solid rgba(200,224,32,.07);
  animation:orbitSpin 20s linear infinite reverse;
}
@keyframes orbitSpin { to { transform:translate(-50%,-50%) rotate(360deg); } }

.plant-pod {
  position:absolute;
  width:60px; height:60px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(20,40,20,.55);
  border:1px solid rgba(200,224,32,.18);
  transition:transform .3s, border-color .3s, box-shadow .3s;
  cursor:default;
}
.plant-pod:hover {
  transform:scale(1.15);
  border-color:rgba(200,224,32,.45);
  box-shadow:0 0 20px rgba(200,224,32,.12);
}
.plant-pod svg { width:38px; height:38px; }
.pp-top    { top:-30px;    left:50%; margin-left:-30px; }
.pp-bottom { bottom:-30px; left:50%; margin-left:-30px; }
.pp-left   { left:-30px;   top:50%; margin-top:-30px; }
.pp-right  { right:-30px;  top:50%; margin-top:-30px; }

.pod-sm {
  position:absolute;
  width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(25,45,22,.5);
  border:1px solid rgba(200,224,32,.1);
}
.pod-sm svg { width:30px; height:30px; }
.ps-top    { top:-23px;    left:50%; margin-left:-23px; }
.ps-bottom { bottom:-23px; left:50%; margin-left:-23px; }

.plant-label {
  position:absolute;
  font-size:8px; font-weight:600;
  color:rgba(255,255,255,.3);
  text-transform:uppercase; letter-spacing:.08em;
  white-space:nowrap; pointer-events:none;
}
.pl-top    { top:-50px;    left:50%; transform:translateX(-50%); }
.pl-bottom { bottom:-50px; left:50%; transform:translateX(-50%); }
.pl-left   { left:-90px;   top:50%; transform:translateY(-50%); }
.pl-right  { right:-88px;  top:50%; transform:translateY(-50%); }

/* Triangle */
.tri-center {
  position:absolute;
  top:50%; left:50%; transform:translate(-50%,-50%);
  z-index:3;
}
.tri-glow {
  position:absolute; width:130px; height:130px;
  top:50%; left:50%; transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(200,224,32,.1) 0%,transparent 60%);
  animation:triPulse 3.5s ease-in-out infinite;
  pointer-events:none;
}
@keyframes triPulse {
  0%,100% { opacity:.4; transform:translate(-50%,-50%) scale(1); }
  50%     { opacity:1;  transform:translate(-50%,-50%) scale(1.14); }
}
.tri-svg {
  width:66px; height:66px;
  filter:drop-shadow(0 0 14px rgba(200,224,32,.18));
  position:relative; z-index:1;
}
@keyframes triDraw {
  from { stroke-dasharray:220; stroke-dashoffset:220; }
  to   { stroke-dasharray:220; stroke-dashoffset:0; }
}
.tri-outer      { animation:triDraw 2.2s ease .5s both; }
.tri-inner-line { animation:triDraw 2.2s ease 1s both; }

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {
  .orbit-ring-outer, .orbit-ring-inner { animation:none; }
  .tri-outer, .tri-inner-line { animation:none; stroke-dashoffset:0; }
  .tri-glow { animation:none; opacity:.5; }
  .hero-left { animation:none; opacity:1; }
  .hero-right { animation:none; opacity:1; }
}

/* ── TRUST BAR ── */
.trust-bar { background:var(--lime); padding:0 40px; overflow:hidden; }
.trust-inner {
  max-width:var(--max); margin:0 auto;
  display:flex; align-items:center; gap:48px;
  height:52px; white-space:nowrap;
}
.trust-item {
  display:flex; align-items:center; gap:8px;
  font-size:12.5px; font-weight:700; color:var(--ink);
  text-transform:uppercase; letter-spacing:.08em; flex-shrink:0;
}
.trust-dot { width:4px; height:4px; background:var(--ink); border-radius:50%; opacity:.35; }

/* ── FEATURED ARTICLE ── */
.featured-section { padding:64px 40px 0; }
.featured-inner { max-width:var(--max); margin:0 auto; }
.section-label {
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:.14em; color:var(--muted); margin-bottom:20px;
  display:flex; align-items:center; gap:10px;
}
.section-label::before {
  content:''; display:block; width:24px; height:2px; background:var(--terra);
}

.featured-grid {
  display:grid; grid-template-columns:1.5fr 1fr;
  gap:24px; margin-bottom:24px;
}
.feat-main {
  background:var(--ink); border-radius:24px;
  padding:40px; position:relative; overflow:hidden;
  cursor:pointer; min-height:380px;
  display:flex; flex-direction:column; justify-content:flex-end;
  transition:transform .25s;
}
.feat-main:hover { transform:scale(1.01); }

/* Gradient overlay when card has a background image */
.feat-main.has-cover::after {
  content:''; position:absolute; inset:0; border-radius:inherit; pointer-events:none; z-index:0;
}
.feat-main.has-cover.text-light::after {
  background:linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.05) 100%);
}
.feat-main.has-cover.text-dark::after {
  background:linear-gradient(to top, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.55) 55%, rgba(255,255,255,0.1) 100%);
}

.feat-main.text-light {
  --feat-title:#fff;
  --feat-lead:rgba(255,255,255,.65);
  --feat-meta:rgba(255,255,255,.45);
  --feat-btn-bg:rgba(255,255,255,.12);
  --feat-btn-text:#fff;
  --feat-btn-border:rgba(255,255,255,.2);
}
.feat-main.text-dark {
  --feat-title:#111;
  --feat-lead:rgba(17,17,17,.8);
  --feat-meta:rgba(17,17,17,.7);
  --feat-btn-bg:rgba(17,17,17,.08);
  --feat-btn-text:#111;
  --feat-btn-border:rgba(17,17,17,.25);
}
.feat-deco {
  position:absolute; top:-80px; right:-80px;
  width:320px; height:320px; border-radius:50%;
  background:var(--sage); opacity:.2; pointer-events:none;
}
.feat-tag {
  position:absolute; top:28px; left:28px;
  background:var(--lime); color:var(--ink);
  font-size:11px; font-weight:800; text-transform:uppercase;
  letter-spacing:.09em; padding:5px 14px; border-radius:22px;
  z-index:1;
}
.feat-title {
  font-family:var(--serif); font-size:clamp(22px,2.5vw,30px);
  font-weight:700; color:var(--feat-title,#fff); line-height:1.25;
  margin-bottom:12px; letter-spacing:-.3px; position:relative; z-index:1;
}
.feat-lead { color:var(--feat-lead,rgba(255,255,255,.65)); font-size:14px; line-height:1.65; margin-bottom:22px; position:relative; z-index:1; }
.feat-meta { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:24px; position:relative; z-index:1; }
.feat-meta span { font-size:12px; color:var(--feat-meta,rgba(255,255,255,.45)); display:flex; align-items:center; gap:5px; }
.read-btn {
  display:inline-flex; align-items:center; gap:8px; width:fit-content;
  padding:11px 24px; border-radius:24px;
  background:var(--feat-btn-bg,rgba(255,255,255,.12)); color:var(--feat-btn-text,#fff);
  font-family:var(--sans); font-size:13px; font-weight:600;
  border:1px solid var(--feat-btn-border,rgba(255,255,255,.2)); cursor:pointer;
  transition:all .2s; position:relative; z-index:1;
}
.read-btn:hover { background:var(--lime); color:var(--ink); border-color:var(--lime); }
.read-btn svg { transition:transform .2s; }
.read-btn:hover svg { transform:translateX(4px); }

.feat-side { display:flex; flex-direction:column; gap:16px; }
.feat-side-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:20px; padding:22px;
  cursor:pointer; transition:all .22s; flex:1;
  display:flex; flex-direction:column; justify-content:space-between;
  position:relative; overflow:hidden;
}
.feat-side-card::before {
  content:''; position:absolute; top:0; left:0;
  width:4px; height:100%; background:var(--terra);
  transform:scaleY(0); transform-origin:top; transition:transform .22s;
}
.feat-side-card:hover::before { transform:scaleY(1); }
.feat-side-card:hover { border-color:var(--terra); transform:translateX(4px); box-shadow:0 4px 20px rgba(196,97,26,.1); }
.fsc-cat { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--terra); margin-bottom:8px; }
.fsc-title { font-family:var(--serif); font-size:16px; font-weight:700; color:var(--ink); line-height:1.4; margin-bottom:10px; }
.fsc-meta { font-size:12px; color:var(--muted); }

/* ── SECTIONS ── */
.secs-section { padding:56px 40px 0; }
.secs-inner { max-width:var(--max); margin:0 auto; }
.secs-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:24px; }
.secs-head h2 { font-family:var(--serif); font-size:30px; font-weight:700; letter-spacing:-.3px; }
.see-all { font-size:13px; font-weight:600; color:var(--terra); display:flex; align-items:center; gap:4px; cursor:pointer; }
.see-all:hover { gap:8px; transition:gap .18s; }

.secs-grid {
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:12px;
}
.sec-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:20px; padding:20px 16px;
  cursor:pointer; transition:all .2s;
  display:flex; flex-direction:column; align-items:center;
  text-align:center; gap:10px;
}
.sec-card:hover, .sec-card.active {
  border-color:var(--moss);
  background:var(--sage-light);
  box-shadow:0 4px 16px rgba(46,74,40,.1);
  transform:translateY(-3px);
}
.sec-icon { font-size:28px; line-height:1; }
.sec-name { font-size:13px; font-weight:700; color:var(--ink); }
.sec-count { font-size:11.5px; color:var(--muted); }

/* ── ARTICLES GRID ── */
.arts-section { padding:56px 40px 0; }
.arts-inner { max-width:var(--max); margin:0 auto; }
.arts-head { display:flex; align-items:baseline; gap:14px; margin-bottom:28px; }
.arts-head h2 { font-family:var(--serif); font-size:30px; font-weight:700; letter-spacing:-.3px; }
.arts-count { color:var(--muted); font-size:14px; }

.arts-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(320px, 1fr));
  gap:20px;
}
.art-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:22px; overflow:hidden;
  cursor:pointer; transition:all .22s;
  display:flex; flex-direction:column;
}
.art-card:hover {
  transform:translateY(-5px);
  box-shadow:0 12px 36px rgba(26,31,20,.12);
  border-color:transparent;
}
.art-thumb {
  height:200px; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  font-size:64px;
}
.art-thumb-overlay {
  position:absolute; inset:0;
  background:linear-gradient(160deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.15));
}
.art-badge {
  position:absolute; top:16px; left:16px;
  font-size:10.5px; font-weight:800; text-transform:uppercase;
  letter-spacing:.07em; padding:5px 12px; border-radius:20px;
}
.bg-moss   { background:var(--moss); color:#fff; }
.bg-terra  { background:var(--terra); color:#fff; }
.bg-lime   { background:var(--lime); color:var(--ink); }
.bg-brown  { background:#6b3d1a; color:#fff; }
.art-body-card { padding:22px; flex:1; display:flex; flex-direction:column; }
.art-title { font-family:var(--serif); font-size:17px; font-weight:700; line-height:1.35; color:var(--ink); margin-bottom:10px; }
.art-lead  { color:var(--muted); font-size:13.5px; line-height:1.65; flex:1; margin-bottom:18px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.art-footer {
  display:flex; align-items:center; justify-content:space-between;
  font-size:12px; color:var(--muted);
  border-top:1px solid var(--border); padding-top:14px;
}
.art-more { display:flex; align-items:center; gap:5px; color:var(--terra); font-weight:700; font-size:12.5px; transition:gap .18s; }
.art-card:hover .art-more { gap:8px; }

/* ── ABOUT BLOCK ── */
.about-section { padding:64px 40px 80px; }
.about-inner { max-width:var(--max); margin:0 auto; }
.about-card {
  background:var(--ink); border-radius:28px;
  padding:0; position:relative; overflow:hidden;
  display:grid; grid-template-columns:1fr 1.4fr;
}
.about-left {
  background:var(--moss); padding:56px 48px;
  display:flex; flex-direction:column; justify-content:space-between;
  position:relative; overflow:hidden;
}
.about-left-deco {
  position:absolute; bottom:-60px; left:-60px;
  width:220px; height:220px; border-radius:50%;
  background:rgba(255,255,255,.06);
}
.about-av-img {
  width:130px; height:130px; border-radius:50%;
  object-fit:cover; object-position:center top;
  border:2.5px solid rgba(200,224,32,.35);
  margin-bottom:20px;
  box-shadow:0 4px 20px rgba(0,0,0,.25);
}
.about-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.4); margin-bottom:6px; }
.about-name { font-family:var(--serif); font-size:32px; font-weight:900; color:#fff; margin-bottom:4px; }
.about-handle { font-size:13px; color:rgba(255,255,255,.45); }
.about-stats { display:flex; gap:32px; margin-top:32px; }
.about-stat-num { font-family:var(--serif); font-size:28px; font-weight:900; color:var(--lime); line-height:1; }
.about-stat-label { font-size:12px; color:rgba(255,255,255,.4); margin-top:4px; }

.about-right { padding:56px 48px; }
.about-bio {
  font-family:var(--serif); font-style:italic;
  font-size:20px; line-height:1.65; color:rgba(255,255,255,.85);
  margin-bottom:28px; letter-spacing:-.1px;
}
.about-body { font-size:14.5px; line-height:1.8; color:rgba(255,255,255,.55); margin-bottom:32px; }
.about-tags { display:flex; flex-wrap:wrap; gap:8px; }
.about-tag {
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  border-radius:22px; padding:6px 16px;
  font-size:13px; color:rgba(255,255,255,.7);
  transition:background .18s; cursor:default;
}
.about-tag:hover { background:rgba(200,224,32,.15); border-color:rgba(200,224,32,.3); color:var(--lime); }

/* ── ARTICLE PAGE ── */
.art-pg { max-width:760px; margin:0 auto; padding:0 28px 80px; }
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-size:13px; color:var(--muted); padding:28px 0 0;
}
.breadcrumb a { color:var(--sage); cursor:pointer; font-weight:500; }
.breadcrumb a:hover { text-decoration:underline; }
.breadcrumb sep { color:var(--border); }
.art-pg-header { padding:28px 0 24px; }
.art-pg-tag {
  display:inline-block; background:var(--terra); color:#fff;
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:.09em; padding:5px 14px; border-radius:20px; margin-bottom:18px;
}
.art-pg-h1 {
  font-family:var(--serif); font-size:clamp(28px, 4vw, 44px);
  font-weight:900; line-height:1.15; letter-spacing:-.5px;
  margin-bottom:16px; color:var(--ink);
}
.art-pg-lead {
  font-family:var(--serif); font-style:italic;
  color:var(--muted); font-size:18px; line-height:1.65;
  margin-bottom:20px;
}
.art-pg-meta {
  display:flex; align-items:center; gap:18px; flex-wrap:wrap;
  font-size:13px; color:var(--muted);
  padding-bottom:24px; border-bottom:2px solid var(--border);
}
.art-pg-author { display:flex; align-items:center; gap:9px; color:var(--ink-mid); font-weight:600; }
.art-av { width:32px; height:32px; border-radius:50%; background:var(--sage-light); display:flex; align-items:center; justify-content:center; font-size:15px; }
.art-cover {
  height:380px; border-radius:24px;
  display:flex; align-items:center; justify-content:center;
  font-size:96px; margin:28px 0;
  background:var(--sage-light);
}
.art-body { font-size:16px; line-height:1.85; color:var(--ink); }
.art-body h2 { font-family:var(--serif); font-size:26px; font-weight:700; margin:42px 0 16px; color:var(--ink); letter-spacing:-.3px; }
.art-body h3 { font-family:var(--serif); font-size:21px; font-weight:700; margin:28px 0 12px; color:var(--ink); }
.art-body p { margin-bottom:20px; }
.art-body ul, .art-body ol { padding-left:26px; margin-bottom:20px; }
.art-body li { margin-bottom:8px; }
.art-body blockquote {
  border-left:4px solid var(--lime-dark); padding:18px 24px;
  background:var(--sage-light); border-radius:0 14px 14px 0;
  margin:28px 0; color:var(--moss);
  font-style:italic; font-size:16px; line-height:1.75;
  font-family:var(--serif);
}
.art-body strong { color:var(--moss); font-weight:700; }
.art-tags { margin:40px 0 32px; display:flex; flex-wrap:wrap; gap:8px; }
.art-tag {
  background:var(--cream-dark); border:1.5px solid var(--border);
  border-radius:22px; padding:6px 16px;
  font-size:13px; color:var(--muted); cursor:pointer; transition:all .18s;
}
.art-tag:hover { border-color:var(--terra); color:var(--terra); background:var(--terra-lt); }
.art-nav { display:grid; grid-template-columns:1fr 1fr; gap:12px; border-top:2px solid var(--border); padding-top:28px; }
.art-nav-btn {
  padding:20px 24px; border-radius:20px;
  background:var(--white); border:1.5px solid var(--border);
  cursor:pointer; transition:all .2s;
}
.art-nav-btn:hover { border-color:var(--moss); box-shadow:0 4px 18px rgba(46,74,40,.1); }
.art-nav-btn small { display:block; font-size:11px; color:var(--muted); margin-bottom:5px; text-transform:uppercase; letter-spacing:.08em; }
.art-nav-btn span { font-size:14px; font-weight:600; color:var(--ink); display:block; }
.art-nav-btn.right { text-align:right; }

/* ── RELATED ── */
.related-bg { background:var(--cream-dark); border-top:1px solid var(--border); padding:48px 0 64px; }
.related-in { max-width:var(--max); margin:0 auto; padding:0 40px; }
.related-in h3 { font-family:var(--serif); font-size:24px; font-weight:700; margin-bottom:24px; }
.related-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:16px; }

/* ── FOOTER ── */
footer { background:var(--ink); padding:60px 40px 36px; }
.ft-in {
  max-width:var(--max); margin:0 auto;
  display:grid; grid-template-columns:2.4fr 1fr 1fr; gap:56px;
  margin-bottom:48px;
}
.ft-brand .logo { color:#fff; margin-bottom:16px; font-size:17px; }
.ft-brand .logo-mark { background:var(--moss); }
.ft-brand p { font-size:13.5px; color:rgba(255,255,255,.45); line-height:1.75; max-width:280px; }
.ft-tagline {
  display:inline-block; margin-top:16px;
  background:rgba(200,224,32,.15); border:1px solid rgba(200,224,32,.25);
  border-radius:22px; padding:6px 14px;
  font-size:12px; color:var(--lime); font-weight:600;
}
.ft-col h4 { font-size:11.5px; font-weight:700; color:rgba(255,255,255,.35); text-transform:uppercase; letter-spacing:.12em; margin-bottom:16px; }
.ft-col a { display:block; font-size:14px; color:rgba(255,255,255,.55); margin-bottom:12px; transition:color .18s; }
.ft-col a:hover { color:#fff; }
.ft-bottom {
  max-width:var(--max); margin:0 auto;
  border-top:1px solid rgba(255,255,255,.08); padding-top:24px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
  font-size:12px; color:rgba(255,255,255,.28);
}

/* ── MOBILE NAV ── */
.mob-nav { display:none; position:fixed; inset:0; background:var(--cream); z-index:300; flex-direction:column; padding:28px; }
.mob-nav.open { display:flex; }
.mob-nav-hd { display:flex; justify-content:space-between; align-items:center; margin-bottom:36px; }
.mob-nav a { display:block; font-size:18px; font-weight:500; padding:16px 0; border-bottom:1px solid var(--border); color:var(--ink); }
.close-x { background:none; border:none; font-size:30px; cursor:pointer; color:var(--muted); line-height:1; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .secs-grid { grid-template-columns:repeat(3, 1fr); }
  .about-card { grid-template-columns:1fr; }
  .about-right { padding:36px 40px 40px; }
}
@media(max-width:900px) {
  .hero-grid { grid-template-columns:1fr; }
  .hero-right { flex-direction:row; gap:12px; }
  .stat-card { flex:1; }
  .featured-grid { grid-template-columns:1fr; }
  .ft-in { grid-template-columns:1fr; gap:32px; }
}
@media(max-width:640px) {
  .hdr { padding:0 16px; }
  nav { display:none; }
  .hdr-cta { display:none; }
  .burger { display:flex; }
  .hero-section, .featured-section, .secs-section, .arts-section, .about-section, .teaser-section { padding-left:16px; padding-right:16px; }
  .arts-grid { grid-template-columns:1fr; }
  .secs-grid { grid-template-columns:repeat(2, 1fr); }
  .art-nav { grid-template-columns:1fr; }
  .hero-right { flex-direction:column; }
  .related-in { padding:0 16px; }
  footer { padding:40px 16px 28px; }
  .about-left, .about-right { padding:36px 24px; }
  .ft-in { gap:24px; }
  .feat-main { padding:24px; padding-top:64px; min-height:auto; }
  .feat-tag { top:18px; left:18px; font-size:10px; padding:4px 12px; }
  .feat-title { font-size:20px; }
  .feat-lead { font-size:13px; }
  .feat-meta { gap:8px; }
  .feat-meta span { font-size:11px; }
}

/* ── CONDITIONS PAGE ── */
.conds-section { padding:56px 40px 0; }
.conds-inner { max-width:var(--max); margin:0 auto; }
.conds-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:28px; }
.conds-head h2 { font-family:var(--serif); font-size:30px; font-weight:700; letter-spacing:-.3px; }

.conds-intro {
  background:var(--moss); border-radius:24px;
  padding:40px 48px; margin-bottom:40px;
  position:relative; overflow:hidden;
  display:grid; grid-template-columns:1.4fr 1fr; gap:40px; align-items:center;
}
.conds-intro::before {
  content:''; position:absolute; top:-80px; right:-80px;
  width:300px; height:300px; border-radius:50%;
  background:rgba(200,224,32,.08); pointer-events:none;
}
.conds-intro-left h3 {
  font-family:var(--serif); font-size:clamp(22px,2.5vw,30px);
  font-weight:700; color:#fff; margin-bottom:12px; line-height:1.25;
}
.conds-intro-left p {
  color:rgba(255,255,255,.55); font-size:14px; line-height:1.7;
}
.conds-intro-pills { display:flex; flex-wrap:wrap; gap:8px; }
.conds-intro-pill {
  padding:7px 16px; border-radius:22px;
  font-size:12.5px; font-weight:600;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15);
  color:rgba(255,255,255,.8); cursor:pointer; transition:all .18s;
}
.conds-intro-pill:hover { background:var(--lime); border-color:var(--lime); color:var(--ink); }

.conds-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
  gap:20px; margin-bottom:20px;
}
.cond-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:22px; padding:28px;
  cursor:pointer; transition:all .22s;
  position:relative; overflow:hidden;
}
.cond-card::after {
  content:''; position:absolute;
  top:0; left:0; right:0; height:4px; border-radius:4px 4px 0 0;
}
.cond-card.c-neuro::after  { background:#c0392b; }
.cond-card.c-sleep::after  { background:#6c5ce7; }
.cond-card.c-energy::after { background:var(--terra); }
.cond-card.c-vasc::after   { background:#2980b9; }
.cond-card.c-immune::after { background:var(--moss); }
.cond-card.c-focus::after  { background:var(--lime-dark); }
.cond-card:hover {
  transform:translateY(-5px);
  box-shadow:0 12px 36px rgba(26,31,20,.1);
  border-color:transparent;
}
.cond-card-icon { font-size:32px; margin-bottom:14px; line-height:1; display:block; }
.cond-card h3 { font-family:var(--serif); font-size:19px; font-weight:700; margin-bottom:8px; line-height:1.3; }
.cond-card-desc { font-size:13.5px; color:var(--muted); line-height:1.65; margin-bottom:18px; }
.cond-card-helps { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); margin-bottom:10px; }
.cond-chips { display:flex; flex-wrap:wrap; gap:6px; }
.cond-chip {
  padding:4px 12px; border-radius:20px;
  font-size:11.5px; font-weight:600;
  background:var(--cream); border:1px solid var(--border);
  color:var(--ink-mid); transition:all .15s; cursor:pointer;
}
.cond-chip:hover { border-color:var(--moss); color:var(--moss); background:var(--sage-light); }

/* Condition detail page */
.cond-detail-hero {
  background:var(--moss); padding:56px 40px 48px;
  position:relative; overflow:hidden;
}
.cond-detail-hero::before {
  content:''; position:absolute; top:-60px; right:-60px;
  width:280px; height:280px; border-radius:50%;
  background:rgba(200,224,32,.08); pointer-events:none;
}
.cond-detail-inner { max-width:var(--max); margin:0 auto; position:relative; z-index:1; }
.cond-detail-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(200,224,32,.15); border:1px solid rgba(200,224,32,.3);
  color:var(--lime); font-size:11px; font-weight:700;
  text-transform:uppercase; letter-spacing:.12em;
  padding:5px 14px; border-radius:22px; margin-bottom:18px;
}
.cond-detail-h1 {
  font-family:var(--serif); font-size:clamp(28px,3.5vw,44px);
  font-weight:900; color:#fff; line-height:1.15;
  margin-bottom:14px; letter-spacing:-.3px;
}
.cond-detail-lead { color:rgba(255,255,255,.6); font-size:15px; line-height:1.7; max-width:580px; margin-bottom:28px; }
.cond-adapt-row { display:flex; flex-wrap:wrap; gap:10px; }
.cond-adapt-btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 18px; border-radius:22px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18);
  color:#fff; font-family:var(--sans); font-size:13px; font-weight:600;
  cursor:pointer; transition:all .2s;
}
.cond-adapt-btn:hover { background:var(--lime); border-color:var(--lime); color:var(--ink); }

.cond-detail-body { max-width:var(--max); margin:0 auto; padding:48px 40px 80px; }
.cond-detail-body h3 { font-family:var(--serif); font-size:22px; font-weight:700; margin-bottom:20px; }

/* ── PSYCHOLOGY PAGE ── */
.psych-section { padding:56px 40px 0; }
.psych-inner { max-width:var(--max); margin:0 auto; }

.psych-hero {
  background:var(--ink); border-radius:28px;
  padding:56px 56px 48px; margin-bottom:40px;
  position:relative; overflow:hidden;
  display:grid; grid-template-columns:1.3fr 1fr; gap:48px; align-items:center;
}
.psych-hero::before {
  content:''; position:absolute; bottom:-100px; right:-100px;
  width:360px; height:360px; border-radius:50%;
  background:rgba(108,92,231,.12); pointer-events:none;
}
.psych-hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(108,92,231,.2); border:1px solid rgba(108,92,231,.35);
  color:#a29bfe; font-size:11px; font-weight:700;
  text-transform:uppercase; letter-spacing:.12em;
  padding:5px 14px; border-radius:22px; margin-bottom:18px;
}
.psych-hero h2 {
  font-family:var(--serif); font-size:clamp(24px,3vw,36px);
  font-weight:900; color:#fff; line-height:1.2; margin-bottom:14px;
}
.psych-hero p { color:rgba(255,255,255,.5); font-size:14px; line-height:1.7; }
.psych-hero-methods { display:flex; flex-direction:column; gap:12px; position:relative; z-index:1; }
.psych-method-card {
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:16px; padding:16px 20px;
  cursor:pointer; transition:all .2s;
  display:flex; align-items:center; gap:14px;
}
.psych-method-card:hover { background:rgba(108,92,231,.2); border-color:rgba(108,92,231,.4); transform:translateX(6px); }
.psych-method-icon { font-size:24px; flex-shrink:0; }
.psych-method-name { font-size:14px; font-weight:700; color:#fff; margin-bottom:3px; }
.psych-method-desc { font-size:12px; color:rgba(255,255,255,.4); }

.psych-cats { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:28px; }
.psych-cat-btn {
  padding:7px 18px; border-radius:22px;
  font-size:13px; font-weight:600; color:var(--muted);
  background:var(--white); border:1.5px solid var(--border);
  cursor:pointer; transition:all .18s; font-family:var(--sans);
}
.psych-cat-btn:hover { border-color:var(--ink); color:var(--ink); }
.psych-cat-btn.active { background:var(--ink); color:#fff; border-color:var(--ink); }

.psych-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(320px, 1fr));
  gap:20px;
}
.psych-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:22px; overflow:hidden;
  cursor:pointer; transition:all .22s;
}
.psych-card:hover {
  transform:translateY(-5px);
  box-shadow:0 12px 36px rgba(26,31,20,.1);
  border-color:transparent;
}
.psych-card-head {
  padding:28px 28px 20px;
  border-bottom:1px solid var(--border);
  position:relative;
}
.psych-badge {
  display:inline-block; padding:4px 12px; border-radius:20px;
  font-size:10.5px; font-weight:800; text-transform:uppercase; letter-spacing:.07em;
  margin-bottom:14px;
}
.bg-purple { background:#ede9fe; color:#5b21b6; }
.bg-blue   { background:#dbeafe; color:#1e40af; }
.bg-orange { background:#ffedd5; color:#9a3412; }
.psych-card-h3 { font-family:var(--serif); font-size:18px; font-weight:700; line-height:1.35; color:var(--ink); margin-bottom:10px; }
.psych-card-lead { font-size:13px; color:var(--muted); line-height:1.65; }
.psych-card-body { padding:20px 28px 24px; }
.psych-card-for { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); margin-bottom:10px; }
.psych-for-tags { display:flex; flex-wrap:wrap; gap:6px; }
.psych-for-tag {
  padding:4px 12px; border-radius:20px;
  font-size:12px; font-weight:600;
  background:var(--cream); border:1px solid var(--border); color:var(--ink-mid);
  cursor:pointer; transition:all .15s;
}
.psych-for-tag:hover { border-color:var(--terra); color:var(--terra); }
.psych-card-footer {
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 28px; border-top:1px solid var(--border);
  font-size:12px; color:var(--muted);
}
.psych-card-more { color:var(--terra); font-weight:700; display:flex; align-items:center; gap:4px; }

/* Synergy block (used on condition detail page) */
.synergy-block {
  background:var(--cream-dark); border-radius:20px;
  padding:28px 32px; margin-top:32px;
  border:1.5px solid var(--border);
}
.synergy-block h4 { font-family:var(--serif); font-size:18px; font-weight:700; margin-bottom:8px; }
.synergy-block p { font-size:14px; color:var(--muted); line-height:1.7; }

/* ── RESPONSIVE additions ── */
@media(max-width:900px) {
  .conds-intro { grid-template-columns:1fr; padding:32px; }
  .psych-hero { grid-template-columns:1fr; padding:36px 32px; }
  .cond-detail-hero { padding:40px 24px 36px; }
  .cond-detail-body { padding:36px 24px 60px; }
}
@media(max-width:640px) {
  .conds-section, .psych-section { padding-left:16px; padding-right:16px; }
  .conds-grid { grid-template-columns:1fr; }
  .psych-grid { grid-template-columns:1fr; }
  .cond-detail-body { padding:28px 16px 48px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.art-card { animation:fadeUp .4s ease both; }
.art-card:nth-child(1) { animation-delay:.04s; }
.art-card:nth-child(2) { animation-delay:.10s; }
.art-card:nth-child(3) { animation-delay:.16s; }
.art-card:nth-child(4) { animation-delay:.22s; }
.art-card:nth-child(5) { animation-delay:.28s; }
.art-card:nth-child(6) { animation-delay:.32s; }

/* ── HERO RESPONSIVE ── */
@media (max-width:900px) {
  .hero-section { grid-template-columns:1fr; }
  .hero-left { padding:40px 28px 32px; }
  .hero-right { min-height:360px; }
  .orbit-scene { width:300px; height:300px; }
  .hero-h1 { font-size:32px; }
  .hero-stats { gap:20px; }
}
@media (max-width:640px) {
  .hero-left { padding:28px 20px 24px; }
  .hero-right { min-height:300px; }
  .orbit-scene { width:240px; height:240px; }
  .plant-pod { width:48px; height:48px; }
  .plant-pod svg { width:30px; height:30px; }
  .pp-top    { top:-24px; margin-left:-24px; }
  .pp-bottom { bottom:-24px; margin-left:-24px; }
  .pp-left   { left:-24px; margin-top:-24px; }
  .pp-right  { right:-24px; margin-top:-24px; }
  .pod-sm { width:38px; height:38px; }
  .pod-sm svg { width:24px; height:24px; }
  .ps-top    { top:-19px; margin-left:-19px; }
  .ps-bottom { bottom:-19px; margin-left:-19px; }
  .hero-stats { flex-wrap:wrap; gap:16px; }
  .plant-label { font-size:7px; }
}

/* Вводный текст страниц справочников */
#adaptogens-page-desc,
#adaptogens-page-body,
#adaptogens-page-body p,
#adaptogens-page-body h2,
#adaptogens-page-body h3,
#adaptogens-page-body li {
  color: rgba(255,255,255,0.85) !important;
}

/* ==========================================================================
   Перенесено из inline <style> в index.html — 2026-04-21
   ========================================================================== */

/* --- Блок 1: teaser sections on home --- */
/* ── TEASER SECTIONS ON HOME ── */
.teaser-section { padding:56px 0 0; }
.teaser-inner { max-width:var(--max); margin:0 auto; padding:0 40px; }
.teaser-head {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:28px; gap:20px; flex-wrap:wrap;
}
.teaser-head h2 {
  font-family:var(--serif); font-size:30px; font-weight:700;
  letter-spacing:-.3px; margin:0;
}
.teaser-all-btn { white-space:nowrap; font-size:13px; }
.teaser-grid { display:grid; gap:16px; }
.teaser-grid-4 { grid-template-columns:repeat(4,1fr); }
.teaser-grid-2 { grid-template-columns:repeat(2,1fr); }

/* Teaser condition mini-cards */
.teaser-cond-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:22px; padding:24px 20px; cursor:pointer;
  transition:all .25s; position:relative; overflow:hidden;
}
.teaser-cond-card:hover {
  transform:translateY(-4px);
  box-shadow:0 10px 30px rgba(26,31,20,.1);
  border-color:transparent;
}
.teaser-cond-card .tc-icon { font-size:28px; margin-bottom:10px; display:block; line-height:1; }
.teaser-cond-card .tc-name {
  font-family:var(--serif); font-size:16px; font-weight:700;
  margin-bottom:6px; color:var(--ink); line-height:1.3;
}
.teaser-cond-card .tc-desc {
  font-size:12.5px; color:var(--muted); line-height:1.55; margin-bottom:14px;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.teaser-cond-card .tc-chips { display:flex; flex-wrap:wrap; gap:5px; }
.teaser-cond-card .tc-chip {
  font-size:10.5px; padding:3px 10px; border-radius:20px;
  background:var(--sage-light); color:var(--moss); font-weight:600;
  border:1px solid transparent;
}

/* Gender teaser cards */
.teaser-gender-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:22px; padding:32px 28px; cursor:pointer;
  transition:all .25s; position:relative; overflow:hidden;
}
.teaser-gender-card:hover {
  transform:translateY(-4px);
  box-shadow:0 10px 30px rgba(26,31,20,.1);
  border-color:transparent;
}
.teaser-gender-card .tg-icon { font-size:36px; margin-bottom:14px; display:block; line-height:1; }
.teaser-gender-card .tg-name {
  font-family:var(--serif); font-size:20px; font-weight:700;
  margin-bottom:8px; color:var(--ink); line-height:1.3;
}
.teaser-gender-card .tg-desc {
  font-size:13.5px; color:var(--muted); line-height:1.65; margin-bottom:18px;
}
.teaser-gender-card .tg-adapts { display:flex; flex-wrap:wrap; gap:6px; }
.teaser-gender-card .tg-adapt {
  font-size:11.5px; padding:4px 12px; border-radius:20px;
  background:var(--sage-light); color:var(--moss); font-weight:600;
}

/* Adaptogen teaser cards */
.teaser-adapt-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:22px; padding:24px 20px; cursor:pointer;
  transition:all .25s; text-align:center;
}
.teaser-adapt-card:hover {
  transform:translateY(-4px);
  box-shadow:0 10px 30px rgba(26,31,20,.1);
  border-color:transparent;
}
.teaser-adapt-card .ta-icon { font-size:36px; margin-bottom:10px; display:block; line-height:1; }
.teaser-adapt-card .ta-name {
  font-family:var(--serif); font-size:16px; font-weight:700;
  margin-bottom:4px; color:var(--ink);
}
.teaser-adapt-card .ta-latin {
  font-size:11.5px; color:var(--muted); font-style:italic; margin-bottom:12px;
}
.teaser-adapt-card .ta-tag {
  font-size:10.5px; padding:4px 12px; border-radius:20px;
  background:var(--sage-light); color:var(--moss); font-weight:600;
  display:inline-block;
}

/* Responsive teasers */
@media(max-width:900px) {
  .teaser-grid-4 { grid-template-columns:repeat(2,1fr); }
  .teaser-grid-2 { grid-template-columns:1fr 1fr; }
  .teaser-inner { padding:0 20px; }
}
@media(max-width:640px) {
  .teaser-grid-4 { grid-template-columns:1fr; }
  .teaser-grid-2 { grid-template-columns:1fr; }
  .teaser-head { flex-direction:column; align-items:flex-start; }
  .teaser-section { padding:40px 0 0; }
}

/* --- Блок 2: cookie banner --- */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #fff;
  border: 1.5px solid var(--lime, #c8e020);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  padding: 16px 18px;
  width: 300px;
  animation: cookieSlide .35s ease;
}
@keyframes cookieSlide {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#cookie-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#cookie-text strong {
  font-family: var(--serif, serif);
  font-size: 14px;
  color: #1a1a1a;
}
#cookie-text span {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}
#cookie-btns {
  display: flex;
  gap: 8px;
}
#cookie-decline {
  flex: 1;
  padding: 8px;
  border: 1.5px solid #ddd;
  background: #fff;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  color: #555;
  transition: border-color .2s;
}
#cookie-decline:hover { border-color: #888; }
#cookie-accept {
  flex: 1;
  padding: 8px;
  border: none;
  background: var(--moss, #2e4a28);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: opacity .2s;
}
#cookie-accept:hover { opacity: .85; }
@media (max-width: 480px) {
  #cookie-banner { bottom: 16px; right: 16px; left: 16px; width: auto; }
}
