/* Palette: Olive Green, Sand, Off-White, Dark Stone */
:root {
    --olive: #6B8E23;
    --dark-olive: #556B2F;
    --sand: #FDF5E6;
    --white: #FFFFFF;
    --stone: #4A4A4A;
    --paper: #F5F1E9;
    
    --font-head: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--sand);
    color: var(--stone);
    font-family: var(--font-body);
    line-height: 1.7;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 4px; }

/* Header */
.aegean-header { background: var(--white); padding: 25px 0; border-bottom: 1px solid #E6DCCF; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; color: var(--stone); font-weight: 700; letter-spacing: 1px; }
.olive { color: var(--olive); }

.classic-nav a { margin-left: 30px; text-transform: uppercase; font-size: 0.85rem; color: #888; font-weight: 700; letter-spacing: 1px; }
.classic-nav a:hover, .classic-nav a.active { color: var(--olive); }

.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--stone); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100%; background: var(--white); z-index: 2000; padding: 40px; box-shadow: -5px 0 20px rgba(0,0,0,0.05); transition: 0.4s; border-left: 5px solid var(--olive); }
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.mobile-menu a { display: block; font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 20px; color: var(--stone); }

@media (max-width: 900px) {
    .classic-nav { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero-aegean { height: 85vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: brightness(0.8) sepia(0.2); }
.hero-content { position: relative; z-index: 10; background: rgba(255,255,255,0.9); padding: 60px; max-width: 800px; border: 1px solid var(--olive); }

.sub-title { font-family: var(--font-head); font-size: 0.9rem; color: var(--olive); letter-spacing: 3px; display: block; margin-bottom: 20px; font-weight: 700; }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.2; margin-bottom: 30px; color: var(--stone); }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #666; font-style: italic; }

.btn-olive { background: var(--olive); color: var(--white); padding: 15px 40px; border-radius: 2px; font-family: var(--font-head); font-weight: 700; letter-spacing: 1px; display: inline-block; border: none; cursor: pointer; transition: 0.3s; }
.btn-olive:hover { background: var(--dark-olive); }

/* Collections */
.section-head h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--stone); margin-bottom: 10px; }
.olive-branch { font-size: 2rem; color: var(--olive); margin-bottom: 40px; }
.olive-branch.left { text-align: left; margin-left: 0; }
.text-center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.collection-card { background: var(--white); padding: 20px; border: 1px solid #E6DCCF; transition: 0.3s; text-align: center; }
.collection-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.card-img { height: 300px; background-size: cover; background-position: center; margin-bottom: 20px; filter: sepia(0.3); }
.collection-card h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 10px; color: var(--stone); }
.collection-card p { font-size: 0.9rem; color: #777; }

/* Quote */
.quote-section { background: var(--olive); color: var(--white); padding: 80px 0; text-align: center; margin: 50px 0; }
.quote-section blockquote { font-family: var(--font-head); font-size: 2rem; max-width: 800px; margin: 0 auto 20px; line-height: 1.4; }
.quote-section cite { font-style: normal; letter-spacing: 2px; font-size: 0.9rem; opacity: 0.8; }

/* About */
.about-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-text h1 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 20px; }
.values-list { list-style: none; margin-top: 30px; font-family: var(--font-head); color: var(--dark-olive); font-weight: 700; }
.values-list li { margin-bottom: 10px; padding-left: 20px; border-left: 3px solid var(--olive); }
.about-img img { border: 10px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); filter: sepia(0.2); }

/* Testimonials */
.reviews-classic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-paper { background: var(--paper); padding: 40px; border: 1px solid #D3C6B4; position: relative; }
.review-paper p { font-style: italic; color: #555; margin-bottom: 20px; font-family: var(--font-head); font-size: 1.1rem; }
.r-author { font-size: 0.85rem; font-weight: 700; color: var(--olive); text-transform: uppercase; }

/* Contact */
.contact-parchment { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--white); padding: 60px; border: 1px solid #E6DCCF; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.c-left h2 { font-family: var(--font-head); color: var(--stone); margin-bottom: 20px; }
.c-detail { margin-top: 40px; font-weight: 700; color: var(--olive); font-family: var(--font-head); font-size: 1.1rem; }

.classic-form .form-group { margin-bottom: 20px; }
.classic-form label { display: block; font-family: var(--font-head); font-size: 0.9rem; margin-bottom: 5px; color: #888; }
.classic-form input, .classic-form select, .classic-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; background: var(--paper); font-family: var(--font-body); font-size: 1rem; }
.full { width: 100%; }

/* Legal */
.legal-scroll { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border: 1px solid #E6DCCF; }
.legal-scroll h1 { font-family: var(--font-head); color: var(--stone); }

/* Footer */
.aegean-footer { background: #3E3B36; color: #A8A39D; padding: 60px 0 30px; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-family: var(--font-head); color: var(--white); margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: #888; }
.f-links a:hover { color: var(--white); }
.copyright { text-align: center; font-size: 0.8rem; border-top: 1px solid #555; padding-top: 20px; }

/* Cookie */
.cookie-sand { position: fixed; bottom: 20px; left: 20px; background: var(--paper); padding: 20px; border: 1px solid var(--olive); box-shadow: 0 5px 20px rgba(0,0,0,0.1); z-index: 3000; display: none; align-items: center; gap: 20px; }
.cookie-sand.active { display: flex; }
.cookie-sand button { background: var(--olive); color: var(--white); border: none; padding: 8px 20px; font-family: var(--font-head); cursor: pointer; }

@media (max-width: 900px) {
    .grid-3, .about-layout, .reviews-classic, .contact-parchment, .hero-content { grid-template-columns: 1fr; width: 100%; max-width: 100%; }
    .hero-content { padding: 40px 20px; border: none; background: rgba(255,255,255,0.95); margin: 20px; }
    .hero-content h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}