:root{
  --c-green:#2e402a;      /* основной зелёный */
  --c-red:#9c2f11;        /* кирпичный акцент */
  --c-orange:#ee9226;     /* оранжевый акцент */
  --bg-beige:#f5f2e9;     /* бежевый фон */
  --bg-white:#fdfcf9;     /* белый фон */
  --text:#1a1a1a;         /* тёмный текст */
}

/* Базовая тема */
body{background:var(--bg-beige); color:var(--text);}
a{color:var(--c-green);}
a:hover{color:var(--c-red);}

/* Заголовки - «CORMORANT» */
h1,h2,h3,h4{color:var(--c-green); font-family:"Cormorant Garamond", serif;}

/* Текст - «INTER» */
body, p, li, a, .t-text{font-family:"Inter", system-ui, -apple-system, Arial, sans-serif;}

/* Кнопки по сайту */
.t-btn{background:var(--c-green)!important; color:var(--bg-white)!important; border-radius:12px!important;}
.t-btn:hover{background:var(--c-orange)!important;}

/* Ссылки меню */
.t-menu__link-item{color:var(--c-green)!important;}
.t-menu__link-item:hover{color:var(--c-red)!important;}

/* Фон шапки, если нужен светлый */
.tmenufixed, .tmenu{background:var(--bg-beige)!important;}
