:root {
    --bg-color: #F5F5F0;
    /* Alabaster / Clean Off-White */
    --text-color: #1A1A1A;
    --accent-color: #6D5A43;
    /* Darker Taupe */
    --secondary-text: #555555;
    --footer-bg: #111111;
    /* Darker Footer */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.6;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(230, 228, 224, 0.85);
    /* Matches new bg */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

.nav {
    display: flex;
    gap: 3rem;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    opacity: 0.8;
}

.nav a:hover {
    opacity: 1;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-color);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.cta-header .btn-text {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--text-color);
    transition: var(--transition);
}

.cta-header .btn-text:hover {
    background: var(--text-color);
    color: #E6E4E0;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    /* Removed opacity reduction to show full image vibrancy */
    filter: grayscale(30%) contrast(1.1);
}

/* Stronger gradient for text readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0) 40%,
            rgba(245, 245, 240, 0.8) 85%,
            var(--bg-color) 100%);
}

.hero-content {
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    top: 10%;
    /* Move text down slightly into the fade */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    /* Halo for readability */
}

.hero-title .line {
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--text-color);
    color: #fff;
    /* Ensure white text */
    border: 1px solid var(--text-color);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.btn-secondary:hover {
    background: rgba(26, 26, 26, 0.05);
    /* Subtle dark tint instead of full fill */
    color: var(--text-color);
    border-color: var(--text-color);
}

/* Remove Marquee - Not needed for editorial luxury */
.marquee-section {
    display: none;
}

/* Brand Story Section */
.story-section {
    padding: 8rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
}

.story-container {
    max-width: 700px;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-text);
    font-weight: 300;
}

/* Categories Section */
.categories-section {
    padding: 6rem 4rem;
    background-color: var(--bg-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-header .btn-text {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    border-bottom: 1px solid var(--text-color);
    transition: var(--transition);
}

.section-header .btn-text:hover {
    opacity: 0.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    height: 550px;
    overflow: hidden;
    cursor: pointer;
    background: #E8E6E1;
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0.85;
}

.category-card:hover .cat-img {
    transform: scale(1.03);
    opacity: 1;
}

.cat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85), transparent);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cat-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
}

.cat-arrow {
    font-size: 1.5rem;
    transition: var(--transition);
}

.category-card:hover .cat-arrow {
    transform: translateX(10px);
}

/* Lookbook Section */
.lookbook-section {
    padding: 6rem 4rem;
    background-color: var(--bg-color);
}

.center-text {
    text-align: center;
    margin-bottom: 4rem;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 1.5rem;
}

.look-item {
    overflow: hidden;
    position: relative;
    background: #E8E6E1;
}

.look-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(20%);
}

.look-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.item-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.item-3 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.item-4 {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}

/* Features Section */
.features-section {
    padding: 6rem 4rem;
    background-color: #E8E8E8;
    /* Light neutral grey */
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.feature-item p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Newsletter & Footer */
.footer {
    padding: 5rem 4rem 3rem;
    background-color: var(--footer-bg);
    color: #E8E6E1;
}

.footer-top {
    max-width: 500px;
    margin: 0 auto 4rem;
    text-align: center;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(232, 230, 225, 0.15);
}

.newsletter h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}

.newsletter p {
    color: #B0ADA8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(232, 230, 225, 0.3);
    padding: 0.8rem 0;
    color: #fff;
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-bottom-color: #fff;
}

.newsletter-form button {
    background: transparent;
    border: 1px solid rgba(232, 230, 225, 0.5);
    color: #fff;
    cursor: pointer;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #fff;
    color: var(--footer-bg);
    border-color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #B0ADA8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #B0ADA8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #fff;
}

.footer-col a {
    color: #B0ADA8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(232, 230, 225, 0.15);
    padding-top: 2rem;
    color: #7A7772;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #7A7772;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: #B0ADA8;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 2rem;
    }

    .nav {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4 {
        grid-column: auto;
        grid-row: auto;
        height: 350px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}