*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --cream: #f5f0e8;
    --ivory: #faf7f2;
    --gold: #c8983a;
    --gold-light: #e8b84a;
    --deep-teal: #1A3B48;
    --mid-teal: #2C5A6E;
    --navy: #0d1f3c;
    --navy-mid: #1a2f52;
    --rust: #c4442a;
    --charcoal: #2c2c2c;
    --warm-gray: #8a8278;
    --warm-rust: #C76E4E;
    --border: rgba(200, 152, 58, .2);
    --footer-bg: #9e9d49; /*#111e3b*/
    --footer-surface: #0f1c33;
    --footer-card: #162035;
    --footer-text: #ffffff;
    --footer-muted: #ced5e5;
    --footer-border: rgba(255, 255, 255, .07);
    --shadow-xl: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    overflow-x: hidden;
    /* cursor: none */
}

/* CURSOR */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    position: absolute
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, opacity .2s;
    position: absolute;
    opacity: .6
}

@media(pointer:coarse) {
    .cursor {
        display: none
    }

    body {
        cursor: auto
    }
}