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

html {

    scroll-behavior: smooth;

}

body {

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

    background: var(--cream);

    color: var(--text-dark);

    overflow-x: hidden;

}

img {

    max-width: 100%;

    display: block;

}

a {

    text-decoration: none;

    color: inherit;

}

button {

    border: none;

    cursor: pointer;

    font-family: inherit;

}

ul {

    list-style: none;

}

.container {

    width: min(92%, var(--container));

    margin: auto;

}

section {

    padding: 120px 0;

}

.section-title {

    font-family: 'Cormorant Garamond', serif;

    font-size: 3.6rem;

    font-weight: 700;

    line-height: 1.1;

}

.section-subtitle {

    color: var(--primary);

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: .9rem;

    margin-bottom: 15px;

}

.text {

    color: var(--text-light);

    line-height: 1.9;

}

.gold {

    color: var(--primary);

}