:root {
    --brand-dark: #181512;
    --brand-light: #FDFBF7;
    --brand-gold: #C69A50;
    --text-main: #2C2825;
    --text-muted: #82786F;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--brand-light); color: var(--text-main); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, .brand-font { font-family: 'Playfair Display', serif; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; background: rgba(253, 251, 247, 0.95); backdrop-filter: blur(10px); z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 25px 0; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-size: 1.8rem; font-weight: 700; color: var(--brand-dark); font-family: 'Playfair Display', serif; letter-spacing: 2px; }
.nav-menu { display: flex; list-style: none; gap: 35px; }
.nav-menu a { text-decoration: none; color: var(--text-main); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-menu a:hover { color: var(--brand-gold); }

/* Hero */
.hero { height: 100vh; display: flex; align-items: center; background: linear-gradient(rgba(24, 21, 18, 0.85), rgba(24, 21, 18, 0.7)), url('https://images.unsplash.com/photo-1497935586351-b67a49e012bf?auto=format&fit=crop&q=80') center/cover; position: relative; color: white; }
.hero-content { max-width: 800px; padding-top: 50px; }
.hero h1 { font-size: 5.5rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 400; }
.hero h1 span { color: var(--brand-gold); font-style: italic; }
.hero p { font-size: 1.25rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 300; opacity: 0.9; margin-bottom: 3rem; max-width: 600px; letter-spacing: 0.5px; }

/* Button */
.btn { display: inline-block; padding: 18px 45px; background: var(--brand-gold); color: white; text-decoration: none; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; border: 1px solid var(--brand-gold); transition: all 0.4s ease; border-radius: 2px; }
.btn:hover { background: transparent; color: var(--brand-gold); }

/* Menu */
.menu-section { padding: 120px 0; background: var(--brand-light); }
.section-title { text-align: center; margin-bottom: 80px; }
.section-title h2 { font-size: 3.5rem; color: var(--brand-dark); }
.section-title p { color: var(--text-muted); font-size: 1.1rem; margin-top: 15px; font-family: 'Playfair Display', serif; font-style: italic; letter-spacing: 1px; }
.section-title::after { content: ''; display: block; width: 60px; height: 2px; background: var(--brand-gold); margin: 20px auto 0; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.menu-item { background: white; border-radius: 0; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.04); transition: transform 0.5s ease; border: 1px solid rgba(0,0,0,0.03); }
.menu-item:hover { transform: translateY(-15px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.menu-item img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.6s ease; }
.menu-item:hover img { transform: scale(1.05); }
.menu-content { padding: 40px 30px; text-align: center; background: white; position: relative; z-index: 2; }
.menu-content h3 { font-size: 2rem; color: var(--brand-dark); margin-bottom: 15px; margin-top: -10px; }
.menu-content p { color: var(--text-muted); font-size: 0.95rem; }

/* Footer */
.footer { background: var(--brand-dark); color: white; padding: 80px 0 40px; text-align: center; }
.footer .brand-font { font-size: 2.5rem; color: var(--brand-gold); margin-bottom: 20px; letter-spacing: 3px; }
.footer p { color: #888; font-size: 1rem; margin-bottom: 40px; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; font-size: 0.85rem !important; margin-bottom: 0 !important; color: #555 !important; }

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero h1 { font-size: 3.5rem; }
}

/* Philosophy Section */
.philosophy-section { padding: 120px 0; background: var(--section-bg); }
.philosophy-content { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.philosophy-text h2 { font-family: 'Playfair Display', serif; font-size: 3.2rem; color: var(--text-color); margin-bottom: 25px; line-height: 1.2; }
.philosophy-text h2 span { color: var(--primary-color); font-style: italic; }
.philosophy-text > p { font-size: 1.15rem; line-height: 1.8; color: #4b5563; margin-bottom: 40px; }
.beliefs { display: grid; grid-template-columns: 1fr; gap: 30px; }
.belief-item { background: white; padding: 25px; border-radius: 12px; border-left: 4px solid var(--primary-color); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.belief-item h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text-color); margin-bottom: 12px; }
.belief-item p { font-size: 1rem; color: #6b7280; line-height: 1.6; }
@media (max-width: 992px) {
    .philosophy-content { grid-template-columns: 1fr; gap: 50px; }
}
