@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Outfit:wght@300;400;500;700&display=swap');

:root {
    --bg-color: #F9F8F6; /* Soft warm white */
    --text-color: #2C2A29; /* Soft black */
    --accent-color: #8C7A6B; /* Muted taupe/earth */
    --border-color: #E5E3DF;
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    
    --transition-smooth: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: all 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
}

/* Typography Scale */
.text-hero { font-size: clamp(4rem, 10vw, 9rem); letter-spacing: -0.02em; }
.text-h2 { font-size: clamp(3rem, 6vw, 5rem); }
.text-h3 { font-size: clamp(2rem, 4vw, 3rem); }
.text-body-large { font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 300; line-height: 1.5; }
.text-caption { font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500; color: var(--accent-color); }

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

.logo {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-btn {
    background: white;
    color: black;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.cart-btn:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    height: 100vh;
    padding: 2vw;
    display: flex;
    flex-direction: column;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transform: scale(0.95);
    opacity: 0;
    animation: imageReveal 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes imageReveal {
    to { transform: scale(1); opacity: 1; }
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-text-overlay {
    position: absolute;
    bottom: 5%;
    left: 5%;
    color: white;
    max-width: 800px;
}

/* Manifesto / About */
.manifesto {
    padding: 15vw 5vw;
    display: flex;
    justify-content: center;
    text-align: center;
}

.manifesto-content {
    max-width: 1000px;
}

.manifesto p {
    margin-top: 2rem;
    color: #555;
}

/* The Collection (Shop) */
.collection {
    padding: 5vw;
}

.collection-header {
    text-align: center;
    margin-bottom: 10vw;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15vw;
    gap: 5vw;
}

.product-row:nth-child(even) {
    flex-direction: row-reverse;
}

.product-visual {
    flex: 1;
    position: relative;
}

.product-visual img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.product-visual:hover img {
    transform: translateY(-10px);
}

.product-info {
    flex: 1;
    padding: 0 4vw;
}

.price-tag {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    margin: 1.5rem 0 2.5rem;
    display: block;
    color: var(--accent-color);
}

.product-desc {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 1.2rem 3rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 8vw 5vw 4vw;
    background-color: #EBE9E4;
    border-radius: 24px 24px 0 0;
    margin: 0 1vw;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8vw;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-brand h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    gap: 6vw;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #555;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--text-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .product-row, .product-row:nth-child(even) {
        flex-direction: column;
    }
    .product-visual img { height: 60vh; }
    .product-info { padding: 4vw 0; margin-top: 2rem; }
    footer { border-radius: 0; margin: 0; }
}

/* Scroll reveal utility classes */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}
