:root {
  --brand: #1E7D3E;
  --brand-dark: #145229;
  --brand-darker: #0E3B1D;
  --cream: #F8F5EC;
  --ink: #16281B;
  --muted: #5C6B5F;
  --line: #E7E2D3;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* Header */
.site-header {
  background: var(--brand-darker);
  padding: 9px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo-wrap img {height: 65px;}
.site-header nav { display: flex; align-items: center; gap: 28px; font-size: 14px; color: #D9E4DB; }
.site-header nav a { text-decoration: none; color: inherit; }
.site-header nav a:hover { color: #fff; }
.phone-badge { background: var(--brand); color: #fff; padding: 8px 16px; border-radius: 3px; font-weight: 500; }
.phone-badge a { text-decoration: none; color: #fff; }

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,59,29,0.88) 0%, rgba(14,59,29,0.55) 55%, rgba(14,59,29,0.25) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 560px; }
.eyebrow { color: #C9E6D2; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px; }
.hero h1 { font-size: 46px; color: #fff; line-height: 1.2; margin-bottom: 18px; }
.hero p { font-size: 16px; color: #E3EEE5; margin-bottom: 32px; max-width: 460px; }

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
}
.btn:hover { background: #237F41; }
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 13px 30px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  margin-left: 12px;
}

/* USP bar */
.usp-bar { background: var(--cream); padding: 28px 0; border-bottom: 1px solid #EAE4D2; }
.usp-bar .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.usp-item p.title { font-weight: 500; font-size: 14px; margin-bottom: 4px; color: var(--brand-dark); }
.usp-item p.desc { font-size: 13px; color: var(--muted); }

/* Sections */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.section-head .kicker { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.section-head h2 { font-size: 32px; color: var(--brand-darker); margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 15px; }

/* Product lines (homepage) */
.lines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.line-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; transition: box-shadow 0.2s ease; }
.line-card:hover { box-shadow: 0 10px 30px rgba(20,82,41,0.12); }
.line-card .img-wrap { background: var(--cream); padding: 24px; display: flex; align-items: center; justify-content: center; height: 240px; }
.line-card .img-wrap img { max-height: 100%; width: auto; }
.line-card .body { padding: 22px 24px 26px; }
.line-tag { display: inline-block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--brand); background: rgba(30,125,62,0.09); padding: 4px 10px; border-radius: 2px; margin-bottom: 10px; }
.line-card h3 { font-size: 20px; color: var(--brand-darker); margin-bottom: 8px; }
.line-card p.desc { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.line-link { font-size: 13px; color: var(--brand); text-decoration: none; font-weight: 500; }
.line-link:hover { text-decoration: underline; }

/* Why us */
.why-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-block img { border-radius: 6px; }
.why-list { list-style: none; }
.why-list li { display: flex; gap: 14px; margin-bottom: 22px; }
.why-num { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; }
.why-text .t { font-weight: 500; font-size: 15px; margin-bottom: 3px; color: var(--ink); }
.why-text .d { font-size: 13.5px; color: var(--muted); }

/* Process */
.process-section { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.process-card { background: #fff; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
.process-card img { height: 220px; object-fit: cover; width: 100%; }
.process-card .body { padding: 20px 22px; }
.process-step { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand); margin-bottom: 6px; }
.process-card h3 { font-size: 18px; color: var(--brand-darker); margin-bottom: 6px; }
.process-card p { font-size: 13.5px; color: var(--muted); }

/* Gallery strip */
.gallery-strip { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; }
.gallery-strip img { border-radius: 6px; height: 100%; object-fit: cover; }
.gallery-strip .side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker)); color: #fff; text-align: center; padding: 56px 28px; }
.cta-band h2 { color: #fff; font-size: 28px; margin-bottom: 14px; }
.cta-band p { color: #CFE3D3; margin-bottom: 26px; }

/* Footer */
.site-footer { background: var(--brand-darker); color: #B9CABD; padding: 40px 0 24px; font-size: 13px; }
.site-footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.site-footer .col p { margin-bottom: 6px; }
.site-footer .col a { text-decoration: none; }
.site-footer .col a:hover { color: #fff; }
.site-footer .col .h { color: #fff; font-weight: 500; margin-bottom: 10px; font-size: 13px; }
.footer-bottom { text-align: center; color: #6E836F; font-size: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }

/* Catalog grid */
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 48px; }
.catalog-card { display: block; text-decoration: none; border: 1px solid var(--line); border-radius: 8px; padding: 14px; transition: box-shadow 0.15s ease; }
.catalog-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.catalog-card img { width: 100%; height: 160px; object-fit: cover; border-radius: 6px; margin-bottom: 10px; }
.catalog-card-body h3 { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px; margin-bottom: 6px; color: var(--ink); }
.price { font-weight: 600; margin: 0 0 4px; color: var(--brand-dark); }
.stock { font-size: 13px; margin: 0; }
.stock.yes { color: var(--brand); }
.stock.no { color: #B71C1C; }

.no-image { width: 100%; height: 160px; border-radius: 6px; margin-bottom: 10px; background: var(--cream); display: flex; align-items: center; justify-content: center; color: #90A294; font-size: 13px; text-align: center; padding: 8px; }
.no-image.large { height: 320px; }

/* FAQ */
.faq { margin-top: 40px; }
.faq h2 { margin-bottom: 16px; color: var(--brand-darker); }
.faq details { border: 1px solid var(--line); border-radius: 8px; padding: 12px 16px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 500; }
.faq p { margin: 10px 0 0; color: var(--muted); font-family: 'Inter', sans-serif; }

/* Product page */
.breadcrumbs { font-size: 13px; color: #90A294; margin: 24px 0 20px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; padding-bottom: 64px; }
.product-layout img { width: 100%; border-radius: 8px; object-fit: cover; }
.product-info h1 { margin-top: 0; color: var(--brand-darker); }
.product-info .price { font-size: 22px; }
.product-info .description { color: var(--muted); margin: 16px 0; font-family: 'Inter', sans-serif; }

/* About section */
.about-block { max-width: 760px; margin: 0 auto; text-align: left; }
.about-block h2 { font-size: 30px; color: var(--brand-darker); margin-bottom: 20px; text-align: center; }
.about-block p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.dlf-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--brand-dark);
  text-align: center;
  border: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin: 28px 0;
}

/* Seed advantages */
.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.advantage-item { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 20px; }
.advantage-item .t { font-weight: 500; font-size: 14.5px; color: var(--brand-darker); margin-bottom: 8px; }
.advantage-item .d { font-size: 13px; color: var(--muted); }

/* Articles */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.article-card img { height: 160px; object-fit: cover; width: 100%; }
.article-card .body { padding: 18px 20px; }
.article-card h3 { font-size: 17px; color: var(--brand-darker); margin-bottom: 8px; }
.article-card p { font-size: 13.5px; color: var(--muted); font-family: 'Inter', sans-serif; }

/* Contacts */
.contacts-block { display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; align-items: start; }
.contacts-details { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; }
.contact-row { margin-bottom: 18px; }
.contact-row .t { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--brand); margin-bottom: 4px; }
.contact-row .d { font-size: 15px; color: var(--ink); }
.contact-row a { text-decoration: none; }
.contacts-map { border-radius: 8px; overflow: hidden; border: 1px solid var(--line); line-height: 0; }

/* Product page actions */
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-whatsapp { background: #25D366; }
.btn-whatsapp:hover { background: #1EBE5A; }

/* Article pages */
.article-page { padding-bottom: 64px; }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body > .kicker { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.article-body h1 { font-size: 32px; color: var(--brand-darker); margin-bottom: 20px; }
.article-cover { width: 100%; height: 320px; object-fit: cover; border-radius: 8px; margin-bottom: 28px; }
.article-content h2 { font-size: 21px; color: var(--brand-darker); margin: 28px 0 12px; }
.article-content p { color: var(--muted); font-size: 15px; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.article-cta {
  margin-top: 40px;
  padding: 24px;
  background: var(--cream);
  border-radius: 8px;
  text-align: center;
}
.article-cta p { margin-bottom: 14px; font-weight: 500; color: var(--ink); }
.article-cta .btn { margin: 0 6px; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Floating contact buttons */
.floating-contacts {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}
.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  text-decoration: none;
}
.fab-whatsapp { background: #25D366; }
.fab-phone { background: var(--brand); }
.fab-telegram { background: #229ED9; }
.fab:hover { filter: brightness(1.08); }

@media (max-width: 860px) {
  .lines-grid, .process-grid, .why-block, .usp-bar .container, .product-layout { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: 1fr; }
  .contacts-block { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
}

/* ÐœÐ¾Ð±Ð¸Ð»ÑŒÐ½Ð¾Ðµ Ð¼ÐµÐ½ÑŽ */
@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-darker);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 28px 20px;
  }
  .site-header nav.is-open { display: flex; }
  .site-header nav a { padding: 10px 0; width: 100%; }
  .phone-badge { margin-top: 8px; }

  .hero { min-height: 460px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
  section { padding: 48px 0; }
  .cta-band h2 { font-size: 22px; }

  .site-footer .container { flex-direction: column; gap: 28px; }

  .fab { width: 46px; height: 46px; }
  .floating-contacts { right: 14px; bottom: 14px; gap: 10px; }
}

@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}
