:root {
    --gold: #bc986a;
    --dark: #1a1a1a;
    --light: #fdfaf7;
    --gray: #777;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body { font-family: 'Montserrat', sans-serif; background: var(--light); color: var(--dark); overflow-x: hidden; }

/* NAV */
nav { display: flex; justify-content: space-between; align-items: center; padding: 25px 8%; position: absolute; width: 100%; z-index: 10; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: white; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin: 0 20px; }
.nav-links a { text-decoration: none; color: white; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; }
.btn-nav { border: 1px solid white; color: white; padding: 10px 20px; text-decoration: none; font-size: 0.8rem; transition: 0.3s; }
.btn-nav:hover { background: white; color: var(--dark); }

/* HERO */
.hero { height: 100vh; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1445116572660-236099ec97a0?q=80&w=1920'); background-size: cover; background-position: center; display: flex; align-items: center; padding: 0 8%; color: white; }
.hero-content h1 { font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: 1.1; margin: 20px 0; }
.hero-content em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-content p { max-width: 500px; margin-bottom: 35px; opacity: 0.9; line-height: 1.8; }
.btn-gold { background: var(--gold); color: white; padding: 15px 35px; text-decoration: none; margin-right: 15px; font-weight: 600; display: inline-block; }
.btn-outline { border: 1px solid white; color: white; padding: 15px 35px; text-decoration: none; display: inline-block; }

/* STORY */
.story { padding: 100px 8%; }
.story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.story-img img { width: 100%; border-radius: 5px; }
.story-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; margin: 15px 0; }
.story-text .sub { color: var(--gold); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; }

/* MENU */
.menu { padding: 100px 8%; background: white; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; }
.line { width: 50px; height: 2px; background: var(--gold); margin: 20px auto; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.menu-card { background: var(--light); border-radius: 10px; overflow: hidden; transition: 0.4s; }
.menu-card:hover { transform: translateY(-10px); }
.img-box { height: 300px; overflow: hidden; }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.menu-card:hover img { transform: scale(1.1); }
.content { padding: 25px; }
.title-price { display: flex; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.title-price h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
.title-price span { color: var(--gold); font-weight: 600; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); height: 400px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: 0.5s; }
.gallery-grid img:hover { filter: grayscale(0); }

/* FOOTER */
footer { background: var(--dark); color: white; padding: 80px 8% 20px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.footer-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; margin-bottom: 15px; }
.footer-links a { color: white; text-decoration: none; margin-left: 20px; opacity: 0.7; }
.copyright { text-align: center; border-top: 1px solid #333; padding-top: 20px; font-size: 0.75rem; opacity: 0.5; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 3rem; }
    .story-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; height: auto; }
}