:root {
    --bg-primary: #050505;
    --bg-secondary: #0f0f0f;
    --bg-accent: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #d4b89a;
    --accent-muted: #2a2520;
    --border: rgba(255, 255, 255, 0.08);
    --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

.section-padding {
    padding: 160px 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    .section-padding {
        padding: 120px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    .section-padding {
        padding: 80px 0;
    }
}
