/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --olive: #5d6d3b;        /* Earthier, deeper green */
    --olive-dark: #3a4425;
    --olive-light: #8ba15d;
    --cream: #f2ede4;        /* Warmer, parchment-like */
    --white: #fdfbf7;
    --wood: #4a3728;         /* New Wood Tone from the photo */
    --text: #2d2a26;
    --muted: #6b6358;
    --line: rgba(74, 55, 40, 0.1); /* Wood-toned lines */
    
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Outfit', system-ui, sans-serif;
    --heading: 'Cinzel', serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body::before {
    content: '';
    position: fixed;
    top: 15%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: url('olive-watermark.svg') no-repeat center;
    background-size: contain;
    opacity: 0.12;
    pointer-events: none;
    z-index: 100; /* Bring to front for true watermark feel */
    filter: sepia(0.2);
}

body::after {
    content: '';
    position: fixed;
    bottom: 10%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: url('olive-watermark.svg') no-repeat center;
    background-size: contain;
    opacity: 0.12;
    pointer-events: none;
    z-index: 100;
    transform: rotate(180deg);
}

/* Section Specific Watermarks */
.menu-section {
    position: relative;
    overflow: hidden;
}

.opening-hours .olive-watermark {
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: 320px;
    height: 320px;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
    transform: rotate(15deg);
}

.menu-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: url('olive-watermark.svg') no-repeat center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    transform: translateY(-50%) rotate(-45deg);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png"); /* Subtle texture */
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px;
    transition: var(--transition);
}

nav.scrolled {
    background: var(--white);
    height: 70px;
    box-shadow: 0 2px 20px rgba(74, 55, 40, 0.08);
    border-bottom: 1px solid var(--line);
}

.nav-brand { text-decoration: none; display: flex; flex-direction: column; }
.nav-logo { font-family: var(--heading); font-size: 24px; font-weight: 700; color: var(--white); letter-spacing: 0.1em; transition: var(--transition); }
.nav-sub { font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive-light); }

nav.scrolled .nav-logo { color: var(--wood); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em; transition: var(--transition); }
nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--olive) !important; }

.nav-cta {
    background: var(--wood) !important; /* Wood CTA */
    color: var(--white) !important;
    padding: 10px 20px;
    font-weight: 600 !important;
    border-radius: 2px;
}

/* ── HERO ── */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: var(--wood);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    filter: sepia(0.1) contrast(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom { 
    from { transform: scale(1); } 
    to { transform: scale(1.1); } 
}

.hero-watermark {
    position: absolute;
    width: 450px;
    height: 450px;
    opacity: 0.12;
    z-index: 2;
    pointer-events: none;
}

.hero-watermark.left {
    left: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
}

.hero-watermark.right {
    right: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(74, 55, 40, 0.4), rgba(45, 42, 38, 0.7));
    z-index: 3;
}

.hero-content { position: relative; z-index: 4; max-width: 800px; padding: 0 20px; }

.hero-greek {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--olive-light);
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-greek::before, .hero-greek::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(139, 161, 93, 0.4);
}

.hero-headline {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(64px, 10vw, 110px);
    line-height: 0.9;
    margin-bottom: 24px;
}

.hero-headline em { font-style: italic; font-weight: 300; color: var(--olive-light); display: block; }

.hero-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 60px; }

.btn-olive {
    background: var(--olive);
    color: var(--white);
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}
.btn-olive:hover { background: var(--olive-light); transform: translateY(-2px); }

.btn-ghost {
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 14px 36px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}
.btn-ghost:hover { background: var(--white); color: var(--olive-dark); }

.hero-stats {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

.hero-stat { padding: 0 40px; border-right: 1px solid rgba(255,255,255,0.1); }
.hero-stat:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: 36px; color: var(--olive-light); display: block; }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }

/* ── BAND ── */
.band { background: var(--olive); padding: 15px 0; overflow: hidden; white-space: nowrap; }
.band-track { display: inline-flex; animation: scroll 30s linear infinite; }
.band-item { font-family: var(--serif); font-style: italic; color: var(--white); padding: 0 30px; font-size: 18px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section { padding: 100px 24px; max-width: 1100px; margin: 0 auto; text-align: center; }
.section-eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3em; color: var(--olive); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 15px; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--olive); opacity: 0.3; }
.section-title { font-family: var(--serif); font-size: clamp(40px, 6vw, 70px); line-height: 1.1; color: var(--olive-dark); margin-bottom: 30px; }
.section-title em { font-style: italic; font-weight: 300; color: var(--olive); }
.section-sub { font-size: 18px; color: var(--muted); max-width: 700px; margin: 0 auto; }

/* Philosophy Grid */
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; text-align: left; }
.philosophy-image { width: 100%; height: 500px; object-fit: cover; box-shadow: 30px 30px 0 var(--white); border: 1px solid var(--line); }
.philosophy-text .section-sub { margin-bottom: 20px; text-align: left; }

/* ── MENU ── */
.menu-inner, .manifesto {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto {
    border: 2px solid var(--line);
    padding: 60px 40px;
    margin: 40px auto 60px;
    text-align: center;
    position: relative;
    background-color: #ffffff;
    background-image: 
        linear-gradient(45deg, #d32f2f 25%, transparent 25%, transparent 75%, #d32f2f 75%, #d32f2f),
        linear-gradient(45deg, #d32f2f 25%, transparent 25%, transparent 75%, #d32f2f 75%, #d32f2f);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.05);
}

.manifesto-inner {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--line);
    position: relative;
    z-index: 2;
}

.manifesto::before { content: '◈'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--white); padding: 0 15px; color: var(--olive); font-size: 20px; z-index: 3; }
.manifesto p { font-family: var(--serif); font-size: 24px; font-style: italic; color: var(--text); position: relative; z-index: 2; }

.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; text-align: left; }
.philosophy-image-wrap { position: relative; height: 500px; overflow: hidden; }
.philosophy-image { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.philosophy-image-wrap:hover .philosophy-image { transform: scale(1.05); }

.menu-cats { display: flex; flex-direction: column; gap: 60px; }
.cat-header { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.cat-header hr { flex: 1; border: none; border-top: 1px solid var(--line); }
.cat-name { font-family: var(--serif); font-size: 32px; color: var(--wood); }
.cat-greek { font-family: var(--serif); font-style: italic; color: var(--olive); font-size: 16px; margin-left: 10px; }

.menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--line); }
.item-name { font-family: var(--serif); font-size: 24px; color: var(--text); display: block; }
.item-desc { font-size: 14px; color: var(--muted); font-style: italic; }
.item-price { font-family: var(--serif); font-size: 22px; color: var(--olive); font-weight: 600; }

/* ── ABOUT ── */
.about-section { background: var(--white); color: var(--text); padding: 100px 24px; text-align: center; position: relative; border-top: 1px solid var(--line); }
.about-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.about-title { font-family: var(--serif); font-size: clamp(40px, 6vw, 70px); color: var(--wood); margin-bottom: 40px; }
.about-title em { color: var(--olive); font-style: italic; }
.about-body { font-size: 18px; opacity: 1; margin-bottom: 30px; line-height: 1.8; color: var(--muted); }

.about-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.about-fact { text-align: center; }
.fact-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--olive); margin-bottom: 10px; opacity: 0.8; font-weight: 600; }
.fact-val { font-family: var(--serif); font-size: 20px; color: var(--wood); font-style: italic; }

/* ── REVIEWS ── */
.reviews-section { padding: 100px 24px; background: var(--cream); text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.review-card { background: var(--white); padding: 40px; border: 1px solid var(--line); text-align: left; position: relative; transition: var(--transition); box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(107, 124, 69, 0.08); }
.review-stars { color: var(--olive); font-size: 14px; margin-bottom: 15px; }
.review-text { font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.5; margin-bottom: 20px; color: var(--text); }
.review-meta { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ── HOURS ── */
.hours-section { padding: 100px 24px; background: var(--white); text-align: center; }
.hours-table { max-width: 500px; margin: 0 auto 40px; }
.hours-row { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--line); }
.hours-day { text-transform: uppercase; font-size: 14px; letter-spacing: 1px; color: var(--muted); }
.hours-time { font-family: var(--serif); font-size: 22px; color: var(--olive-dark); font-weight: 600; }

.loc-address {
    margin: 30px 0 20px;
    font-size: 16px;
    color: var(--muted);
}

.loc-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}

.btn-outline-olive { border: 2px solid var(--olive); color: var(--olive); padding: 12px 30px; text-decoration: none; font-weight: 600; transition: var(--transition); display: inline-flex; align-items: center; }
.btn-outline-olive:hover { background: var(--olive); color: var(--white); }

/* ── FOOTER ── */
footer { background: var(--olive-dark); color: var(--white); padding: 60px 52px; text-align: center; }
.footer-logo { font-family: var(--heading); font-size: 32px; margin-bottom: 20px; letter-spacing: 2px; }
.footer-tagline { font-family: var(--serif); font-style: italic; opacity: 0.5; margin-bottom: 40px; }
.footer-links { display: flex; justify-content: center; gap: 40px; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.footer-links a:hover { color: var(--olive-light); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.fu { opacity: 0; animation: fadeUp 1s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fu:nth-child(2) { animation-delay: 0.2s; }
.fu:nth-child(3) { animation-delay: 0.4s; }
.fu:nth-child(4) { animation-delay: 0.6s; }

/* Candlelight Flicker */
.candle-glow { position: relative; }
.candle-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 200, 100, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: flicker 4s infinite ease-in-out;
}
@keyframes flicker { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hero-headline { font-size: 56px; }
    .hero-stat { padding: 0 20px; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    footer { padding: 40px 20px; }
    .footer-links { flex-direction: column; gap: 20px; }
}

.footer-pattern {
    height: 40px;
    width: 100%;
    background-image: 
        linear-gradient(45deg, #d32f2f 25%, transparent 25%, transparent 75%, #d32f2f 75%, #d32f2f),
        linear-gradient(45deg, #d32f2f 25%, transparent 25%, transparent 75%, #d32f2f 75%, #d32f2f);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    margin-top: 40px;
    opacity: 0.8;
}
