:root {
    color-scheme: light;
    --surface: #fbf9f4;
    --surface-2: #f5f3ee;
    --surface-3: #f0eee9;
    --surface-4: #eae8e3;
    --surface-5: #e4e2dd;
    --text: #1b1c19;
    --text-2: #444748;
    --muted: #747878;
    --border: #c4c7c7;
    --primary: #1a1a1a;
    --primary-soft: #30312e;
    --secondary: #d4af37;
    --secondary-dark: #735c00;
    --white: #ffffff;
    --shadow: 0 32px 80px rgba(26, 26, 26, 0.08);
    --shadow-soft: 0 16px 40px rgba(26, 26, 26, 0.06);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 28px;
    --container: 1440px;
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "DM Sans", Inter, system-ui, sans-serif;
    --font-label: "Montserrat", Inter, system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--surface);
    color: var(--text);
    font-family: var(--font-body);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
}

main {
    overflow-x: clip;
}

::selection {
    background: rgba(212, 175, 55, 0.18);
}

.font-display {
    font-family: var(--font-display);
}

.font-body {
    font-family: var(--font-body);
}

.font-label {
    font-family: var(--font-label);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}