

/* ============================================
    RESET & VARIABLES
    ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --soft-black: #1A1A1A;
    --charcoal: #2D2D2D;
    --dark-gray: #4A4A4A;
    --warm-gray: #6B6560;
    --stone: #8A8580;
    --sand: #E5E0DA;
    --cream: #F5F3F0;
    --white: #FFFFFF;
    --accent: #7A9A9A;
    --accent-deep: #5A7A7A;
    --gold: #8B7355;
    --input-bg: #F8F7F5;
    --font-serif:'Beausite Grand', serif;

    --gray: #dcdcdc;

    --teal: #7A9A9A;
    --teal-light: #97b5b5;
    /* --teal-light: rgba(122, 154, 154, 0.08); */
    
    --header-height: 120px;
    --header-height-mobile: 100px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--white);
    color: var(--dark-gray);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.btn { font-family: var(--font-sans); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 20px 52px; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn--primary { background: var(--soft-black); color: var(--white); border: none; }
.btn--primary:hover { background: var(--accent); }
.btn--secondary { background: transparent; color: var(--white); border: 1px solid var(--white); }
.btn--secondary:hover { background: var(--white); color: var(--soft-black); opacity: 0.65; }

.btn--white { background: var(--white); color: var(--soft-black); border: 1px solid var(--white); }
.btn--white:hover { background: var(--soft-black); color: var(--white); opacity: 0.65; }

.btn--accent {     background: var(--accent);color: var(--white); }
.btn--accent:hover {     background: var(--accent-deep); }


.btn--icon{
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn--icon svg{
    width: 20px;
}

.buttons-block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.grecaptcha-badge{
    display: none !important;
}
