:root {
    --bg-base: #030303;
    --bg-surface: #080808;
    --text-primary: #d4d0c9;
    --text-secondary: #8c8881;
    --accent: #6b5a45; 
    --accent-glow: rgba(107, 90, 69, 0.3);
    --border: #1a1815;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
}

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

body, html {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.15;
    z-index: 50;
    mix-blend-mode: overlay;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at center, var(--bg-surface) 0%, var(--bg-base) 100%);
    border-bottom: 1px solid var(--border);
}

.hero-content {
    text-align: center;
    padding: 0 20px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px var(--accent-glow);
}

.divider {
    height: 1px;
    width: 60px;
    background-color: var(--accent);
    margin: 0 auto 1.5rem auto;
}

.subtitle {
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.6;
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* Main Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 20px;
}

/* Intro */
.intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 8rem auto;
}

.intro p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro p:first-child {
    color: var(--text-primary);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

/* Offerings Layout - High End E-commerce / Editorial */
.offerings {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 8rem;
}

.category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.category.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl; /* simple hack to reverse layout without flex order */
}

.category.reverse > * {
    direction: ltr; /* reset text direction */
}

.category-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.2) brightness(0.8);
    transition: filter 0.8s ease, transform 1.5s ease;
}

.category:hover .category-image img {
    filter: grayscale(30%) contrast(1.1) brightness(0.9);
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,3,3,0.8), transparent);
    pointer-events: none;
}

.category-content {
    padding: 2rem 0;
}

.category h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.category h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 1px;
    background-color: var(--accent);
}

.manifesto {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-style: italic;
    line-height: 1.8;
}

.product {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.product h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.price {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

/* The Button */
.buy-button {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.buy-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.buy-button:hover {
    color: var(--bg-base);
    border-color: var(--text-primary);
}

/* The Ledger (Info) */
.business-info {
    border-top: 1px solid var(--border);
    padding-top: 5rem;
}

.business-info h2 {
    font-size: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.info-grid h3 {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.info-grid p, .info-grid a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.8;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    background-color: var(--bg-surface);
    padding: 6rem 20px;
    text-align: center;
}

footer h2 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

footer p {
    font-style: italic;
    color: var(--text-secondary);
}

.copyright {
    margin-top: 3rem;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    font-style: normal;
    opacity: 0.5;
}

/* Simple Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Breakpoints */
@media (max-width: 900px) {
    .category, .category.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-image {
        aspect-ratio: 16/9;
    }
    
    .category-content {
        padding: 0;
        text-align: center;
    }
    
    .category h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .offerings {
        gap: 5rem;
    }
}