:root {
    --bg: #0a0a0a;
    --fg: #e5e5e5;
    --accent: #d4a373; /* Raw Wood / Brass */
    --border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter Tight', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Noise Texture Overlay */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

/* Technical Lines Decor */
.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
    z-index: 1;
}

.grid-line {
    width: 1px;
    height: 100%;
    background: var(--border);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1000;
}

.brand {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    line-height: 1.5;
}

.brand span {
    display: block;
    font-weight: 300;
    opacity: 0.5;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
}

.nav-toggle div {
    width: 30px;
    height: 1px;
    background: var(--fg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5rem;
    position: relative;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0) 0%, rgba(10,10,10,1) 90%), 
                url('https://img1.wsimg.com/isteam/ip/54ef6e0b-73e3-4a28-abc1-b0e019f7a6c3/9F1BC68C-242F-4978-82BF-8C3DE30523ED.jpeg') no-repeat center center/cover;
    z-index: -1;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 12vw, 15rem);
    font-weight: 400;
    line-height: 0.8;
    margin-left: -0.5vw;
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 4rem;
}

.hero-desc {
    max-width: 400px;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.6;
}

/* Vertical Story Section */
.story {
    padding: 20rem 5rem;
    z-index: 2;
    position: relative;
}

.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    margin-bottom: 20rem;
}

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

.story-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 3rem;
}

.story-img {
    width: 100%;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    filter: grayscale(1) contrast(1.2);
    transition: var(--transition);
}

.story-img:hover {
    filter: grayscale(0) contrast(1);
}

/* Shop - Technical Grid */
.shop {
    padding: 10rem 5rem;
    border-top: 1px solid var(--border);
    z-index: 2;
    position: relative;
}

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

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.product-card {
    background: var(--bg);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: var(--transition);
}

.product-card:hover {
    background: #111;
}

.product-spec {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.4;
}

.product-image-container {
    width: 100%;
    aspect-ratio: 1;
    background: #151515;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
}

.product-card:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.product-info h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.buy-btn {
    margin-top: auto;
    background: none;
    border: 1px solid var(--fg);
    color: var(--fg);
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: var(--transition);
}

.buy-btn:hover {
    background: var(--fg);
    color: var(--bg);
}

/* Footer Technical */
footer {
    padding: 10rem 5rem 5rem;
    border-top: 1px solid var(--border);
    z-index: 2;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
}

.footer-contact h2 {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 0.9;
}

@media (max-width: 1000px) {
    .story-block, .shop-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero { padding: 2rem; }
    .hero h1 { font-size: 15vw; }
}
