:root {
    --white: #FFFFFF;
    --black: #000000;
    --brown: #4E342E;
    --light-brown: #8D6E63;
    --gold: #C6A776;
    --transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

section {
    position: relative;
    overflow: hidden;
}

/* Шапка */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: var(--white);
    padding: 15px 5%;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 35px;
    margin-right: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
}

.header.scrolled .nav-links a {
    color: var(--black);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brown);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.cart-icon {
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.cart-icon svg {
    fill: var(--white);
}

.header.scrolled .cart-icon svg {
    fill: var(--black);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--brown);
    color: var(--white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}

/* Мобильное меню */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.header.scrolled .mobile-menu-btn svg {
    fill: var(--black);
}

/* Минималистичный герой с логотипом */
.about-hero-minimal {
    padding: 180px 5% 100px;
    text-align: center;
    position: relative;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero-minimal::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: var(--gold);
}

.brand-logo-hero {
    width: 300px;
    max-width: 80%;
    height: auto;
    margin-bottom: 30px;
    opacity: 0;
}

.about-hero-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--light-brown);
    opacity: 0;
}

/* Секция о бренде */
.about-section {
    padding: 0 5% 100px;
    background: var(--white);
    position: relative;
}

/* Блок с текстом о бренде */
.about-brand-text {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-brown);
}

/* Секция команды */
.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 750;
    margin-bottom: 60px;
    text-align: center;
    color: var(--brown);
    position: relative;
    width: 100%;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.team-member {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.member-photo:hover {
    transform: scale(1.05);
}

.member-name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--brown);
}

.member-position {
    font-size: 14px;
    color: var(--light-brown);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.member-description {
    line-height: 1.8;
    color: var(--black);
}

/* Подвал */
.footer {
    padding: 80px 5% 40px;
    background: var(--black);
    color: var(--white);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-text {
    max-width: 300px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.7);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: var(--transition);
    filter: invert(1);
}

.social-icon:hover {
    opacity: 1;
}

.footer-title {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px;
}

/* Адаптивность */
@media (max-width: 768px) {
    /* Шапка */
    .header {
        padding: 15px 5%;
    }
    
    .logo {
        height: 50px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.5s ease;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }
    
    .nav-links a {
        color: var(--black);
        font-size: 18px;
        padding: 10px 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header.scrolled .nav-links a {
        color: var(--black);
    }
    
    /* Герой-секция */
    .about-hero-minimal {
        padding: 150px 5% 80px;
    }
    
    .brand-logo-hero {
        width: 250px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    /* Команда */
    .team-members {
        flex-direction: column;
        align-items: center;
    }
    
    .team-member {
        max-width: 100%;
    }
    
    /* Подвал */
    .footer {
        padding: 50px 5% 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        height: 50px;
        margin-bottom: 15px;
    }
    
    .footer-text {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .social-links {
        margin-bottom: 30px;
    }
}