/* ---------- RESET ---------- */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ---------- COLORS ---------- */

:root{

    --background:#faf5f0;

    --surface:#ffffff;

    --primary:#49362c;

    --secondary:#776255;

    --accent:#e7c7bf;

    --gold:#b88d5d;

    --border:#eee4dd;

    --shadow:0 10px 35px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}

/* ---------- PAGE ---------- */

html{

    scroll-behavior:smooth;

}

body{

    background:
        radial-gradient(circle at top,#fffdfb,#faf5f0 70%);

    color:var(--primary);

    font-family:'Manrope',sans-serif;

    line-height:1.7;

}

/* ---------- COMMON ---------- */

.container{

    width:min(1240px,92%);

    margin:auto;

}

a{

    text-decoration:none;

    color:inherit;

}

img{

    display:block;

    max-width:100%;

}

section{

    padding:90px 0;

}

h1,h2,h3{

    font-family:'Cormorant Garamond',serif;

    font-weight:500;

}

::selection{

    background:#e8c9c2;

}