/* AI Fortiori - Base Styles */

:root {
    /* Core color palette */
    --black-void: #000000;
    --black-rich: #0A0A0A;
    --gold: #D4AF37;
    --gold-bright: #FFD700;
    --gold-deep: #B8860B;
    --copper: #B87333;
    --burgundy: #800020;
    --burgundy-deep: #5C001A;
    --cream: #FDFBF7;
    --parchment: #F4F1E8;
    --ink-dark: #2B1810;
    --text-gold: #F4E5C2;
    --sage-green: #9CAF88;
    
    /* Extended palette */
    --primary-burgundy: #722F37;
    --warm-cream: #F5F2E8;
    --paper-white: #FEFEFE;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--cream);
    background: var(--black-void);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
}

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

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

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: opacity 0.3s ease !important;
    }
}