:root{
    --green:#0f3401;
    --gold:#d4a017;
    --light:#f9f9f9;
}
*{box-sizing:border-box}
body { margin:0; font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; line-height:1.6; color:#333; background:#fff; overflow-x:hidden; scroll-behavior:smooth; }

/* Header */
header { background:var(--green); color:#fff; padding:12px 20px; display:flex; align-items:center; justify-content:space-between; position:sticky; top:0; z-index:100; }
.brand { display:flex; align-items:center; gap:14px; }
.brand img{ height:96px; }

nav{ display:flex; gap:22px; align-items:center; }
nav a{ color:#fff; text-decoration:none; font-weight:600; }

.burger{ display:none; width:32px; height:24px; position:relative; cursor:pointer; margin-left:12px; }
.burger span{ position:absolute; left:0; width:100%; height:3px; background:#fff; transition:.3s; border-radius:3px; }
.burger span:nth-child(1){ top:0; }
.burger span:nth-child(2){ top:10px; }
.burger span:nth-child(3){ bottom:0; }
.burger.open span:nth-child(1){ transform:translateY(10px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-10px) rotate(-45deg); }

/* Hero */
.hero{ background:var(--green); color:#fff; text-align:center; padding:80px 20px; }
.hero h1{ font-size:2.2rem; margin:0 0 12px; opacity:0; transform:translateY(24px); transition:all .7s ease; }

.btn{ background:var(--gold); color:#111; border:none; padding:14px 24px; font-size:1rem; border-radius:8px; cursor:pointer; transition:.25s; }
.btn:hover{ filter:brightness(.92); }

/* Sections */
section{ padding:60px 20px; max-width:1100px; margin:auto; opacity:0; transform:translateY(26px); transition:all .8s ease; }
section.visible{ opacity:1 !important; transform:translateY(0) !important; }

.features{ display:flex; gap:20px; flex-wrap:wrap; }
.feature{ flex:1; min-width:240px; background:var(--light); padding:22px; border-radius:10px; text-align:center; }

.catalog{ display:grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap:20px; }
.catalog-item{ border:1px solid #eee; border-radius:10px; overflow:hidden; text-align:center; background:#fff; }
.catalog-item img{ width:100%; height:300px; object-fit:cover; }

.mission-quote {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  max-width: 900px;
  margin: 40px auto;
}
.mission-quote .highlight {
  color: var(--green);
  font-weight: 700;
}
.mission-quote .gold {
  color: var(--gold);
  font-weight: 700;
}
.belief-section {
  text-align: center;
  padding: 50px 20px;
  position: relative;
}
.belief-section::before,
.belief-section::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: 20px auto;
  border-radius: 2px;
}
.mission-quote {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* News slider */
.news{ position:relative; overflow:hidden; }
.news-track{ display:flex; transition:transform .4s ease; }
.news-card {
  min-width:100%;
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  padding:22px 60px;   /* 🚀 добавили отступы слева и справа */
  display:flex;
  flex-direction:column;
  gap:10px;
  color: #222;
}
.news-badge{ background:var(--gold); color:#fff; padding:4px 8px; border-radius:999px; font-size:.8rem; font-weight:700; }
.news-title{ margin:6px 0 4px; font-size:1.1rem; font-weight:700; }
.news-date{ color:#444; font-size:.9rem; }
.slider-btn {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  border:1px solid #ddd;
  width:38px;
  height:38px;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
}
.slider-btn.left { left:10px; }
.slider-btn.right { right:10px; }

/* FAQ */
.faq{ max-width:900px; }
details{ background:#fff; border:1px solid #eee; border-radius:10px; padding:14px 18px; margin-bottom:12px; }
summary{ cursor:pointer; font-weight:600; }

/* Contacts (map + info) */
.contact-grid{ display:grid; grid-template-columns:1.3fr .7fr; gap:24px; }
.map-wrap{ position:relative; padding-top:56%; border-radius:10px; overflow:hidden; border:1px solid #eee; }
.map-wrap iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.contact-card{ background:#fff; border:1px solid #eee; border-radius:10px; padding:18px; }

.contacts-page {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f7f7f7;
  border-radius: 50%;
  font-weight: bold;
  text-decoration: none;
  color: #222;
  border: 1px solid #ddd;
  transition: all 0.25s;
}
.soc:hover {
  background: var(--gold);
  color: #fff;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Socials */
.socials{ display:flex; gap:12px; justify-content:center; margin-top:10px; }
.soc{ width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; background:#ffffff; border:1px solid #e5e5e5; transition:.2s; }
.soc:hover{ transform:translateY(-2px); }
.soc svg{ width:22px; height:22px; fill:#222; }

/* Footer */
footer{ background:var(--green); color:#fff; text-align:center; padding:22px 20px; opacity:0; transition:opacity .8s ease; }
footer.visible{ opacity:1; }

/* Mobile */
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
@media (max-width: 768px){
    nav{ display:none; flex-direction:column; gap:16px; background:var(--green); position:absolute; top:100%; left:0; width:100%; padding:14px 20px; }
    nav.active{ display:flex; animation: slideDown .3s ease forwards; }
    .burger{ display:block; }
    .brand img{ height:84px; }
}
@keyframes slideDown{ from{ opacity:0; transform:translateY(-10px);} to{ opacity:1; transform:translateY(0);} }