* {
    cursor: none !important;
}

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

body {
    background-color: var(--color-white);
    color: var(--color-beige-darkest);
    font-family: 'Optima', 'Georgia', serif;
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-beige-dark);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }

p {
    max-width: 65ch;
    color: var(--color-beige-medium);
}

a {
    color: var(--color-red-medium);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover { color: var(--color-red-light); }

:root {
    --space-xs:  4px;
    --space-sm:  8px;
    --space-md:  16px;
    --space-lg:  32px;
    --space-xl:  64px;
    --space-2xl: 120px;
}


main {
    position: relative;
    z-index: 2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-2xl) 0;
}

.btn-cta {
    display: inline-block;
    padding: 14px 35px;
    background: var(--color-red-medium);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.btn-cta:hover {
    background: var(--color-red-light);
    color: var(--color-white);
    transform: scale(1.05);
}

.tag {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-red-medium);
    margin-bottom: var(--space-sm);
}
