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

body {
  font-family: Segoe UI, Arial, sans-serif;
  color: #2c2c2c;
  background: #f5f6f3;
  font-size: 15px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-top {
  background: #ffffff;
  border-bottom: 1px solid #e4e8e0;
  padding: 12px 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-block,
.schedule-block,
.contact-brief {
  min-width: 0;
}

.brand-logo {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #2a6030;
  line-height: 1.1;
}

.brand-note {
  margin-top: 3px;
  font-size: 11px;
  color: #7a8a72;
}

.header-label {
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #3a7d44;
}

.schedule-line {
  font-size: 12px;
  color: #5a6b52;
  line-height: 1.4;
}

.contact-brief {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.phone-link {
  font-size: 15px;
  font-weight: 700;
}

.mail-link {
  font-size: 12px;
  color: #3a7d44;
}

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:focus-visible,
.nav-links a:focus-visible,
.nav-mobile a:focus-visible,
.brand-logo:focus-visible,
.phone-link:focus-visible,
.mail-link:focus-visible,
.inline-link:focus-visible,
.footer-contact a:focus-visible,
.contact-value a:focus-visible {
  outline: 2px solid #3a7d44;
  outline-offset: 2px;
}

.btn-green {
  padding: 7px 16px;
  font-size: 13px;
  color: #ffffff;
  background: #3a7d44;
}

.btn-green:hover {
  background: #2d6235;
}

.btn-outline {
  padding: 7px 16px;
  font-size: 13px;
  color: #3a7d44;
  background: #ffffff;
  border: 1.5px solid #3a7d44;
}

.btn-outline:hover {
  color: #ffffff;
  background: #3a7d44;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #2a6030;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a,
.nav-mobile a {
  color: rgba(255, 255, 255, 0.85);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a {
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active,
.nav-mobile a:hover,
.nav-mobile a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
}

.nav-mobile {
  display: none;
}

.nav-mobile.open {
  display: flex;
  flex-direction: column;
  background: #2a6030;
}

.nav-mobile a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 20px;
  font-size: 14px;
}

.hero-section,
.page-hero,
.content-section {
  border-bottom: 1px solid #e4e8e0;
}

.hero-section {
  background: #ffffff;
  padding: 56px 0 48px;
}

.page-hero {
  background: #ffffff;
  padding: 40px 0 34px;
}

.section-mark {
  width: 48px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 2px;
  background: #3a7d44;
}

.hero-section h1 {
  max-width: 640px;
  margin-bottom: 12px;
  color: #1e3d22;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-section p,
.page-hero p {
  max-width: 560px;
  margin-bottom: 28px;
  color: #5a6b52;
  font-size: 16px;
}

.page-hero h1 {
  margin-bottom: 12px;
  color: #1e3d22;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-actions .btn {
  padding: 11px 28px;
  font-size: 15px;
}

.content-section {
  padding: 48px 0;
  background: #ffffff;
}

.section-muted {
  background: #f5f6f3;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  margin-bottom: 10px;
  color: #1e3d22;
  font-size: 28px;
  line-height: 1.25;
}

.section-line {
  width: 40px;
  height: 3px;
  background: #3a7d44;
}

.product-grid,
.adv-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.prod-card,
.adv-card,
.preview-card,
.contact-block,
.hours-block {
  background: #ffffff;
  border: 1px solid #e4e8e0;
  border-radius: 8px;
}

.prod-card {
  padding: 20px 16px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.prod-card:hover,
.adv-card:hover,
.preview-card:hover {
  border-color: #b8d4bc;
  box-shadow: 0 4px 16px rgba(58, 125, 68, 0.1);
}

.preview-card {
  display: block;
  padding: 20px 18px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.preview-icon {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1;
}

.preview-card strong {
  display: block;
  margin-bottom: 8px;
  color: #1e3d22;
  font-size: 16px;
}

.preview-card p {
  color: #6a7a62;
  font-size: 13px;
  line-height: 1.55;
}

.card-emoji {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 1;
}

.prod-card h3 {
  margin-bottom: 8px;
  color: #1e3d22;
  font-size: 15px;
  font-weight: 700;
}

.prod-card p {
  color: #6a7a62;
  font-size: 13px;
  line-height: 1.5;
}

.about-text {
  max-width: 720px;
  color: #3c4c38;
  font-size: 15px;
  line-height: 1.75;
}

.about-text p + p {
  margin-top: 12px;
}

.adv-card {
  padding: 20px;
  border-left: 3px solid #3a7d44;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.adv-emoji {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1;
}

.adv-card h3 {
  margin-bottom: 8px;
  color: #1e3d22;
  font-size: 14px;
  font-weight: 700;
}

.adv-card p {
  color: #6a7a62;
  font-size: 13px;
  line-height: 1.5;
}

.req-wrap {
  padding: 24px 28px;
  border: 1px solid #e4e8e0;
  border-radius: 8px;
  background: #ffffff;
}

.req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.req-table tr {
  border-bottom: 1px solid #eaede6;
}

.req-table tr:last-child {
  border-bottom: 0;
}

.req-table td {
  padding: 10px 0;
  vertical-align: top;
}

.req-table td:first-child {
  width: 220px;
  padding-right: 16px;
  color: #7a8a72;
  font-size: 13px;
}

.req-table td:last-child {
  color: #2c2c2c;
  font-weight: 500;
}

.inline-link {
  color: #3a7d44;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-block {
  padding: 24px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #eaf3de;
  font-size: 16px;
}

.contact-label {
  margin-bottom: 2px;
  color: #7a8a72;
  font-size: 12px;
}

.contact-value,
.contact-value a {
  color: #1e3d22;
  font-size: 14px;
  font-weight: 700;
}

.contact-actions {
  margin-top: 20px;
  gap: 10px;
}

.hours-block {
  padding: 24px;
  border-color: #c8dfc0;
  background: #eaf3de;
}

.hours-label {
  margin-bottom: 12px;
  color: #3a7d44;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hours-row {
  margin-bottom: 10px;
}

.hours-day {
  color: #7a8a72;
  font-size: 13px;
}

.hours-time {
  color: #1e3d22;
  font-size: 16px;
  font-weight: 700;
}

.hours-row-off {
  margin-bottom: 0;
  padding-top: 12px;
  border-top: 1px solid #b8d4bc;
}

.hours-off {
  color: #6a7a62;
  font-size: 14px;
  font-weight: 500;
}

.site-footer {
  background: #1e3d22;
  padding: 28px 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.footer-note {
  color: #8aaa88;
  font-size: 11px;
}

.footer-contact a {
  display: block;
  margin-bottom: 3px;
  color: #c8d8c4;
  font-size: 13px;
  text-align: right;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  color: #6a8a68;
  font-size: 11px;
}

@media (max-width: 920px) {
  .header-top-inner {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .header-top-inner {
    align-items: flex-start;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .product-grid,
  .adv-grid,
  .preview-grid,
  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 16px;
  }

  .header-actions,
  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .product-grid,
  .adv-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .req-wrap {
    padding: 18px 16px;
  }

  .req-table td:first-child {
    width: 140px;
    font-size: 12px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact a {
    text-align: center;
  }
}
