/* Базовые сбросы */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --card-bg: #141414;
    --accent: #c5a059; /* Золото/Бронза */
    --text: #ffffff;
    --text-dim: #a0a0a0;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Навигация */
.header {
    height: 90px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    list-style: none; /* Убирает точки */
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-nav {
    background: var(--text);
    color: var(--bg) !important;
    padding: 8px 20px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1534067783941-51c9c23ecefd?q=80&w=2000') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.9;
    margin: 20px 0;
    text-transform: uppercase;
}

.accent { color: var(--accent); }

.hero p {
    max-width: 500px;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    margin-right: 15px;
}

/* About Section */
.about { padding: 100px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.label { color: var(--accent); font-size: 0.8rem; }
h2 { font-family: 'Syne', sans-serif; font-size: 2.5rem; margin: 15px 0; }

.specs { list-style: none; margin-top: 30px; }
.specs li { margin-bottom: 10px; color: var(--accent); font-weight: 600; }

.about-image img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(20%);
}

/* Products */
.collection { padding-bottom: 100px; }
.section-title { text-align: center; margin-bottom: 60px; }
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    padding: 20px;
}

.product-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}

.price { color: var(--accent); font-weight: 700; font-size: 1.2rem; }

footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-dim);
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .about-grid, .product-grid { grid-template-columns: 1fr; }
    h1 { font-size: 3.5rem; }
}