/* ==============================
   БАЗА — сброс, body, фон-шум, контейнер, типографика
   ============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Отступ при переходе по якорям — чтобы липкая шапка не перекрывала верх секции */
    scroll-padding-top: 88px;
    /* Скролл скрыт (Firefox) — сама прокрутка работает */
    scrollbar-width: none;
    -ms-overflow-style: none; /* старый Edge/IE */
}

/* Скролл скрыт (Chrome/Edge/Safari) */
::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    font-family: var(--sans);
    background: var(--emerald-deep);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.no-scroll {
    overflow: hidden;
}

/* Текстурный фон с шумом */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* ==============================
   ТИПОГРАФИКА
   ============================== */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.02em;
}

em {
    font-style: italic;
    color: var(--gold);
}
