:root {
    --negro: #1a1a1a;
    --negro-light: #2d2d2d;
    --negro-dark: #0d0d0d;
    --cream: #f5efe3;
    --cream-dark: #e3d9c6;
    --wood: #6b4226;
    --wood-light: #8c5e3c;
    --wine: #6e1d2a;
    --wine-light: #8c2e3e;
    --stone: #7a7068;
    --stone-dark: #4a4440;
    --text-main: #2c2927;
    --white: #ffffff;
    --gold: #c9a84c;
    --gold-dark: #a68832;
    --parchment: #f0e8d8;
    --font-display: 'Lora', Georgia, serif;
    --font-body: 'Cabin', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --nav-height: 72px;
    --section-pad: clamp(60px, 8vw, 100px);
    --container-width: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body { font-family: var(--font-body); color: var(--text-main); background: var(--cream); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.section { padding: var(--section-pad) 0; }

.section-label { display: inline-block; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; position: relative; padding-left: 30px; }
.section-label::before { content: ''; position: absolute; left: 0; top: 50%; width: 22px; height: 2px; background: var(--gold); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 70px); }
.section-header .section-label { padding-left: 0; }
.section-header .section-label::before { display: none; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--negro); margin-bottom: 24px; }
.section-header h2::after { content: ''; display: block; width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); margin: 14px auto 0; border-radius: 2px; }
.section-intro { font-size: 1.1rem; color: var(--stone-dark); line-height: 1.7; font-family: var(--font-display); font-style: italic; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 4px; font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.3s ease; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--negro); color: var(--gold); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold); color: var(--negro); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--negro); transform: translateY(-2px); }
.btn-dark { background: var(--negro); color: var(--gold); border-color: var(--negro); }
.btn-dark:hover { background: var(--gold); color: var(--negro); transform: translateY(-2px); }

/* NAV */
#main-nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: all 0.4s ease; background: var(--negro); border-bottom: 3px solid var(--gold); }
#main-nav.scrolled { padding: 4px 0; background: rgba(26, 26, 26, 0.97); backdrop-filter: blur(12px); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.nav-inner { max-width: var(--container-width); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.nav-logo { display: flex; align-items: center; gap: 14px; line-height: 1.1; }
.nav-logo-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.nav-logo-text { display: flex; flex-direction: column; }
.logo-text { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--cream); font-style: italic; }
.logo-sub { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.nav-actions { display: flex; align-items: center; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: rgba(245, 239, 227, 0.8); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.menu-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 28px; height: 3px; background: var(--gold); border-radius: 2px; transition: all 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* HERO */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 6px solid var(--gold); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); transform: scale(1.05); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,0.6) 0%, rgba(26,26,26,0.45) 50%, rgba(13,13,13,0.75) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 50px 40px; max-width: 700px; background: rgba(26,26,26,0.88); border: 2px solid var(--gold); border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); animation: fadeIn 1s ease-out 0.2s both; margin: 0 20px; backdrop-filter: blur(8px); }
.hero-logo-img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 3px solid var(--gold); box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
.hero-tagline { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: inline-block; border-bottom: 1px solid var(--gold-dark); padding-bottom: 4px; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 4.2rem); color: var(--cream); line-height: 1.1; margin-bottom: 18px; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle { font-family: var(--font-display); font-style: italic; font-size: clamp(1rem, 2.2vw, 1.2rem); color: rgba(245,239,227,0.85); line-height: 1.6; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gold); font-size: 0.8rem; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; animation: bounceHint 2s ease-in-out infinite; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero-year { display: inline-block; font-family: var(--font-display); font-size: 0.85rem; color: var(--gold-dark); letter-spacing: 0.2em; margin-bottom: 10px; }

/* ABOUT */
.about-grid, .menu-dia-grid, .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.about-images { display: grid; grid-template-columns: 3fr 2fr; gap: 16px; }
.about-img-main, .about-img-secondary { min-height: 340px; }
.about-img-main img, .about-img-secondary img, .menu-dia-img img { width: 100%; height: 100%; object-fit: cover; border: 5px solid var(--cream-dark); border-radius: 4px; box-shadow: 4px 4px 18px rgba(0,0,0,0.12); transition: transform 0.5s; }
.about-img-main img:hover, .about-img-secondary img:hover, .menu-dia-img img:hover { transform: scale(1.02); }
.about-text h2, .info-card h2, .menu-dia-text h2 { font-family: var(--font-display); color: var(--negro); }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 20px; }
.about-lead { font-size: 1.1rem; margin-bottom: 16px; line-height: 1.7; font-weight: 600; }
.about-text p { color: var(--stone-dark); margin-bottom: 24px; line-height: 1.7; }
.about-highlights { display: flex; flex-direction: column; gap: 16px; }
.highlight { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--cream-dark); border-left: 4px solid var(--negro); border-radius: 4px; transition: transform 0.3s, background 0.3s; }
.highlight:hover { transform: translateX(6px); background: #ddd2be; }
.highlight-icon svg { color: var(--wood); stroke: var(--wood); }
.highlight strong { display: block; font-size: 1rem; color: var(--negro); font-family: var(--font-display); }
.highlight span { font-size: 0.9rem; color: var(--stone-dark); }

/* RIBBON */
.ribbon { background: var(--negro); border-top: 4px solid var(--gold); border-bottom: 4px solid var(--gold); padding: clamp(50px, 6vw, 80px) 0; }
.ribbon-content, .menu-grid, .reviews-grid { display: grid; gap: 30px; }
.ribbon-content { grid-template-columns: repeat(3, 1fr); }
.ribbon-item { border-radius: 4px; overflow: hidden; background: var(--negro-light); border: 1px solid var(--gold-dark); box-shadow: 4px 4px 0 rgba(0,0,0,0.3); transition: transform 0.4s; }
.ribbon-item:hover { transform: translateY(-6px); }
.ribbon-item img { width: 100%; height: 220px; object-fit: cover; filter: brightness(0.88); border-bottom: 2px solid var(--gold); transition: filter 0.4s, transform 0.5s; }
.ribbon-item:hover img { filter: brightness(1); transform: scale(1.05); }
.ribbon-text { padding: 20px 24px 24px; text-align: center; }
.ribbon-text h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); margin-bottom: 10px; }
.ribbon-text p { color: rgba(245,239,227,0.75); font-size: 0.95rem; line-height: 1.6; }

/* MENU SECTION */
.section-dark { background: var(--negro-light); color: var(--cream); background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 6px); }
.section-dark .section-label { color: var(--gold); }
.section-dark .section-label::before { background: var(--gold); }
.section-dark h2 { color: var(--cream); }
.section-dark .section-intro { color: rgba(245, 239, 227, 0.75); }
.menu-grid { grid-template-columns: repeat(2, 1fr); }
.menu-category { background: var(--parchment); color: var(--text-main); border: 2px solid var(--gold-dark); border-radius: 4px; padding: 32px; box-shadow: 6px 6px 0 var(--negro-dark); transition: transform 0.3s; }
.menu-category:hover { transform: translateY(-4px); }
.menu-cat-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--gold-dark); }
.menu-cat-icon svg { color: var(--wood); stroke: var(--wood); }
.menu-cat-header h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--negro); }
.menu-items li { padding: 12px 0; border-bottom: 1px dashed var(--cream-dark); position: relative; }
.menu-items li:last-child { border-bottom: none; }
.menu-header-flex { display: flex; justify-content: space-between; align-items: baseline; }
.menu-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--negro); }
.menu-price { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--wood); }
.menu-desc { display: block; font-size: 0.88rem; color: var(--stone); margin-top: 3px; font-style: italic; }
.menu-half { font-size: 0.82rem; color: var(--stone); margin-top: 2px; }

/* WINE SECTION (ACCENT) */
.section-accent { background: var(--wine); color: var(--cream); border-top: 4px solid var(--gold); border-bottom: 4px solid var(--gold); }
.section-accent .section-label { color: var(--gold); }
.section-accent .section-label::before { background: var(--gold); }
.menu-dia-text h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 18px; }
.menu-dia-lead { font-size: 1.15rem; color: rgba(245,239,227,0.9); margin-bottom: 30px; line-height: 1.7; font-style: italic; font-family: var(--font-display); }
.menu-dia-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.menu-dia-card { background: var(--parchment); color: var(--text-main); border: 4px double var(--gold); border-radius: 4px; padding: 28px 24px; text-align: center; transition: transform 0.3s; box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.menu-dia-card:hover { transform: translateY(-4px); }
.menu-dia-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--wood); line-height: 1; margin-bottom: 12px; }
.menu-dia-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 16px; color: var(--wine); text-transform: uppercase; letter-spacing: 0.05em; }
.menu-dia-card li { font-size: 0.95rem; padding: 6px 0; border-bottom: 1px solid var(--cream-dark); }
.menu-dia-card li:last-child { border-bottom: none; }
.menu-dia-note { font-size: 0.9rem; color: rgba(245,239,227,0.7); font-style: italic; }

/* GALLERY */
.gallery-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 16px; }
.gallery-item { position: relative; border: 4px solid var(--cream-dark); border-radius: 2px; overflow: hidden; background: var(--negro); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.4s; filter: brightness(0.88); }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.05); }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 25px 15px 15px; background: linear-gradient(transparent, rgba(13,13,13,0.92)); font-size: 1rem; color: var(--cream); font-family: var(--font-display); font-weight: 600; transform: translateY(100%); transition: transform 0.4s ease; text-align: center; }
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* REVIEWS */
.section-warm { background: var(--negro); }
.section-warm .section-header h2 { color: var(--cream); }
.section-warm .section-header h2::after { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
.section-warm .section-intro { color: rgba(245,239,227,0.7); }
.reviews-slider { width: 100%; overflow: hidden; padding: 20px 0; position: relative; }
.reviews-grid { display: flex; gap: 30px; width: max-content; animation: scrollReviews 45s linear infinite; }
.reviews-grid:hover { animation-play-state: paused; }
.review-card { width: 350px; flex-shrink: 0; background: var(--parchment); border-top: 5px solid var(--gold); border-radius: 4px; padding: 28px; box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}
.review-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 1.1rem; margin-bottom: 16px; }
.review-card p { color: var(--stone-dark); line-height: 1.75; margin-bottom: 18px; }
.review-author { display: inline-block; font-family: var(--font-display); color: var(--negro); font-weight: 700; }

/* CONTACT / INFO */
.info-card { background: var(--parchment); border-top: 6px solid var(--negro); border-radius: 4px; padding: clamp(30px, 4vw, 45px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); transition: transform 0.4s; }
.info-card:hover { transform: translateY(-4px); }
.info-card h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); margin-bottom: 24px; }
.schedule-table { display: flex; flex-direction: column; }
.schedule-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--cream-dark); }
.schedule-row:last-child { border-bottom: none; }
.schedule-day { font-weight: 600; font-size: 1.05rem; }
.schedule-time { font-size: 1.05rem; font-weight: 700; color: var(--negro); text-align: right; }
.schedule-note { margin-top: 18px; font-size: 0.9rem; color: var(--stone-dark); font-style: italic; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item svg { flex-shrink: 0; color: var(--wood); margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.9rem; margin-bottom: 4px; color: var(--negro); text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-display); }
.contact-item span, .contact-link { font-size: 1rem; color: var(--text-main); line-height: 1.6; }
.contact-link { font-weight: 600; transition: color 0.3s; }
.contact-link:hover { color: var(--gold-dark); }
.btn-map { width: 100%; }

/* MAP & FOOTER */
.map-section { width: 100%; height: 400px; filter: grayscale(0.3) contrast(1.1) sepia(0.15); }
.map-section iframe { display: block; }
#footer { background: var(--negro-dark); border-top: 4px solid var(--gold); padding: 50px 0 30px; color: var(--cream); }
.footer-content { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.footer-brand { display: flex; flex-direction: column; align-items: center; }
.footer-brand .logo-text { color: var(--cream); }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand p { margin-top: 12px; font-size: 0.95rem; color: rgba(245,239,227,0.65); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.9rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; color: rgba(245,239,227,0.75); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(245,239,227,0.1); width: 100%; text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: rgba(245,239,227,0.45); }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

@keyframes bounceHint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 950px) {
    .about-grid, .menu-dia-grid, .info-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images, .ribbon-content, .menu-grid { grid-template-columns: 1fr; }
    .about-images { order: -1; }
    .menu-dia-img { order: -1; }
    .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gallery-large { grid-column: span 2; grid-row: span 1; }
    .gallery-tall { grid-row: span 1; }
}
@media (max-width: 700px) {
    .menu-toggle { display: flex; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--negro); border-left: 3px solid var(--gold); flex-direction: column; padding: 90px 36px 40px; gap: 24px; transition: right 0.4s ease; box-shadow: -4px 0 30px rgba(0,0,0,0.4); }
    .nav-links.open { right: 0; }
    .gallery-mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-large, .gallery-tall { grid-column: span 1; grid-row: span 1; }
    .hero-content { padding: 30px 20px; }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .menu-dia-cards { grid-template-columns: 1fr; }
    .schedule-row { gap: 12px; align-items: flex-start; }
    .nav-logo-img { width: 36px; height: 36px; }
}
