
/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Titillium Web', 'Roboto', sans-serif; color: #111; background: #fff; line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.5em; }
li { margin-bottom: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---------- Header ---------- */
.site-header { background: #a5a4a42c; }

.adbar {
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 6px 0;
  font-size: .82rem;
  letter-spacing: .04em;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #203500;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  height: 76px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.nav-menu a:hover { border-bottom-color: #88a649; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .28s, opacity .28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  color: #fff;
  /* фон задаётся inline в html — надёжнее */
  background-color: #2a4a1a; /* fallback */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 80px 20px 60px;
}

.hero-tag {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateX(300px);
  animation: slideRight 1.5s ease .5s forwards;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0,0,0,.4);
  max-width: 700px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(300px);
  animation: slideRight 1.5s ease .5s forwards;
}

.hero-text {
  font-size: 1.25rem;
  max-width: 580px;
  text-shadow: 2px 2px 8px rgba(0,0,0,.4);
  line-height: 1.7;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateX(300px);
  animation: slideRight 1.5s ease .5s forwards;
}

@keyframes slideRight {
  to { opacity: 1; transform: translateX(0); }
}

/* ---------- Intro ---------- */
.intro {
  background: #f2f2f2;
  padding: 60px 20px 58px;
  text-align: center;
}

.intro-eyebrow {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.intro-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 845px;
  margin: 0 auto 24px;
}

.intro-body {
  font-size: 1rem;
  color: #333;
  line-height: 1.85;
  text-align: left;
  max-width: 845px;
  margin: 0 auto 58px;
}

/* ---------- Ingredient rows ---------- */
.ingr-section { padding: 0; }
.ingr-section.white-bg { background: #fff; }

.ingr-pair {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 0 12px;
}

.ingr-row {
  display: flex;
  align-items: center;
  min-height: 470px;
}
.ingr-row.rev { flex-direction: row-reverse; }

/* image side */
.ingr-img {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 470px;
}

.ingr-img img {
  width: 430px;
  height: 430px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  flex-shrink: 0;
  display: block;
}

.ingr-img img.pos-banana  { object-position: 55% 50%; }
.ingr-img img.pos-potato  { object-position: 50% 34%; }

/* text side */
.ingr-text {
  flex: 0 0 50%;
  padding: 30px 29px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ingr-h { font-size: 1.5rem; font-weight: 700; margin: 0 1px 16px; line-height: 1.3; }
.ingr-sub { font-family: 'Montserrat', sans-serif; font-size: 1.125rem; color: #333; margin: 0 1px 20px; line-height: 1.6; }
.ingr-list { font-size: .95rem; color: #333; line-height: 1.8; margin: 0 1px; }
.ingr-list li { margin-bottom: 8px; }

/* ---------- Product section ---------- */
.product-section { background: #f2f2f2; overflow: visible; }

.product-inner {
  display: flex;
  align-items: stretch;
  max-width: 1170px;
  margin: 40px auto 0;
}

.product-img {
  flex: 0 0 45%;
  min-height: 576px;
  display: flex;
  align-items: flex-end;
  padding: 27px 30px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  max-width: 420px;
  height: 524px;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.product-text {
  flex: 1;
  padding: 29px 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-h { font-size: 2.25rem; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.product-sub { font-family: 'Montserrat', sans-serif; font-size: 1.125rem; color: #333; margin-bottom: 20px; line-height: 1.6; }
.product-ingr { font-size: .95rem; color: #333; line-height: 1.9; margin-bottom: 20px; }
.product-cta { font-family: 'Montserrat', sans-serif; font-size: 1.125rem; color: #111; line-height: 1.6; margin-bottom: 24px; }

/* --- Цена --- */
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: #203500;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
}
.price-tag .plabel { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .8; }
.price-tag .pval   { font-size: 2rem; font-weight: 700; line-height: 1; }
.price-tag .pcur   { font-size: 1rem; font-weight: 600; opacity: .9; }

/* ---------- Benefits ---------- */
.benefits { background: #fff; padding: 40px 0 0; }

.ben-inner {
  display: flex;
  align-items: stretch;
  max-width: 1170px;
  margin: 0 auto;
}

.ben-left { flex: 0 0 50%; padding: 33px 0; }
.ben-title { font-size: 2.25rem; font-weight: 700; text-align: center; margin-bottom: 30px; }

.ben-grid {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 5px));
  gap: 10px;
  min-height: 374px;
}

.ben-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ben-card h5 { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; line-height: 1.4; }

.ben-right {
  flex: 0 0 50%;
  padding: 20px 25px 23px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.ben-right img {
  width: 100%;
  max-width: 468px;
  height: 467px;
  object-fit: cover;
  object-position: 0% 50%;
  border-radius: 20px;
  display: block;
}

/* ---------- CTA / Form ---------- */
.cta {
  background: #3f5322;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.cta-title { font-size: 2.25rem; font-weight: 700; margin: 12px auto 0; }

.cta-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 20px auto 0;
}

.lead-form {
  width: 100%;
  max-width: 721px;
  margin: 23px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

/* --- БЕЛЫЕ прямоугольные поля --- */
.lead-form input,
.lead-form textarea {
  display: block;
  width: 100%;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #111;
  font-family: 'Titillium Web', sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s;
}
.lead-form input:focus,
.lead-form textarea:focus { border-color: #88a649; }
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: #888; }
.lead-form textarea { resize: vertical; min-height: 90px; }

.btn-send {
  display: block;
  width: 100%;
  padding: 14px 0 15px;
  background: #c6e092;
  color: #111;
  border: none;
  border-radius: 10px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-send:hover { background: #111; color: #fff; }
.btn-send:disabled { opacity: .6; cursor: not-allowed; }

.form-msg { display: none; padding: 12px; border-radius: 4px; font-size: .95rem; text-align: center; margin-top: 4px; }
.msg-ok  { background: rgba(198,224,146,.25); color: #c6e092; }
.msg-err { background: rgba(249,93,81,.2);    color: #f95d51; }

.hp { position: absolute; left: -9999px; height: 0; opacity: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #303329;
  color: rgba(255,255,255,.65);
  padding: 40px 20px;
  text-align: center;
  line-height: 1.7;
}
.ft-lic  { font-size: .75rem; opacity: .8; margin-bottom: 18px; }
.ft-disc { max-width: 860px; margin: 0 auto 18px; font-size: .82rem; }
.ft-refs { margin-bottom: 12px; }
.ft-refs a, .ft-legal a {
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  margin: 0 10px;
  text-decoration: underline;
  transition: color .2s;
}
.ft-refs a:hover, .ft-legal a:hover { color: #c6e092; }
.ft-legal a { font-size: .78rem; opacity: .8; }

/* ---------- Static pages ---------- */
.static-page { max-width: 860px; margin: 60px auto 80px; padding: 0 20px; }
.static-page h1 { font-size: 2rem; font-weight: 700; margin-bottom: 30px; }
.static-page h2 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 10px; }
.static-page p, .static-page li { font-size: .95rem; color: #333; line-height: 1.8; margin-bottom: 10px; }

/* ---------- Send page ---------- */
.send-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; text-align: center; }
.send-box { max-width: 520px; }
.send-icon { font-size: 4rem; margin-bottom: 20px; }
.send-box h1 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.send-box p  { font-size: 1rem; color: #444; line-height: 1.7; margin-bottom: 28px; }
.btn-back { display: inline-block; padding: 12px 32px; background: #88a649; color: #fff; border-radius: 8px; font-size: 1rem; font-weight: 600; transition: background .2s; }
.btn-back:hover { background: #6d8c38; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1199px) {
  .hero-title { font-size: 3.75rem; }
  .ingr-img img { width: 195px; height: 195px; }
  .product-inner { flex-direction: column; }
  .product-img { flex: none; min-height: auto; }
  .product-img img { height: 360px; max-width: 100%; }
  .ben-right img { height: 378px; }
  .intro-body { margin-left: 48px; margin-right: 48px; }
}

@media (max-width: 991px) {
  .hero { min-height: 574px; }
  .hero-title { font-size: 3rem; }
  .hero-text { font-size: 1.125rem; margin-bottom: 60px; }
  .intro-title { font-size: 2.25rem; }

  .ingr-row, .ingr-row.rev { flex-direction: column; }
  .ingr-img { flex: none; width: 100%; min-height: auto; padding: 20px 10px; }
  .ingr-img img { width: 100%; max-width: 400px; height: auto; aspect-ratio: 1; }
  .ingr-text { flex: none; width: 100%; min-height: auto; padding: 20px 10px; }

  .ben-inner { flex-direction: column; }
  .ben-left, .ben-right { flex: none; width: 100%; }
  .ben-right img { height: auto; max-height: 400px; }

  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: #203500;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 13px 20px; display: block; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .9rem; }

  .lead-form { max-width: 464px; }
  .cta-sub { margin-left: 43px; margin-right: 43px; }
}

@media (max-width: 767px) {
  .hero { min-height: 431px; }
  .hero-title { font-size: 2.25rem; }
  .intro { padding: 40px 16px; }
  .intro-title { font-size: 1.875rem; }
  .intro-body { margin-left: 0; margin-right: 0; }
  .ben-grid { grid-template-columns: 1fr; }
  .cta-sub { margin-left: 0; margin-right: 0; }
  .lead-form { max-width: 100%; }
}

@media (max-width: 575px) {
  .hero { min-height: 271px; }
  .hero-title { font-size: 2rem; }
  .intro-title { font-size: 1.875rem; }
  .cta-title { font-size: 1.875rem; }
  .ben-title { font-size: 1.875rem; }
  .ben-right img { height: 284px; }
  .price-tag .pval { font-size: 1.6rem; }
}

/* ── Logo text ── */
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
}

.logo-text strong {
  font-weight: 700;
  color: #88a649; /* твой фирменный зелёный */
}

/* Footer logo */
.ft-logo {
  text-align: center;
  margin-bottom: 1.4rem;
}

.ft-logo .logo-text {
  font-size: 1.4rem;
  color: #ccc;
}