/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blush: #F5E6E0;
    --cream: #FDF8F5;
    --rose: #D4A5A5;
    --gold: #C9A96E;
    --charcoal: #2C2C2C;
    --light-gray: #F9F6F3;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ===== Navigation ===== */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 40px 14px;
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
}

.nav-bar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-content {
    max-width: 600px;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.tagline {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.welcome {
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #888;
    font-weight: 300;
}

/* ===== Collections Nav (3 buttons) ===== */
.collections-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 40px;
    background: white;
    flex-wrap: wrap;
}

.collection-btn {
    flex: 0 1 280px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 2px;
    transition: all 0.4s ease;
    background: white;
}

.collection-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--rose);
}

.collection-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.collection-btn h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.collection-btn p {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
}

/* ===== Storytelling ===== */
.storytelling {
    background: var(--light-gray);
    padding: 100px 20px;
}

.story-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 40px;
    color: var(--charcoal);
}

.story-content p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 20px;
    color: #555;
    font-weight: 300;
}

.story-content strong {
    font-weight: 500;
    color: var(--charcoal);
}

.story-content em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
}

.story-highlight {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    line-height: 2.2;
    color: var(--charcoal);
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* ===== Collection Overlay ===== */
.collection-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: var(--cream);
    overflow-y: auto;
    padding: 80px 40px 60px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.collection-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.close-btn {
    position: fixed;
    top: 24px;
    right: 32px;
    z-index: 210;
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
}

.close-btn:hover {
    background: var(--charcoal);
    color: white;
    border-color: var(--charcoal);
}

.collection-header {
    text-align: center;
    margin-bottom: 50px;
}

.collection-header h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.collection-header p {
    font-size: 13px;
    color: #999;
    letter-spacing: 1px;
}

/* ===== Product Grid ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.product-card .placeholder-img {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.product-info {
    padding: 16px 18px 20px;
    text-align: center;
}

.product-info h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-info .price {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 400;
}

.product-info .sizes {
    font-size: 11px;
    color: #aaa;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* ===== Footer ===== */
footer {
    background: var(--charcoal);
    color: white;
    text-align: center;
    padding: 60px 20px 40px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 24px;
    letter-spacing: 4px;
    margin-bottom: 6px;
}

footer p {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.6;
    font-weight: 300;
}

.footer-contact {
    margin: 12px 0;
    opacity: 0.4 !important;
}

.footer-copy {
    margin-top: 20px;
    font-size: 11px !important;
    opacity: 0.3 !important;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 10px; letter-spacing: 1.5px; }
    .logo-main { font-size: 48px; }
    .tagline { font-size: 16px; }
    .collections-nav { gap: 20px; padding: 40px 20px; }
    .collection-btn { flex: 0 1 100%; padding: 30px 20px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .collection-overlay { padding: 70px 20px 40px; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero { padding: 100px 16px 60px; }
    .story-content { font-size: 14px; }
}
