/* MONO - Pure Essentials */
:root {
    --cream: #f8f7f4;
    --stone: #e8e6e1;
    --gray: #7a7a7a;
    --charcoal: #2d2d2d;
    --black: #1a1a1a;
    --white: #ffffff;
    --accent: #8b8b8b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--stone);
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--black);
    text-decoration: none;
}

.nav-center {
    display: flex;
    gap: 2.5rem;
}

.nav-center a,
.nav-end a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-center a:hover,
.nav-end a:hover {
    color: var(--gray);
}

.nav-end {
    display: flex;
    gap: 2rem;
}

.cart {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
}

/* Hero */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero-heading {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--black);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--charcoal);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--charcoal);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--cream);
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.visual-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Stats Bar */
.stats-bar {
    background: var(--white);
    padding: 3rem 2rem;
    border-top: 1px solid var(--stone);
    border-bottom: 1px solid var(--stone);
}

.stats-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Essentials Section */
.essentials {
    padding: 6rem 2rem;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product {
    background: var(--white);
    transition: transform 0.3s;
}

.product:hover {
    transform: translateY(-5px);
}

.product-media {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product:hover .product-media img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--black);
    color: var(--cream);
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-details {
    padding: 1rem;
}

.product-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-color {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}

.add-to-cart {
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--cream);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart:hover {
    background: var(--charcoal);
    transform: rotate(90deg);
}

/* Featured Section */
.featured {
    padding: 6rem 2rem;
    background: var(--white);
}

.featured-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.featured-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.featured-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.featured-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.featured-content p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.featured-content .btn-primary {
    margin-top: 1rem;
}

/* Philosophy Section */
.philosophy {
    padding: 6rem 2rem;
}

.philosophy-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-intro h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.philosophy-lead {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.philosophy-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-top: 3px solid var(--black);
}

.card-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.philosophy-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Studio Section */
.studio {
    padding: 6rem 2rem;
    background: var(--white);
}

.studio-gallery {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.studio-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.studio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.studio-image:hover img {
    transform: scale(1.1);
}

/* Newsletter */
.newsletter {
    padding: 5rem 2rem;
    background: var(--black);
    color: var(--cream);
    text-align: center;
}

.newsletter-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem;
    background: var(--white);
    border: none;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
}

.newsletter-form input:focus {
    outline: 2px solid var(--stone);
}

.newsletter-form button {
    padding: 1.2rem 2.5rem;
    background: var(--cream);
    color: var(--black);
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--stone);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 4rem 2rem 2rem;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 6rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 247, 244, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-wrapper,
    .featured-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-heading {
        font-size: 4rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .studio-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
