:root {
    --eggplant: #330033;
    --saffron: #FFB300;
    --cream: #F9F9F9;
    --text-dark: #222;
    --text-light: #666;
    
    --font-serif: 'Abril Fatface', cursive;
    --font-sans: 'Mulish', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Layout Grid */
.layout-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr; /* Fixed Sidebar + Fluid Content */
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    background-color: var(--eggplant);
    color: white;
    position: fixed;
    width: 280px;
    height: 100vh;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1000;
}

.brand a {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    color: white;
    letter-spacing: 2px;
}
.saffron { color: var(--saffron); }

.side-nav { display: flex; flex-direction: column; gap: 20px; }
.side-nav a { font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.6); position: relative; }
.side-nav a:hover, .side-nav a.active { color: var(--saffron); padding-left: 10px; }
.side-nav a::before { content: ''; position: absolute; left: 0; top: 50%; width: 0; height: 2px; background: var(--saffron); transition: 0.3s; }
.side-nav a:hover::before, .side-nav a.active::before { width: 5px; }

.side-footer { font-size: 0.8rem; color: rgba(255,255,255,0.4); display: flex; justify-content: space-between; }

/* Content Area */
.content-area {
    grid-column: 2;
    background: white;
}

/* Mobile Specifics */
.mobile-header { display: none; }
.mobile-overlay { display: none; }

/* Split Hero */
.split-hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.hero-text {
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.tag { font-size: 0.8rem; letter-spacing: 3px; font-weight: 700; color: var(--saffron); margin-bottom: 20px; display: block; }
.hero-text h1 { font-family: var(--font-serif); font-size: 4rem; line-height: 1.1; margin-bottom: 30px; color: var(--eggplant); }
.hero-text p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 40px; max-width: 400px; }
.btn-fusion { background: var(--eggplant); color: white; padding: 15px 40px; font-weight: 700; border-radius: 50px; letter-spacing: 1px; }
.btn-fusion:hover { background: var(--saffron); color: var(--eggplant); }

.hero-image {
    background-size: cover;
    background-position: center;
}

/* Asymmetrical Grid */
.fusion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.grid-item { height: 500px; }
.grid-item.text { padding: 80px; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.grid-item.img { background-size: cover; background-position: center; }
.grid-item h2 { font-family: var(--font-serif); font-size: 2.5rem; margin-bottom: 20px; color: var(--eggplant); }
.read-more { margin-top: 20px; font-weight: 700; color: var(--saffron); text-decoration: underline; }

/* About Panels */
.scroll-snap { height: 100vh; overflow-y: scroll; scroll-snap-type: y mandatory; }
.panel { height: 100vh; display: grid; grid-template-columns: 1fr 1fr; scroll-snap-align: start; }
.panel.reverse { direction: rtl; }
.panel.reverse .panel-content { direction: ltr; }
.panel-content { padding: 100px; display: flex; flex-direction: column; justify-content: center; }
.panel-content h1 { font-family: var(--font-serif); font-size: 3.5rem; color: var(--eggplant); }
.saffron-line { width: 80px; height: 5px; background: var(--saffron); margin: 20px 0; }
.panel-img img { width: 100%; height: 100vh; object-fit: cover; }

/* Testimonials */
.bg-light { background: var(--cream); min-height: 100vh; padding: 80px; }
.editorial-header { text-align: center; margin-bottom: 60px; border-bottom: 2px solid var(--eggplant); padding-bottom: 20px; display: inline-block; width: 100%; }
.editorial-header h2 { font-family: var(--font-serif); font-size: 4rem; color: var(--eggplant); }

.masonry-grid { display: column; columns: 2; gap: 40px; }
.quote-card { break-inside: avoid; background: white; padding: 40px; margin-bottom: 40px; border-left: 5px solid var(--saffron); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.quote-card.large { background: var(--eggplant); color: white; border: none; }
.quote-card blockquote { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 20px; line-height: 1.4; }
.quote-card cite { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* Contact Split */
.contact-split { display: grid; grid-template-columns: 40% 60%; min-height: 100vh; }
.contact-visual { background-size: cover; background-position: center; position: relative; }
.overlay-info { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(51,0,51,0.9); padding: 60px; color: white; }
.overlay-info h3 { color: var(--saffron); font-family: var(--font-serif); margin-bottom: 10px; margin-top: 20px; }

.contact-form-wrapper { padding: 100px; background: white; }
.contact-form-wrapper h2 { font-family: var(--font-serif); font-size: 3rem; color: var(--eggplant); margin-bottom: 30px; }
.form-group { margin-bottom: 30px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; color: var(--text-light); }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: none; border-bottom: 2px solid #ddd; padding: 15px 0; font-family: var(--font-serif); font-size: 1.2rem; outline: none; transition: 0.3s; background: transparent; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--saffron); }
.btn-block { width: 100%; background: var(--eggplant); color: white; padding: 20px; border: none; font-weight: 700; letter-spacing: 2px; cursor: pointer; transition: 0.3s; }
.btn-block:hover { background: var(--saffron); color: black; }

/* Legal */
.legal-doc { max-width: 800px; margin: 0 auto; padding: 60px; background: white; box-shadow: 0 0 50px rgba(0,0,0,0.05); }
.legal-doc h1 { font-family: var(--font-serif); color: var(--eggplant); font-size: 2.5rem; }
.legal-doc h3 { margin-top: 40px; color: var(--text-dark); }

/* Cookie Strip */
.cookie-strip { position: fixed; bottom: 0; left: 280px; right: 0; background: var(--eggplant); color: white; padding: 20px; display: flex; justify-content: space-between; align-items: center; z-index: 999; transform: translateY(100%); transition: 0.5s; }
.cookie-strip.active { transform: translateY(0); }
.cookie-strip button { background: var(--saffron); border: none; padding: 10px 30px; font-weight: bold; cursor: pointer; }

/* Responsive */
@media (max-width: 900px) {
    .layout-wrapper { display: block; }
    .sidebar { display: none; }
    .mobile-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; background: var(--eggplant); color: white; position: sticky; top: 0; z-index: 1000; }
    .m-logo { font-family: var(--font-serif); font-weight: bold; letter-spacing: 1px; }
    .m-toggle { background: transparent; border: 1px solid var(--saffron); color: var(--saffron); padding: 5px 15px; font-weight: bold; }
    
    .mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--eggplant); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: translateY(-100%); transition: 0.4s; }
    .mobile-overlay.open { transform: translateY(0); }
    .mobile-overlay a { font-family: var(--font-serif); font-size: 2rem; color: white; margin: 15px 0; }
    .close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; color: white; font-size: 2rem; }

    .split-hero, .fusion-grid, .panel, .contact-split { grid-template-columns: 1fr; display: flex; flex-direction: column; height: auto; }
    .panel.reverse { direction: ltr; }
    .hero-text, .panel-content, .grid-item.text, .contact-form-wrapper { padding: 40px 20px; }
    .hero-image, .grid-item.img, .panel-img, .contact-visual { height: 300px; width: 100%; }
    .masonry-grid { columns: 1; }
    .cookie-strip { left: 0; flex-direction: column; text-align: center; gap: 10px; }
    .panel-img img { height: 300px; }
}