:root {
  /* Цвета - исходные для заказчика */
  --color-bg: #142f42;
  --color-text: #ffffff;
  --color-text-muted: #e0e0e0;
  --color-accent: #76624A;
  --color-border: #C4C0BA;

  /* Шрифты */
  --font-heading: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;

  /* Сетка */
  --container-max: 1200px;
  --text-width: min(820px, 100%);
  --gutter: clamp(1rem, 4vw, 2.5rem);

  /* Типографика */
  --hero-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --hero-lh: 1.2;
  --title-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
  --body-size: 1rem;
  --body-lh: 1.6;
  --note-size: 0.875rem;
  --note-lh: 1.5;

  /* Отступы блоков */
  --block-padding-v: clamp(3rem, 8vh, 6rem);
  --block-padding-h: var(--gutter);
  --list-gap: 1.25rem;
  --section-gap: 7rem;

  /* Breakpoint */
  --bp-mobile: 768px;

  /* Анимация — только микро-fade при необходимости */
  --transition: 0.25s ease;
}
