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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #121a16;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

.main {
  min-height: 60vh;
}

.container {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 1320px;
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
}

.section--alt, .section--cream {
  background-color: #ffffff;
}

.section--dark {
  background: linear-gradient(135deg, #124f30 0%, #1a6b42 48%, #165b38 100%);
  color: #ffffff;
}

.section--dark .section-head__title,
.section--dark .section__title {
  color: #ffffff;
}

.section--dark .section-head__title::after,
.section--dark .section__title::after {
  background: linear-gradient(90deg, #e0b44a 0%, rgba(255, 255, 255, 0.5) 100%);
}

.section--dark .section__subtitle,
.section--dark .section-head__subtitle {
  color: rgba(255, 255, 255, 0.88);
}

.section--dark .stats__number {
  color: #ffffff;
}

.section--dark .stats__label {
  color: rgba(255, 255, 255, 0.82);
}

.section--dark .stats__item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  backdrop-filter: blur(6px);
}

.section--dark .stats__grid {
  background: transparent;
  border: none;
  gap: 1rem;
}

.section__header {
  margin-bottom: 2rem;
}

.section__label {
  display: none;
}

.section__title {
  font-family: "PT Serif", "PT Sans", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #121a16;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  letter-spacing: -0.01em;
  position: relative;
  margin-bottom: 0.75rem;
}

.section__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a6b42 0%, #c9922a 100%);
}

.section__subtitle {
  font-size: 1rem;
  color: #5a6a60;
  line-height: 1.7;
  max-width: 640px;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-head__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-head__title {
  font-family: "PT Serif", "PT Sans", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #121a16;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  letter-spacing: -0.01em;
  position: relative;
}

.section-head__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a6b42 0%, #c9922a 100%);
}

.section-head--center .section-head__title::after {
  margin-left: auto;
  margin-right: auto;
}

.section-head__subtitle {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #5a6a60;
  max-width: 640px;
  line-height: 1.7;
}

.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.section-head--row .section-head__title::after {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #1e7b4c 0%, #1a6b42 55%, #124f30 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(26, 107, 66, 0.28);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #1a6b42 0%, #124f30 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 107, 66, 0.35);
}

.btn--gold {
  background: linear-gradient(135deg, #e0b44a 0%, #c9922a 50%, #9a7020 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(201, 146, 42, 0.3);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #c9922a 0%, #9a7020 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 146, 42, 0.38);
}

.btn--pill {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
}

.btn--ghost {
  background-color: transparent;
  color: #121a16;
  border: 1.5px solid rgba(18, 26, 22, 0.09);
}

.btn--ghost:hover {
  border-color: #1a6b42;
  color: #1a6b42;
  background: #e5f3eb;
}

.btn--ghost-light {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost-light:hover {
  background: #ffffff;
  color: #1a6b42;
}

.btn--outline-dark {
  background: transparent;
  color: #121a16;
  border: 2px solid #121a16;
}

.btn--outline-dark:hover {
  background: #121a16;
  color: #ffffff;
}

.btn--wood {
  background: linear-gradient(135deg, #c9924e 0%, #a86f32 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(168, 111, 50, 0.28);
}

.btn--wood:hover {
  background: #a86f32;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(168, 111, 50, 0.35);
}

.btn--light {
  background-color: #ffffff;
  color: #1a6b42;
}

.btn--light:hover {
  background-color: #e5f3eb;
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: #ffffff;
  color: #1a6b42;
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.6875rem;
}

.btn--full {
  width: 100%;
}

.u-center {
  text-align: center;
}

.u-mb {
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .u-mb--lg-0 {
    margin-bottom: 0;
  }
}

.u-align-center {
  align-items: center;
}

.u-justify-center {
  justify-content: center;
}

.u-h-full {
  height: 100%;
}

.promo-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.promo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
  padding: 1.75rem 2rem;
  border-radius: 22px;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.promo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(26, 107, 66, 0.16);
}

.promo-card--blue {
  background: linear-gradient(145deg, #208451 0%, #1a6b42 45%, #124f30 100%);
  color: #ffffff;
}

.promo-card--blue .promo-card__text {
  color: rgba(255, 255, 255, 0.92);
}

.promo-card--light {
  background: linear-gradient(145deg, #f1f8f4 0%, #e5f3eb 100%);
  color: #124f30;
  border: 1px solid rgba(26, 107, 66, 0.12);
}

.promo-card--light .promo-card__text {
  color: rgba(18, 79, 48, 0.85);
}

.promo-card__title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.promo-card__text {
  font-size: 0.9375rem;
  line-height: 1.55;
}

.icon-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(18, 26, 22, 0.09);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.icon-card:hover {
  box-shadow: 0 16px 48px rgba(26, 107, 66, 0.16);
  transform: translateY(-3px);
}

.icon-card--blue {
  background: linear-gradient(160deg, #1f804f 0%, #1a6b42 50%, #124f30 100%);
  border-color: transparent;
  color: #ffffff;
}

.icon-card--blue .icon-card__text {
  color: rgba(255, 255, 255, 0.9);
}

.icon-card--blue .icon-card__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.icon-card--gray {
  background: #f3f3f3;
  border-color: transparent;
}

.icon-card--soft {
  background: #f1f8f4;
  border-color: transparent;
  color: #124f30;
}

.icon-card--soft .icon-card__text {
  color: rgba(18, 79, 48, 0.8);
}

.icon-card--soft .icon-card__icon {
  background: rgba(26, 107, 66, 0.12);
  color: #1a6b42;
}

.icon-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #e5f3eb;
  color: #1a6b42;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.icon-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.icon-card__text {
  font-size: 0.875rem;
  color: #5a6a60;
  line-height: 1.6;
  margin-top: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(18, 26, 22, 0.09), 0 8px 24px rgba(18, 26, 22, 0.04);
}

.header__row {
  align-items: center;
  flex-wrap: nowrap;
  min-height: 64px;
  gap: 0.5rem;
}

.header__nav-col {
  display: none;
}

@media (min-width: 992px) {
  .header__nav-col {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    min-width: 0;
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .header__actions {
    gap: 0.75rem;
  }
}

@media (max-width: 991.98px) {
  .header__logo-col {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: calc(100% - 5.25rem);
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #1a6b42;
  padding: 0.5rem 0;
  max-width: 100%;
}

@media (min-width: 576px) {
  .header__logo {
    gap: 0.625rem;
  }
}

.header__logo-img {
  display: block;
  width: auto;
  max-width: 40px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

@media (min-width: 400px) {
  .header__logo-img {
    max-width: 56px;
    height: 32px;
  }
}

@media (min-width: 576px) {
  .header__logo-img {
    max-width: none;
    height: 36px;
  }
}

.header__logo-text {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex-direction: column;
  line-height: 1.15;
  flex: 0 0 auto;
  min-width: auto;
}

.header__logo-name {
  display: block !important;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a6b42;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (min-width: 400px) {
  .header__logo-name {
    font-size: 0.8125rem;
  }
}

@media (min-width: 576px) {
  .header__logo-name {
    font-size: 1rem;
  }
}

.header__logo-tagline {
  display: none;
}

.header__phones {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

@media (min-width: 992px) {
  .header__phones {
    display: flex;
  }
}

.header__phone {
  font-weight: 700;
  font-size: 0.875rem;
  color: #121a16;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.header__phone:hover {
  color: #1a6b42;
}

.header__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 34px;
  padding: 0 0.875rem;
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: #1a6b42;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.28s ease;
  flex-shrink: 0;
}

.header__menu-btn:hover {
  background: #124f30;
}

.header__menu-btn.burger--open {
  background: #124f30;
}

@media (min-width: 576px) {
  .header__menu-btn {
    min-width: 88px;
    height: 40px;
    padding: 0 1.25rem;
    font-size: 0.75rem;
  }
}

@media (min-width: 992px) {
  .header__menu-btn {
    display: none;
  }
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.125rem 0.25rem;
}

.nav__link {
  display: block;
  padding: 0.375rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a6a60;
  text-decoration: none;
  transition: color 0.28s ease;
}

.nav__link:hover {
  color: #1a6b42;
}

.nav__link--active {
  color: #1a6b42;
}

.burger {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 1200;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu__list {
  margin-bottom: 1.5rem;
}

.mobile-menu__link {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #121a16;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(18, 26, 22, 0.09);
}

.mobile-menu__link--active {
  color: #1a6b42;
}

.mobile-menu__phones {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  background: #1a6b42;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  padding: 1rem 0 0;
}

@media (min-width: 768px) {
  .hero {
    padding: 1.25rem 0 0;
  }
}

.hero__slider-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(18, 26, 22, 0.14);
}

.hero__swiper {
  width: 100%;
}

.hero__slide {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 320px;
  background-color: #121a16;
}

@media (max-width: 767px) {
  .hero__slide {
    aspect-ratio: auto;
    min-height: 360px;
  }
}

.hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  filter: saturate(1.05) contrast(1.04);
}

.hero__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 62%;
  background: linear-gradient(0deg, rgba(18, 26, 22, 0.78) 0%, rgba(18, 79, 48, 0.35) 42%, transparent 100%);
  pointer-events: none;
}

.hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem 1.25rem;
  max-width: 92%;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero__caption {
    padding: 2rem 2.5rem 2.25rem;
    max-width: 62%;
  }
}

.hero__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff !important;
  margin-bottom: 0.5rem;
}

.hero__title {
  font-family: "PT Serif", "PT Sans", Georgia, serif;
  font-size: clamp(1.125rem, 2.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff !important;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  margin: 0;
}

.hero__text {
  margin: 0.65rem 0 0;
  max-width: 36rem;
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  line-height: 1.5;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

@media (max-width: 575px) {
  .hero__text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1rem;
}

.hero__nav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .hero__nav {
    top: 1.25rem;
    right: 1.25rem;
  }
}

.hero__arrow {
  position: static !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: #1a6b42 !important;
  box-shadow: 0 2px 14px rgba(18, 26, 22, 0.07);
  transition: background 0.28s ease, transform 0.28s ease;
}

.hero__arrow::after {
  font-size: 0.875rem !important;
  font-weight: 700;
}

.hero__arrow:hover {
  background: #ffffff !important;
  transform: scale(1.05);
}

.cta {
  background: transparent;
  color: #ffffff;
  padding: 0 0 3rem;
}

@media (min-width: 768px) {
  .cta {
    padding-bottom: 4rem;
  }
}

.cta .container {
  background: linear-gradient(135deg, #124f30 0%, #1a6b42 50%, #18633d 100%);
  border-radius: 32px;
  box-shadow: 0 16px 48px rgba(26, 107, 66, 0.16);
  overflow: hidden;
  position: relative;
}

.cta .container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(201, 146, 42, 0.22), transparent 42%), radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.cta__inner {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 1.75rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cta__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 3rem 2.5rem;
  }
}

.cta__title {
  font-family: "PT Serif", "PT Sans", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #121a16;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cta__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
}

.cta__action {
  flex-shrink: 0;
}

.cta-block {
  background: linear-gradient(135deg, #124f30 0%, #1a6b42 55%, #175f3a 100%);
  color: #ffffff;
  border-radius: 32px;
  padding: 2.5rem 1.75rem;
  box-shadow: 0 16px 48px rgba(26, 107, 66, 0.16);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(201, 146, 42, 0.2), transparent 45%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .cta-block {
    padding: 3rem 2.5rem;
  }
}

.cta-block__inner {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cta-block__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.cta-block__title {
  font-family: "PT Serif", "PT Sans", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #121a16;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-block__text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.feature {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(18, 26, 22, 0.09);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.feature:hover {
  box-shadow: 0 16px 48px rgba(26, 107, 66, 0.16);
  transform: translateY(-3px);
}

.feature__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 1rem;
  font-weight: 700;
  color: #1a6b42;
  background: #e5f3eb;
  border-radius: 16px;
  margin-bottom: 1.25rem;
}

.feature__title {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.feature__text {
  font-size: 0.875rem;
  color: #5a6a60;
  line-height: 1.6;
}

.project-card {
  position: relative;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(18, 26, 22, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 107, 66, 0.16);
}

.project-card:hover .project-card__img {
  transform: scale(1.05);
}

.project-card:hover .project-card__arrow {
  background: #1a6b42;
  color: #ffffff;
}

.project-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

@media (min-width: 768px) {
  .project-card__img-wrap {
    aspect-ratio: 4 / 5;
  }
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.project-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.35rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #1a6b42;
  color: #ffffff;
  border-radius: 999px;
}

.project-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem;
  color: #ffffff;
}

.project-card__title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.project-card__meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}

.project-card__desc {
  font-size: 0.8125rem;
  opacity: 0.85;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card__arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1a6b42;
  font-size: 1rem;
  transition: background 0.28s ease, color 0.28s ease;
}

.project-card--flat .project-card__img-wrap {
  aspect-ratio: 16 / 10;
}

.project-card--flat .project-card__body {
  position: static;
  color: #121a16;
  padding: 1.25rem 1.5rem 1.5rem;
}

.project-card--flat .project-card__overlay {
  display: none;
}

.project-card--flat .project-card__arrow {
  display: none;
}

.project-card--flat .project-card__desc {
  color: #5a6a60;
  opacity: 1;
}

.project-card--flat .project-card__meta {
  color: #1a6b42;
  opacity: 1;
  font-weight: 600;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats__item {
  text-align: center;
  padding: 2rem 1rem;
}

.stats__number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.process__item {
  height: 100%;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(18, 26, 22, 0.09);
  transition: box-shadow 0.28s ease;
}

.process__item:hover {
  box-shadow: 0 4px 24px rgba(26, 107, 66, 0.11);
}

.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a6b42;
  background: #e5f3eb;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.process__title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.process__text {
  font-size: 0.9375rem;
  color: #5a6a60;
  line-height: 1.65;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(18, 26, 22, 0.09);
  overflow: hidden;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.service-card:hover {
  box-shadow: 0 16px 48px rgba(26, 107, 66, 0.16);
  transform: translateY(-3px);
}

.service-card:hover .service-card__img {
  transform: scale(1.05);
}

.service-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f3f3f3;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card__icon {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(18, 26, 22, 0.07);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.75rem 1.75rem;
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.service-card__text {
  color: #5a6a60;
  margin-bottom: 1.25rem;
  line-height: 1.65;
  font-size: 0.9375rem;
  flex: 1;
}

.service-card__price {
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a6b42;
  margin-top: auto;
}

.service-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a6b42;
  background: #e5f3eb;
  border-radius: 16px;
}

.service-card--text-only .service-card__body {
  padding: 2rem 1.75rem;
}

.service-card--text-only .service-card__icon {
  position: static;
  margin-bottom: 1.25rem;
  background: #e5f3eb;
  box-shadow: none;
  color: #1a6b42;
  font-weight: 700;
}

.team-card {
  text-align: center;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(18, 26, 22, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 107, 66, 0.16);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 1.25rem 1rem 0.25rem;
}

.team-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a6b42;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0 1rem 1.25rem;
}

.review-card {
  height: 100%;
  padding: 2rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(18, 26, 22, 0.09);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s ease;
}

.review-card:hover {
  box-shadow: 0 4px 24px rgba(26, 107, 66, 0.11);
}

.review-card__stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.review-card__star {
  color: #e5e7eb;
  font-size: 1rem;
}

.review-card__star--active {
  color: #c9922a;
}

.review-card__text {
  flex: 1;
  color: #5a6a60;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(18, 26, 22, 0.09);
}

.review-card__photo, .review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-card__photo {
  object-fit: cover;
}

.review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5f3eb;
  color: #1a6b42;
  font-weight: 700;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.review-card__project {
  font-size: 0.8125rem;
  color: #5a6a60;
}

.review-card__date {
  font-size: 0.75rem;
  color: #1a6b42;
  font-weight: 600;
}

.promo-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 180px;
  padding: 1.75rem;
  border-radius: 22px;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.promo-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(26, 107, 66, 0.16);
}

.promo-tile--primary {
  background: linear-gradient(145deg, #1f804f 0%, #1a6b42 50%, #124f30 100%);
  color: #ffffff;
}

.promo-tile--accent {
  background: linear-gradient(145deg, #f1f8f4 0%, #e5f3eb 100%);
  color: #124f30;
  border: 1px solid rgba(26, 107, 66, 0.1);
}

.promo-tile--muted {
  background: #f3f3f3;
  color: #121a16;
}

.promo-tile__big {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0.25;
  align-self: flex-end;
  margin-bottom: 0.25rem;
}

.promo-tile__title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.35;
  max-width: 90%;
}

.promo-tile__text {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.reviews-slider {
  margin-top: 0.25rem;
}

.reviews-slider__swiper {
  overflow: hidden;
  padding: 0.25rem 0.15rem 0.75rem;
}

.reviews-slider .swiper-slide {
  height: auto;
  display: flex;
}

.reviews-slider .review-card {
  width: 100%;
}

.page-hero {
  padding: 2rem 0 2.5rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(26, 107, 66, 0.06);
}

.page-hero__breadcrumb {
  font-size: 0.75rem;
  color: #5a6a60;
  margin-bottom: 1rem;
}

.page-hero__breadcrumb a {
  color: #1a6b42;
  text-decoration: none;
}

.page-hero__breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero__title {
  font-family: "PT Serif", "PT Sans", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #121a16;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  letter-spacing: -0.01em;
  position: relative;
  margin-bottom: 0.75rem;
}

.page-hero__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a6b42 0%, #c9922a 100%);
}

.page-hero__subtitle {
  font-size: 1.0625rem;
  color: #5a6a60;
  max-width: 640px;
  line-height: 1.65;
}

.about-block__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(26, 107, 66, 0.16);
}

.about-block__img--logo {
  object-fit: contain;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(18, 26, 22, 0.09);
}

.about-block__title {
  font-family: "PT Serif", "PT Sans", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #121a16;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  letter-spacing: -0.01em;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin-bottom: 1.25rem;
}

.about-block__text {
  color: #5a6a60;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-block__text:last-of-type {
  margin-bottom: 1.5rem;
}

.about-block__list {
  margin-bottom: 2rem;
}

.about-block__list li {
  position: relative;
  padding: 0.625rem 0 0.625rem 1.5rem;
  border-bottom: 1px solid rgba(18, 26, 22, 0.09);
  font-size: 0.9375rem;
}

.about-block__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: #1a6b42;
  border-radius: 50%;
}

.gallery-swiper {
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(18, 26, 22, 0.07);
}

.gallery-swiper__slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .gallery-swiper__slide img {
    height: 480px;
  }
}

.gallery-swiper__prev, .gallery-swiper__next {
  color: #1a6b42 !important;
  width: 48px !important;
  height: 48px !important;
  background: #ffffff !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 14px rgba(18, 26, 22, 0.07) !important;
}

.gallery-swiper__prev::after, .gallery-swiper__next::after {
  font-size: 0.875rem !important;
  font-weight: 700;
}

.gallery-swiper__prev:hover, .gallery-swiper__next:hover {
  background: #1a6b42 !important;
  color: #ffffff !important;
}

.gallery-swiper__thumb {
  padding: 0.75rem;
  background: #ffffff;
}

.gallery-swiper__thumb .swiper-slide {
  opacity: 0.45;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.28s ease, border-color 0.28s ease;
}

.gallery-swiper__thumb .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #1a6b42;
}

.gallery-swiper__thumb .swiper-slide img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.contact-info__brand {
  margin-bottom: 2rem;
}

.contact-info__logo {
  max-width: 180px;
  max-height: 64px;
  object-fit: contain;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(18, 26, 22, 0.09);
}

.contact-info__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5f3eb;
  color: #1a6b42;
  border-radius: 16px;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info__title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5a6a60;
  margin-bottom: 0.25rem;
}

.contact-info__text {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.contact-info__text a {
  color: #1a6b42;
  font-weight: 600;
  text-decoration: none;
}

.contact-info__text a:hover {
  text-decoration: underline;
}

.contact-form {
  padding: 2rem;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(18, 26, 22, 0.07);
}

.contact-form__title {
  font-family: "PT Serif", "PT Sans", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #121a16;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  letter-spacing: -0.01em;
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
}

.contact-form__group {
  margin-bottom: 1.25rem;
}

.contact-form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5a6a60;
  margin-bottom: 0.5rem;
}

.contact-form__input, .contact-form__textarea, .contact-form__select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 1rem;
  border: 1px solid rgba(18, 26, 22, 0.09);
  border-radius: 12px;
  background: #ffffff;
  color: #121a16;
  transition: border-color 0.28s ease, background 0.28s ease;
}

.contact-form__input:focus, .contact-form__textarea:focus, .contact-form__select:focus {
  outline: none;
  border-color: #1a6b42;
  background: #ffffff;
}

.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__message {
  padding: 1rem;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  font-size: 0.9375rem;
}

.contact-form__message--success {
  background: #e5f3eb;
  color: #124f30;
}

.contact-form__message--error {
  background: #fef2f2;
  color: #b91c1c;
}

.map {
  height: 360px;
  background: #f3f3f3;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a6a60;
  font-size: 0.9375rem;
}

.review-form__subtitle {
  color: #5a6a60;
  margin-bottom: 1.5rem;
}

.review-form__stars-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.25rem;
}

.review-form__star-input {
  display: none;
}

.review-form__star-label {
  font-size: 1.75rem;
  color: #e5e7eb;
  cursor: pointer;
  transition: color 0.28s ease;
}

.review-form__star-label:hover, .review-form__star-label:hover ~ .review-form__star-label, .review-form__star-input:checked ~ .review-form__star-label {
  color: #c9922a;
}

.footer {
  background: #ffffff;
  color: #5a6a60;
  padding: 3rem 0 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(26, 107, 66, 0.08);
}

.footer__top {
  padding-bottom: 2.5rem;
}

.footer__logo {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a6b42;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #1a6b42;
  box-shadow: 0 2px 14px rgba(18, 26, 22, 0.07);
  transition: background 0.28s ease, color 0.28s ease;
}

.footer__social-link:hover {
  background: #1a6b42;
  color: #ffffff;
}

.footer__social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #121a16;
  margin-bottom: 1rem;
}

.footer__list li, .footer__contacts li {
  margin-bottom: 0.5rem;
}

.footer__link {
  font-size: 0.9375rem;
  color: #5a6a60;
  text-decoration: none;
}

.footer__link:hover {
  color: #1a6b42;
}

.footer__text {
  font-size: 0.9375rem;
}

.footer__bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(18, 26, 22, 0.09);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 0.8125rem;
  color: #5a6a60;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.footer__legal-link, .footer__legal-btn {
  font-size: 0.8125rem;
  color: #5a6a60;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.footer__legal-link:hover, .footer__legal-btn:hover {
  color: #1a6b42;
}
