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

:root {
    --color-bg: #fdfdfc; /* Silk White */
    --color-surface: #f9f9f7;
    --color-text-main: #2d2d2b; /* Softened Deep Slate instead of Black */
    --color-text-sub: #8c8c87;
    --color-accent: #bfa37e; /* Champagne Gold */
    --color-accent-soft: #f4efea; /* Warm Silk Beige */
    --color-border: rgba(0,0,0,0.04);
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    --sp-xl: 120px;
    --sp-lg: 80px;
    --container-w: 1100px;
}

@media (min-width: 1024px) {
    :root {
        --sp-xl: 200px;
        --sp-lg: 120px;
    }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font-sans); 
    background-color: var(--color-bg); 
    color: var(--color-text-main); 
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 30px; }

/* Header */
header {
    position: fixed; top: 0; left: 0; right: 0;
    height: 100px; z-index: 1000;
    display: flex; align-items: center;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
header.scrolled {
    background: rgba(253, 253, 252, 0.85);
    backdrop-filter: blur(25px);
    height: 80px;
    border-bottom: 1px solid var(--color-border);
}

.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo img { height: 20px; filter: contrast(1.1); opacity: 0.9; }

nav ul { display: flex; list-style: none; gap: 60px; }
nav a { 
    text-decoration: none; color: var(--color-text-main); 
    font-size: 0.7rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase;
    transition: color 0.4s;
}
nav a:hover { color: var(--color-accent); }

/* Hero */
.hero {
    height: 100vh; width: 100%; position: relative;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-surface); overflow: hidden;
}
.hero-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.15; /* Drastically reduced opacity for light theme readability */
    transform: scale(1.02); transition: 4s ease;
}
.hero-content {
    position: relative; z-index: 10; text-align: center; color: var(--color-text-main);
    max-width: 900px;
}
.hero h1 { 
    font-family: var(--font-serif); font-size: 7.5rem; font-weight: 300; 
    line-height: 1; margin-bottom: 32px; letter-spacing: -0.03em;
}
.hero p { font-size: 1rem; font-weight: 300; opacity: 0.8; margin-bottom: 50px; text-transform: uppercase; letter-spacing: 0.4em; }

.btn-luxe {
    display: inline-flex; padding: 22px 64px; 
    border: 1px solid rgba(191,163,126,0.3); color: var(--color-accent);
    text-decoration: none; font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 0.3em; transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}
.btn-luxe:hover { 
    background: var(--color-accent); color: #fff; border-color: var(--color-accent); 
    transform: translateY(-3px); box-shadow: 0 15px 40px rgba(191,163,126,0.2); 
}

/* Sections */
.section { padding: var(--sp-xl) 0; }
.section-center { text-align: center; }

.section-label { 
    display: block; font-size: 0.7rem; text-transform: uppercase; 
    letter-spacing: 0.4em; color: var(--color-accent); margin-bottom: 30px;
}
.section h2 { font-family: var(--font-serif); font-size: 4.5rem; font-weight: 300; line-height: 1.1; margin-bottom: 40px; color: var(--color-text-main); }
.section p.intro { font-size: 1.7rem; font-weight: 200; max-width: 850px; margin: 0 auto; color: var(--color-text-sub); line-height: 1.4; }

/* Content Blocks */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; margin-top: var(--sp-lg); }
.content-img { width: 100%; height: 600px; object-fit: cover; border-radius: 4px; }
.content-text h3 { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 20px; font-weight: 400; }
.content-text p { font-size: 1.1rem; color: var(--color-text-sub); margin-bottom: 30px; font-weight: 300; }

/* Product Showcase */
.product-showcase { background: var(--color-surface); }
.product-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 60px; }
.product-mini-card { background: #fff; padding: 60px; text-align: center; transition: 0.4s; }
.product-mini-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.05); }
.product-mini-card h4 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 16px; font-weight: 400; }
.product-mini-card .tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent); margin-bottom: 32px; display: block; }

/* Footer */
footer { padding: 120px 0 60px; background: #fff; border-top: 1px solid var(--color-border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 100px; }
.f-col h5 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 30px; color: var(--color-text-sub); }
.f-col div { font-size: 1rem; margin-bottom: 12px; font-weight: 300; transition: color 0.3s; }
.f-col div:hover { color: var(--color-accent); cursor: pointer; }

.f-bottom { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--color-text-sub); border-top: 1px solid var(--color-border); padding-top: 40px; text-transform: uppercase; letter-spacing: 0.1em; }

/* Transitions */
.reveal { opacity: 0; transform: translateY(30px); transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Grid for Benefits */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 80px; }
.benefit-item h4 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 16px; font-weight: 400; }
.benefit-item p { font-size: 0.95rem; color: var(--color-text-sub); font-weight: 300; }

/* Mobile Navigation Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}
.menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--color-text-main);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-nav {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--color-bg);
    z-index: 1500;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.active { opacity: 1; pointer-events: all; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin: 25px 0; }
.mobile-nav a { 
    font-family: var(--font-serif); font-size: 2.5rem; text-decoration: none; 
    color: var(--color-text-main); font-weight: 300; letter-spacing: 0.05em;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero h1 { font-size: 4.5rem; }
    .section h2 { font-size: 3rem; }
    nav { display: none; }
    .menu-toggle { display: flex; }
    
    .content-grid { grid-template-columns: 1fr !important; gap: 60px !important; }
    .content-text { text-align: left !important; order: 2; }
    .content-img { order: 1; height: 350px; transform: scale(1) !important; }
    
    .benefit-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 3.5rem; }
    .section h2 { font-size: 2.5rem; }
    .hero p { font-size: 0.8rem; letter-spacing: 0.2em; }
    .section p.intro { font-size: 1.25rem; }
    .btn-luxe { padding: 18px 40px; width: 100%; text-align: center; justify-content: center; }
}
