:root {
    --bg-color: #f9f7f2;
    --text-color: #1a1a1a;
    --accent-color: #bc6c25;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

/* Reset básico para evitar scrolls raros */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden; /* Evita desbordamiento horizontal */
}

/* Navbar Corregida */
.navbar {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Cambiado a 100% */
    z-index: 100;
    /* background: rgba(249, 247, 242, 0.8); */ /* Opcional: fondo semitransparente al hacer scroll */
}

.logo {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh; /* Cambiado height por min-height */
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 100px 5% 50px; /* Añadido padding top para no chocar con la navbar */
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    font-weight: 300;
}

.hero-content h1 span {
    color: var(--accent-color);
    font-style: italic;
    padding-left: 2rem;
    display: block; /* Para asegurar el efecto visual */
}

.hero-image img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    filter: sepia(20%) contrast(90%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.btn-explore {
    display: inline-block;
    margin-top: 2rem;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
    font-weight: 200;
    transition: 0.3s;
}

.btn-explore:hover {
    color: var(--accent-color);
}

/* Manifesto */
.manifesto {
    padding: 15vh 10%;
    text-align: center;
}

.manifesto h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* CORRECCIÓN AQUÍ: Se añadió la llave de cierre } */
.small-tag {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

/* Menú Bento */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 20px;
    padding: 0 5% 10vh;
}

.menu-item {
    background: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.menu-item.large { grid-column: span 2; }
.menu-item.tall { grid-row: span 2; justify-content: space-between; }
.menu-item.small { background: var(--accent-color); color: white; }

.menu-item img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.menu-item:hover img { transform: scale(1.05); }

.menu-info {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    backdrop-filter: blur(5px);
}

.menu-item.small .menu-info { background: transparent; padding: 0; }

.menu-info h3 { font-family: var(--font-serif); font-size: 1.8rem; margin: 0; }
.price { display: block; margin-top: 10px; font-weight: 600; font-size: 0.9rem; }

/* Contacto */
.contact-section {
    background-color: #1a1a1a;
    color: #f9f7f2;
    padding: 10vh 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
}

.details { margin-top: 3rem; font-weight: 200; letter-spacing: 1px; }

.email-link {
    color: var(--accent-color);
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    border-bottom: 1px solid var(--accent-color);
}

.map-artistic {
    position: relative;
    height: 500px;
    filter: grayscale(100%) contrast(120%);
    opacity: 0.7;
}

.map-artistic img { width: 100%; height: 100%; object-fit: cover; }

.map-marker {
    position: absolute;
    top: 50%; left: 50%;
    width: 20px; height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 10px rgba(188, 108, 37, 0.2);
}

.minimal-footer {
    text-align: center;
    padding: 3rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

/* Responsivo corregido */
@media (max-width: 768px) {
    .hero {
        gr