:root {
    --primary: #2d3e33; /* Oregon Pine */
    --accent: #c4988c; /* Warm Clay */
    --dark: #1a1a1a; /* Charcoal */
    --light: #f4f1ea; /* Parchment */
    --white: #ffffff;
    --text: #2a2a2a;
    --muted: #6b6b6b;
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    --container: 1400px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 4rem;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
}

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

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

/* Hero Section */
.hero {
    height: 110vh; /* Extra for parallax */
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(1);
}

.hero-title-wrap {
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: clamp(4rem, 15vw, 12rem);
    margin: 0;
    line-height: 0.85;
}

.hero-subtitle {
    margin-top: 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    opacity: 0.6;
}

/* Section Styling */
section {
    padding: 10vw 4vw;
}

.section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--muted);
    margin-bottom: 2rem;
    display: block;
}

/* Asymmetrical Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.about-text {
    grid-column: 2 / 6;
    align-self: center;
}

.about-text h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.about-image-wrap {
    grid-column: 7 / 13;
    position: relative;
}

.about-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    filter: sepia(0.2) contrast(1.1);
}

.floating-caption {
    position: absolute;
    bottom: -2rem;
    left: -4rem;
    background: var(--accent);
    color: var(--white);
    padding: 2rem;
    max-width: 250px;
    font-size: 0.9rem;
}

/* Shop Section - Editorial View */
.shop-item {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    margin-bottom: 15vw;
    align-items: center;
}

.shop-item:nth-child(even) .item-info {
    grid-column: 8 / 12;
    grid-row: 1;
}

.shop-item:nth-child(even) .item-image {
    grid-column: 2 / 7;
    grid-row: 1;
}

.item-image {
    grid-column: 6 / 12;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    transition: var(--transition-slow);
}

.item-image:hover img {
    transform: scale(1.05);
}

.item-info {
    grid-column: 2 / 5;
    z-index: 10;
}

.item-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
}

.item-info h3 {
    font-size: 3rem;
    margin: 1rem 0;
}

.item-price {
    font-weight: 500;
    margin-bottom: 2rem;
    display: block;
}

.btn-minimal {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 1rem 2rem;
    border: 1px solid var(--dark);
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition-fast);
    display: inline-block;
}

.btn-minimal:hover {
    background: var(--dark);
    color: var(--white);
}

/* Footer Modern */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 10vw 4vw 4vw;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5vw;
}

.footer-large-text {
    font-family: 'Playfair Display', serif;
    font-size: 8vw;
    line-height: 1;
    max-width: 60%;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.footer-col h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.footer-col a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .about-text, .about-image-wrap, .item-info, .item-image {
        grid-column: 1 / 13 !important;
    }
    .hero h1 { font-size: 5rem; }
    nav { padding: 1.5rem; }
    .nav-links { display: none; }
}
