/* namu.market */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #1a150e; color: #e8dcc8; font-family: 'Lato', sans-serif; font-weight: 400; line-height: 1.75; }

/* Color Palette */
:root {
    --bg-dark: #1a150e;
    --panel-dark: #241e14;
    --wood-walnut: #5c4a30;
    --wood-oak: #a0845c;
    --amber-accent: #c4956a;
    --wood-pine: #d4c4a8;
    --text-cream: #e8dcc8;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: #1a150e;
}

.brand {
    font-family: 'Cormorant', serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.05em;
    color: #e8dcc8;
    margin-bottom: 1.5rem;
}

.amber-line {
    width: 60px;
    height: 1px;
    background: #c4956a;
    margin: 1rem auto;
}

.tagline {
    font-size: 0.85rem;
    color: #c4956a;
    margin-top: 1rem;
}

/* Showcase Section */
.showcase {
    max-width: 540px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: auto;
}

.product-panel {
    background: #241e14;
    padding: 2rem;
    margin-bottom: 2rem;
}

.wood-grain {
    background: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 4px,
        rgba(255,255,255,0.02) 4px,
        transparent 8px
    );
    margin-bottom: 1.5rem;
    /* Wood palette showcased */
    position: relative;
}

.material-block {
    width: 100%;
    height: 80px;
    /* Colors: #d4c4a8, #5c4a30, #a0845c (specified inline in HTML) */
}

.product-title {
    font-family: 'Cormorant', serif;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #e8dcc8;
}

.product-desc {
    font-size: 0.8rem;
    color: #b0a490;
    margin-bottom: 0.75rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Fira Code', monospace;
    font-size: 1rem;
    color: #c4956a;
}

.product-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8b7355;
}

.amber-rule {
    height: 1px;
    background: #c4956a;
    opacity: 0.3;
    margin: 1.5rem 0;
}

/* Materials Section */
.materials {
    max-width: 540px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.section-title {
    font-family: 'Cormorant', serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #e8dcc8;
}

.swatch-strip {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.swatch {
    width: 40px;
    height: 40px;
    /* Colors include: #d4c4a8 (pine), #c4956a (cherry), #a0845c (oak), #8b7355 (teak), #5c4a30 (walnut) */
}

/* Footer Section */
.footer {
    text-align: center;
    padding: 3rem 2rem;
    background: #1a150e;
}

.footer-brand {
    font-family: 'Cormorant', serif;
    font-weight: 500;
    font-size: 0.65rem;
    color: #3a3020;
    letter-spacing: 0.1em;
}

/* Animations & Transitions */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
    .hero { padding: 3rem 1.5rem; }
    .brand { font-size: clamp(1.5rem, 4vw, 2.5rem); }
    .showcase { padding: 2rem 1.5rem; }
    .materials { padding: 2rem 1.5rem; }
    .swatch { width: 32px; height: 32px; }
}
