:root {
    --dark: #0f150d;
    --dark-2: #172011;
    --green: #27351f;
    --gold: #b8995a;
    --gold-light: #d4bd7c;
    --paper: #e8dcc4;
    --paper-light: #f4ead6;
    --brown: #2b1e12;
    --muted: rgba(232, 220, 196, 0.78);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--dark); color: var(--paper); font-family: Georgia, "Times New Roman", serif; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 28px; background: var(--gold); color: #171007; border: 1px solid var(--gold); font-family: Arial, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: 0.2s ease; }
.btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--paper-light); border-color: rgba(212, 189, 124, 0.75); }
.eyebrow { margin-bottom: 16px; color: var(--gold-light); font-family: Arial, sans-serif; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; }
h1, h2 { margin: 0 0 22px; color: var(--gold-light); font-size: clamp(34px, 4.6vw, 62px); line-height: 1.05; }
section { padding: 95px clamp(22px, 7vw, 90px); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
