/* Reset & Base Styles */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background: linear-gradient(180deg, 
        #1a1612 0%,
        #15120f 20%,
        #110e0c 40%,
        #0d0b09 60%,
        #0a0807 80%,
        #080605 100%
    );
    background-attachment: fixed;
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    letter-spacing: -2px; 
}

h2 { 
    font-size: clamp(1.75rem, 3vw, 2rem); 
    letter-spacing: -1px; 
}

h3 { 
    font-size: 1.25rem; 
    font-weight: 500; 
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul, ol {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

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