:root {
      --forest-green: #2E5A4A;
      --amber: #C19A6B;
      --warm-grey: #F8F6F3;
      --soft-taupe: #E9E5E0;
      --charcoal: #333333;
      --white: #FFFFFF;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--charcoal);
      background-color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      width: 100%;
        height: 100%;
      display: block;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(233, 229, 224, 0.95);
      backdrop-filter: blur(8px);
      z-index: 2000;
      padding: 14px 0;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Manrope', sans-serif;
      font-weight: 900;
      font-size: 20px;
      color: #000;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 24px;
      font-weight: 500;
      font-size: 16px;
    }

    .contact-info {
      display: none;
    }

    .menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      position: relative;
      z-index: 2001;
    }

    .menu-toggle span {
      height: 3px;
      width: 100%;
      background-color: var(--charcoal);
      border-radius: 2px;
      transition: 0.3s;
    }

    /* Hero */
    .hero {
      height: 100vh;
      min-height: 600px;
      background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), url('/img/main-wood.jpg') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      color: var(--white);
    }

    .hero h1 {
      font-size: 40px;
      line-height: 1.2;
      margin-bottom: 16px;
      text-shadow: 0 2px 6px rgba(0,0,0,0.2);
        text-shadow: 0px 0px 20px #000000;
    }

    .hero p {
      font-size: 18px;
      max-width: 600px;
      margin-bottom: 32px;
      opacity: 0.95;
        text-shadow: 0px 0px 20px #000000;
    }

    .btn {
      display: inline-block;
      padding: 14px 36px;
      background-color: #1CC386;
      color: var(--white);
      font-family: 'Manrope', sans-serif;
      font-weight: 600;
      font-size: 17px;
      border-radius: 4px;
      transition: background-color 0.3s ease;
    }

    .btn:hover {
      background-color: var(--amber);
      color: var(--charcoal);
    }

    /* Sections */
    section {
      padding: 100px 0;
    }

    .section-title {
      text-align: center;
      font-size: 28px;
      margin-bottom: 40px;
      color: var(--charcoal);
    }

    /* Value Props */
    .value-props {
      background-color: var(--warm-grey);
    }

    .props-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      text-align: center;
    }
      
    .prop-item div {
      font-size: 3.5em;
    }

    .prop-item h3 {
      font-size: 19px;
      margin-top: 12px;
      color: var(--forest-green);
    }

    /* Products */
    .products-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .product-card {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.06);
      background: white;
    }

    .product-image {
      height: 180px;
      object-fit: cover;
    }

    .product-info {
      padding: 20px;
      text-align: center;
    }

    .product-type {
      font-family: 'Manrope', sans-serif;
      font-size: 18px;
      color: var(--forest-green);
      margin-bottom: 12px;
    }

    .product-size {
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: var(--charcoal);
      opacity: 0.85;
      display: block;
      margin: 6px 0;
    }







    /* Why Larch — красивая таблица */
    /* Why Larch — красивая таблица */
.why-larch {
  background-color: var(--warm-grey);
}

.comparison-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  /* Добавьте эти свойства для горизонтальной прокрутки */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* Плавная прокрутка на iOS */
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  /* Добавьте минимальную ширину для таблицы */
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 12px;
  text-align: center;
}

.comparison-table th {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: var(--forest-green);
  background-color: #FFB55970;
}

.comparison-table td:nth-child(2) {
  background-color: rgba(193, 154, 107, 0.08);
  font-weight: 600;
  color: var(--amber);
}

.note {
  text-align: center;
  margin-top: 24px;
  font-size: 15px;
  font-style: italic;
  color: var(--charcoal);
}

/* Стили для полосы прокрутки (опционально) */
.comparison-wrapper::-webkit-scrollbar {
  height: 6px;
}

.comparison-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.comparison-wrapper::-webkit-scrollbar-thumb {
  background: #c1a16b;
  border-radius: 3px;
}

.comparison-wrapper::-webkit-scrollbar-thumb:hover {
  background: #a88a5a;
}

/* Адаптация для очень маленьких экранов */
@media (max-width: 480px) {
  .comparison-table {
    min-width: 550px;
    font-size: 14px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 14px 8px;
  }
  
  .comparison-wrapper {
    margin: 0 -10px; /* Немного выходим за границы контейнера */
    border-radius: 8px;
  }
}










    /* Gallery */
    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .gallery-item {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.65);
      color: white;
      padding: 14px;
      font-family: 'Manrope', sans-serif;
      font-style: italic;
      font-size: 15px;
    }

    /* Trust */
    .trust-badges {
      display: grid;
      align-items: center;
      gap: 24px;
      grid-template-columns: repeat(3, 1fr);
    }
      
      .badge {
          text-align: center;
      }
      
    .badge span {
        font-size: 5em;
    }

    .badge h3 {
      font-size: 17px;
      margin-top: 10px;
      color: var(--forest-green);
    }

    /* Contact */
    .contact-section {
      background-color: #FFDFAF;
    }

    .contact-layout {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .contact-text h2 {
      font-size: 26px;
      margin-bottom: 16px;
    }

    .contact-form input,
    .contact-form select {
      width: 100%;
      padding: 14px;
      margin-bottom: 16px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
    }

    .contact-form button {
      padding: 16px;
      font-size: 17px;
    }

    /* Footer */
    footer {
      background-color: var(--white);
      padding: 24px 0;
      border-top: 1px solid var(--soft-taupe);
    }

    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .social-icons {
      display: flex;
      gap: 18px;
      font-size: 20px;
      color: var(--forest-green);
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: var(--soft-taupe);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 1500;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      font-size: 22px;
      font-weight: 600;
    }

    .close-menu {
      position: absolute;
      top: 30px;
      right: 30px;
      font-size: 28px;
      cursor: pointer;
      color: var(--charcoal);
      z-index: 2001;
    }

    /* Анимация бургера в крестик */
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Tablet+ */
    @media (min-width: 768px) {
      .hero h1 { font-size: 48px; }
      .section-title { font-size: 32px; }
      .props-grid { grid-template-columns: repeat(3, 1fr); }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-layout { flex-direction: row; }
      .footer-content { flex-direction: row; justify-content: space-between; }
      nav ul { display: flex !important; }
      
    }
      
    @media (min-width: 1110px) {
      .menu-toggle { display: none; }
        .contact-info { display: flex; gap: 24px; font-size: 15px; }
    }

    @media (max-width: 1110px) {
      nav ul {
        display: none !important;
      }
    }

    @media (min-width: 1024px) {
      .products-grid { grid-template-columns: repeat(3, 1fr); }
    }