/* RESET */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--primary);
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* Container */

.container{
    max-width:1280px;
    margin:0 auto;
    padding:0 24px;
}

/* Typography */

h1,h2,h3{
    font-family:'Playfair Display',serif;
    color:var(--primary);
}

h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:24px;
}

h2{
    font-size:52px;
    margin-bottom:16px;
}

h3{
    font-size:28px;
}

p{
    color:var(--text);
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header p{
    max-width:700px;
    margin:auto;
}

/* Общие секции */

section{
    padding:100px 0;
}