:root {
  --green: #2f7a2c;
  --green-dark: #1c4f1a;
  --orange: #e85a1c;
  --red: #c62828;
  --cream: #f7f3e8;
  --ink: #1a1a1a;
  --muted: #4d564b;
  --paper: #ffffff;
  --font-d: "Bricolage Grotesque", system-ui, sans-serif;
  --font-b: "Nunito", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.center { text-align: center; }
.lead { font-size: 1.15rem; line-height: 1.55; color: var(--muted); font-weight: 700; }
.lead.center { max-width: 46rem; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  color: var(--orange);
  margin: 0 0 10px;
}
.kicker {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border: 2.5px solid #111;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  margin: 0 0 16px;
}
h1, h2, h3 { font-family: var(--font-d); line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 0 0 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 3px solid #111;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 0 #111;
}
.btn:hover { transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; box-shadow: 0 4px 0 rgba(0,0,0,.25); }
.btn-outline.dark { color: var(--ink); background: #fff; box-shadow: 0 4px 0 #111; }
.btn-red { background: var(--red); }
.btn-sm { padding: 10px 14px; font-size: .9rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.link { display: inline-block; margin-left: 14px; font-weight: 800; color: var(--green-dark); }

.top {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px;
  background: rgba(247,243,232,.95);
  border-bottom: 3px solid #111;
  backdrop-filter: blur(8px);
}
.logo { font-family: var(--font-d); font-weight: 800; font-size: 1.15rem; text-decoration: none; color: var(--green-dark); }
.logo span { color: var(--orange); }
.top nav { display: none; gap: 22px; font-weight: 800; }
.top nav a { text-decoration: none; color: var(--muted); }
.top nav a:hover { color: var(--green-dark); }
@media (min-width: 900px) { .top nav { display: flex; } }

.hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(232,90,28,.15), transparent 40%),
    linear-gradient(180deg, #e7f5df, var(--cream));
  padding: 40px 0 20px;
}
.hero-grid {
  display: grid; gap: 28px; align-items: center;
}
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }
.hero h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); margin: 0; color: var(--green-dark); }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-art img {
  border: 4px solid #111;
  border-radius: 28px;
  box-shadow: 0 12px 0 rgba(0,0,0,.12);
}

.benefits { padding: 28px 0 10px; }
.cards-4, .cards-3 {
  display: grid; gap: 16px;
}
@media (min-width: 800px) {
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}
.benefits article, .method-cards article, .book {
  background: #fff;
  border: 3px solid #111;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 8px 0 rgba(0,0,0,.08);
}
.benefits img {
  width: 88px; height: 88px; object-fit: cover; border-radius: 18px;
  border: 2.5px solid #111; margin-bottom: 12px;
}
.benefits h3 { margin: 0; font-size: 1.05rem; }

.strip {
  padding: 40px 0;
}
.strip-grid {
  display: grid; gap: 24px; align-items: center;
  background: var(--green);
  color: #fff;
  border: 4px solid #111;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
}
@media (min-width: 900px) { .strip-grid { grid-template-columns: 1.1fr .9fr; } }
.strip-grid > div { padding: 28px; }
.strip-grid img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.strip h2 { color: #fff; }
.strip p { color: rgba(255,255,255,.92); font-weight: 700; line-height: 1.5; }

.problem {
  padding: 50px 0;
  background: #1a1a1a;
  color: #fff;
}
.problem h2 { color: #fff; }
.problem .lead { color: rgba(255,255,255,.8); max-width: 48rem; }
.quote {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 6px solid var(--orange);
  background: rgba(255,255,255,.06);
  border-radius: 0 16px 16px 0;
}
.quote strong { display: block; font-size: 1.2rem; margin-bottom: 6px; }

.method { padding: 56px 0; }
.method-cards .num {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 8px;
}
.method-cards h3 { margin: 0 0 8px; }
.method-cards p { margin: 0; color: var(--muted); font-weight: 700; }

.trainings { padding: 20px 0 50px; }
.product.big {
  display: grid; gap: 0;
  margin-top: 24px;
  background: #fff;
  border: 4px solid #111;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 0 rgba(0,0,0,.1);
}
@media (min-width: 900px) {
  .product.big { grid-template-columns: .95fr 1.05fr; }
  .product.big.reverse { grid-template-columns: 1.05fr .95fr; }
  .product.big.reverse img { order: 2; }
}
.product.big img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; border-right: 4px solid #111; }
.product.big.reverse img { border-right: 0; border-left: 4px solid #111; }
.product.big > div { padding: 28px; }
.tag {
  display: inline-block;
  background: #fff3e8;
  border: 2px solid #111;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  font-size: .85rem;
  margin: 0 0 12px;
}
.product h3 { margin: 0 0 12px; font-size: clamp(1.4rem, 3vw, 1.9rem); }
.product p { color: var(--muted); font-weight: 700; line-height: 1.5; }
.product ul { padding-left: 18px; color: var(--muted); font-weight: 700; }
.product ul li { margin: 6px 0; }
.product .btn { margin-top: 8px; }

.books { padding: 40px 0 50px; background: #eaf6e4; }
.book img {
  height: 180px; width: 100%; object-fit: cover;
  border: 3px solid #111; border-radius: 16px; margin-bottom: 12px;
}
.book h3 { margin: 0 0 8px; }
.book p { margin: 0; color: var(--muted); font-weight: 700; }

.final { padding: 40px 0 60px; }
.final-box {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border: 4px solid #111;
  border-radius: 28px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 12px 0 rgba(0,0,0,.12);
}
.final-box h2 { color: #fff; }
.final-box p { font-weight: 700; opacity: .95; max-width: 40rem; }

.foot {
  border-top: 4px solid #111;
  background: #111;
  color: rgba(255,255,255,.8);
  padding: 28px 0;
  font-weight: 700;
  font-size: .92rem;
}
.foot a { color: #fff; }
.foot p { margin: 0 0 8px; }
