/* === Базовая палитра ПРОТО === */
:root{
  --brand: #0f172a;     /* акцент/кнопки/заголовки */
  --text:  #334155;     /* основной текст */
  --bg:    #f8fafc;     /* фон страницы */
}

/* Фон страницы */
body { background: var(--bg); }

/* Заголовки и текст */
h1,h2,h3,h4,h5,h6 { color: var(--brand); }
.t-text, .t-descr, p, li { color: var(--text); }

/* Ссылки (без подчёркивания) */
a { color: var(--brand); text-decoration: none; }
a:hover { opacity: .9; }

/* Кнопки (все стандартные) */
.t-btn, .t-submit{
  background: var(--brand) !important;
  color: #fff !important;
  border-radius: 16px;
  box-shadow: none;
}
.t-btn:hover, .t-submit:hover{ opacity: .9; }

/* Поля форм */
.t-input, .t-textarea{
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

/* Карточки/изображения — мягкие скругления */
img, .t-card, .t-container .t-col .t-item{
  border-radius: 16px;
  overflow: hidden;
}

/* Меню (если нужно усилить цвет ссылок меню) */
.t-menu__link-item { color: var(--brand) !important; }

/* Мелочь: плавность наведения */
.t-btn, .t-submit, a, img { transition: all .2s ease; }
