:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-burgundy: #940606;
    --color-burgundy-dark: #780606;
    --color-gray: #cccccc;
    --font-primary: 'Assistant', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    font-size: 1rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: var(--color-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 1.5rem 0;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

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

.nav-actions {
    display: flex;
    gap: 1.5rem;
}

.icon-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: var(--color-burgundy);
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--color-burgundy);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-black);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid var(--color-white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-white);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-white);
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 2px solid var(--color-white);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* Marquee */
.marquee {
    background: var(--color-burgundy);
    padding: 2rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.marquee-content span {
    margin: 0 4rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.featured-collections {
    padding: 6rem 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.collection-card {
    text-align: center;
}

.collection-image {
    margin-bottom: 1.5rem;
    aspect-ratio: 1;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--color-burgundy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.collection-card:hover .placeholder-image {
    transform: scale(1.05);
}

.collection-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.collection-card p {
    color: var(--color-gray);
    margin-bottom: 1rem;
}

/* Content Blocks */
.content-block {
    padding: 6rem 0;
}

.content-block.alt {
    background: rgba(148, 6, 6, 0.1);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-gray);
}

.content-image .placeholder-image {
    aspect-ratio: 4/3;
}

/* Stores */
.stores {
    padding: 6rem 0;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.store-card {
    background: rgba(148, 6, 6, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.store-card p {
    color: var(--color-gray);
}

/* Footer */
.footer {
    background: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: var(--color-gray);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 990px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 750px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
}
