:root {
    --color-bg: #F6F2EA;
    --color-bg-soft: #FBF9F4;
    --color-surface: #FFFFFF;
    --color-charcoal: #121418;
    --color-charcoal-2: #1F242D;
    --color-text: #171717;
    --color-text-secondary: #615D56;
    --color-line: #E6DFD3;
    --color-gold: #B28A3F;
    --color-gold-soft: #EFE4C8;
    --color-red: #B72828;

    --font-heading: Georgia, 'Times New Roman', serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container-width: 1320px;
    --header-top-height: 84px;
    --header-nav-height: 60px;

    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.10);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   RESET / BASE
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

i {
    font-family: var(--font-heading);
    font-style: italic;
}
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.site,
#page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

img,
svg,
iframe,
video {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 9999;
    background: var(--color-charcoal);
    color: #fff;
    padding: 10px 14px;
    text-decoration: none;
}

/* =========================================================
   TYPO HELPERS / COMPONENTS
   ========================================================= */
.kicker {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--color-charcoal);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(178, 138, 63, 0.3);
}

.secondary-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--color-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

[data-reveal],
[data-reveal].visible {
    opacity: 1;
    transform: none;
    transition: none;
}

/* =========================================================
   RESPONSIVE BASE
   ========================================================= */
@media (max-width: 1240px) {
    .container {
        padding: 0 24px;
    }
       
}


@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

}