* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: #0F1A16;
    color: #F0F0F0;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Текстура фона (лёгкий шум) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.005' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

h1, h2, h3 {
    font-weight: 500;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    font-weight: 600;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 50px;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #C6A43F;
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
    transition: all 0.4s;
    background: transparent;
    pointer-events: none;
}

.header.scrolled {
    background: rgba(15, 26, 22, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    color: #F0F0F0;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 50px;
}

.nav a {
    color: #F0F0F0;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #C6A43F;
}

.tg-link {
    color: #F0F0F0;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.tg-link:hover {
    color: #C6A43F;
}

/* Герой */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,26,22,0.8) 0%, rgba(15,26,22,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero p {
    font-size: 1.3rem;
    margin: 30px 0 40px;
    color: rgba(255,255,255,0.8);
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 15px 45px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-gold {
    background: rgba(198, 164, 63, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid #C6A43F;
    color: #F0F0F0;
    text-transform: uppercase;
}

.btn-gold:hover {
    background: #C6A43F;
    color: #0F1A16;
}

.btn-outline {
    background: transparent;
    border: 1px solid #C6A43F;
    color: #F0F0F0;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: #C6A43F;
    color: #0F1A16;
}

/* Lookbook сетка */
.collection {
    padding: 100px 0;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: #1E4A3B;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
}

.product-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.product-card.small {
    grid-column: span 1;
    grid-row: span 1;
}

.product-card.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.product-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(15,26,22,0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.product-card:hover .product-info {
    transform: translateY(0);
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.product-price {
    font-size: 1.2rem;
    color: #C6A43F;
    margin-bottom: 15px;
}

.order-btn {
    background: transparent;
    border: 1px solid #C6A43F;
    color: white;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.order-btn:hover {
    background: #C6A43F;
    color: #0F1A16;
}

/* История */
.story {
    padding: 100px 0;
    background: #1E4A3B;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content p {
    margin: 30px 0;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Отзывы */
.reviews {
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    padding: 30px;
    background: #1E4A3B;
    border-radius: 10px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.review-author {
    color: #C6A43F;
    font-weight: 600;
}

/* Футер */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(198,164,63,0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #F0F0F0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #C6A43F;
}

.footer-copy {
    color: rgba(255,255,255,0.4);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card.large,
    .product-card.medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}