/* Базовая типографика */
body {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #2a2a2a;
  background-color: #f5f3e5;
}

/* Заголовки */
h1, h2, h3 {
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 22px;
}

/* Ссылки */
a {
  color: #8b5e3c;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #5a3b22;
}

/* Кнопки */
.t-btn {
  background-color: transparent;
  color: #1a1a1a;
  border: 2px solid #8b5e3c;
  padding: 14px 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 0;
}

.t-btn:hover {
  background-color: #8b5e3c;
  color: #fff;
}

/* Фоновый блок на контраст */
.section-contrast {
  background-color: #fff !important;
  color: #2a2a2a;
}

/* Адаптивность */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
}