/* ============================================
   Casa Sergio - Ristorante Pizzeria Montijo
   ============================================ */

:root {
    --red: #8B1A1A;
    --red-light: #A52929;
    --green: #2D6A4F;
    --gold: #C8963E;
    --gold-light: #DFB55A;
    --cream: #FBF5E6;
    --cream-dark: #EDE0C4;
    --brown: #2C1810;
    --brown-light: #5C3D2E;
    --white: #FFFFFF;
    --gray: #777777;
    --shadow: rgba(0,0,0,0.12);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
    --max-width: 1200px;
    --nav-height: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--brown);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--brown); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
    text-align: center;
    margin-bottom: 0.8rem;
}
.section-title { text-align: center; margin-bottom: 1rem; }
.ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin: 1.5rem auto 2.5rem;
    color: var(--gold); font-size: 1.2rem;
}
.ornament::before, .ornament::after {
    content: ''; flex: 1; max-width: 80px;
    height: 1px; background: var(--gold);
}

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--brown); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }

/* ── Navigation ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-height); transition: all 0.35s ease;
    background: transparent;
}
.nav.scrolled, .nav.solid {
    background: rgba(44, 24, 16, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
}
.nav-logo {
    font-family: var(--font-heading); font-size: 1.55rem;
    color: var(--white); letter-spacing: 1px; font-weight: 700;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    color: var(--white); font-size: 0.85rem; letter-spacing: 1.5px;
    text-transform: uppercase; font-weight: 700; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 5px;
}
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--white); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Buttons ── */
.btn {
    display: inline-block; padding: 14px 35px; font-size: 0.85rem;
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    border-radius: 2px; cursor: pointer; border: 2px solid; transition: all 0.3s ease;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-light); border-color: var(--red-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,26,26,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--brown); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,150,62,0.4); }
.btn-gold { background: var(--gold); color: var(--brown); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }

/* ── Hero ── */
.hero {
    height: 100vh; min-height: 600px; position: relative;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background: linear-gradient(135deg, #1a0a05 0%, #3d1a0f 35%, #2c1810 65%, #1a0a05 100%);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(200,150,62,0.12) 0%, transparent 65%);
}
.hero-bg-photo {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    background-image: url('../images/hero-bg.jpg');
}
.hero-overlay { position: absolute; inset: 0; background: rgba(26, 10, 5, 0.7); }
.hero-content { position: relative; z-index: 1; color: var(--white); padding: 0 2rem; max-width: 900px; }
.hero-tagline {
    font-family: var(--font-heading); font-style: italic; font-size: 1rem;
    color: var(--gold-light); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero-title {
    font-family: var(--font-heading); font-size: clamp(3.5rem, 9vw, 7.5rem);
    color: var(--white); letter-spacing: 3px; margin-bottom: 0.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
    font-family: var(--font-heading); font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.75); letter-spacing: 6px; text-transform: uppercase; margin-bottom: 1rem;
}
.hero-location { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; letter-spacing: 1px; }
.hero-location i { color: var(--gold); margin-right: 5px; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.4); font-size: 1.4rem; cursor: pointer;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ── Page Hero (sub-pages) ── */
.page-hero {
    background: linear-gradient(135deg, #1a0a05 0%, #3d1a0f 35%, #2c1810 65%, #1a0a05 100%);
    padding: 130px 2rem 60px; text-align: center; color: var(--white); position: relative;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(200,150,62,0.1) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: var(--gold-light); font-family: var(--font-heading); font-style: italic; font-size: 1.2rem; }

/* ── About (Homepage) ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text .label { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1rem; display: block; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--brown-light); margin-bottom: 1.3rem; line-height: 1.85; }
.about-image { position: relative; }
.about-image-placeholder {
    width: 100%; height: 440px; background: var(--cream-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem; border-radius: 4px; overflow: hidden;
}
.about-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
    position: absolute; bottom: -22px; left: -22px;
    background: var(--red); color: var(--white);
    width: 115px; height: 115px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; font-family: var(--font-heading);
    box-shadow: 0 6px 25px rgba(139,26,26,0.4);
}
.about-badge .year { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.about-badge .since { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; opacity: 0.85; }

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.feature-card {
    text-align: center; padding: 2.5rem 2rem; background: var(--white);
    border-radius: 4px; box-shadow: 0 4px 25px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.14); }
.feature-icon { font-size: 2.8rem; margin-bottom: 1.2rem; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.8rem; color: var(--brown); }
.feature-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ── Highlights (Menu Cards) ── */
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.highlight-card {
    background: var(--white); border-radius: 4px; overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow); transition: transform 0.3s, box-shadow 0.3s;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.16); }
.highlight-img {
    height: 200px; background: var(--cream-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 4.5rem; position: relative; overflow: hidden;
}
.highlight-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.highlight-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--red); color: var(--white); font-size: 0.72rem;
    font-weight: 700; padding: 4px 10px; border-radius: 2px;
    letter-spacing: 1px; text-transform: uppercase;
}
.highlight-body { padding: 1.5rem; }
.highlight-category { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.4rem; }
.highlight-body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.highlight-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
.highlight-price { font-size: 1.25rem; font-weight: 700; color: var(--red); font-family: var(--font-heading); }

/* ── CTA Banner ── */
.cta-banner { background: var(--red); color: var(--white); text-align: center; padding: 65px 2rem; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ── Location ── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1.8rem; align-items: flex-start; }
.info-icon {
    width: 46px; height: 46px; background: var(--red); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.info-text h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 3px; font-family: var(--font-body); }
.info-text p, .info-text a { color: var(--brown-light); line-height: 1.6; font-size: 0.95rem; }
.info-text a:hover { color: var(--red); }
.location-map iframe { width: 100%; height: 420px; border-radius: 4px; border: none; display: block; }

/* ── Social Section ── */
.social-section { background: var(--cream); text-align: center; padding: 60px 2rem; }
.social-links { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.social-link {
    display: flex; align-items: center; gap: 0.6rem; padding: 12px 26px;
    border-radius: 30px; font-weight: 700; font-size: 0.9rem; transition: all 0.3s; border: 2px solid;
}
.social-link.instagram { border-color: #E1306C; color: #E1306C; }
.social-link.instagram:hover { background: #E1306C; color: white; }
.social-link.tripadvisor { border-color: #00AA6C; color: #00AA6C; }
.social-link.tripadvisor:hover { background: #00AA6C; color: white; }

/* ── Footer ── */
.footer { background: var(--brown); color: rgba(255,255,255,0.75); padding: 55px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { font-family: var(--font-heading); font-size: 1.9rem; color: var(--white); margin-bottom: 1rem; display: block; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
    width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--white);
    font-size: 1rem; transition: background 0.3s, color 0.3s;
}
.footer-social a:hover { background: var(--gold); color: var(--brown); }
.footer-col h4 { color: var(--gold); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.8rem; font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold); }

/* ══════════════════════════════════════
   MENU PAGE
══════════════════════════════════════ */

.menu-tabs-wrapper { background: var(--cream); border-bottom: 2px solid var(--cream-dark); position: sticky; top: var(--nav-height); z-index: 100; }
.menu-tabs {
    display: flex; gap: 0.3rem; overflow-x: auto; padding: 1rem 2rem;
    scrollbar-width: none; -ms-overflow-style: none; max-width: var(--max-width); margin: 0 auto;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
    padding: 9px 18px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; border: 2px solid var(--cream-dark);
    background: var(--white); color: var(--brown-light); border-radius: 2px;
    cursor: pointer; white-space: nowrap; transition: all 0.25s; flex-shrink: 0;
}
.tab-btn:hover { border-color: var(--red); color: var(--red); }
.tab-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

.menu-category { display: none; animation: fadeIn 0.3s ease; }
.menu-category.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.menu-cat-header { text-align: center; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--cream-dark); }
.menu-cat-header h2 { margin-bottom: 0.4rem; }
.menu-cat-header .cat-subtitle { font-style: italic; color: var(--gold); font-family: var(--font-heading); font-size: 1.1rem; }
.menu-cat-header .cat-desc { font-style: italic; color: var(--brown-light); font-size: 0.9rem; max-width: 650px; margin: 1.2rem auto 0; line-height: 1.7; }

.menu-items { display: flex; flex-direction: column; }
.menu-item {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 2rem; padding: 1.4rem 0; border-bottom: 1px dashed var(--cream-dark);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-left { flex: 1; min-width: 0; }
.item-name {
    font-family: var(--font-heading); font-size: 1.1rem; color: var(--brown);
    font-weight: 700; margin-bottom: 0.3rem;
}
.item-num { font-size: 0.78rem; color: var(--gold); margin-right: 4px; font-family: var(--font-body); font-weight: 700; }
.item-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.item-note { font-size: 0.8rem; color: var(--red); font-style: italic; margin-top: 3px; font-weight: 600; }
.item-price { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--red); white-space: nowrap; text-align: right; min-width: 80px; }
.item-price-multi { font-size: 0.88rem; line-height: 2; color: var(--red); font-weight: 700; white-space: nowrap; text-align: right; min-width: 120px; }
.item-joke .item-price { color: var(--gold); font-size: 0.95rem; }

.menu-section-divider { margin: 2.5rem 0 1.5rem; }
.menu-section-divider h3 { font-size: 1.2rem; color: var(--brown); padding-bottom: 0.7rem; border-bottom: 2px solid var(--gold); display: inline-block; }
.menu-section-divider.center { text-align: center; }
.menu-section-divider.center h3 { display: block; border-bottom-color: var(--gold); }

.menu-note-box {
    background: var(--cream); border-left: 4px solid var(--gold);
    padding: 1rem 1.5rem; margin-bottom: 2rem; font-style: italic;
    color: var(--brown-light); font-size: 0.92rem; border-radius: 0 4px 4px 0;
}
.badge-day { display: inline-block; background: var(--green); color: white; font-size: 0.7rem; padding: 2px 9px; border-radius: 2px; text-transform: uppercase; letter-spacing: 1px; margin-left: 8px; vertical-align: middle; font-family: var(--font-body); font-style: normal; font-weight: 700; }
.badge-pre { display: inline-block; background: var(--gold); color: var(--brown); font-size: 0.7rem; padding: 2px 9px; border-radius: 2px; text-transform: uppercase; letter-spacing: 1px; margin-left: 8px; vertical-align: middle; font-family: var(--font-body); font-style: normal; font-weight: 700; }

/* Drinks layout */
.drinks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 4rem; }
.drinks-section { margin-bottom: 1rem; }
.drinks-section h3 { font-size: 1.15rem; color: var(--brown); margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.drink-item { display: flex; justify-content: space-between; align-items: baseline; padding: 0.45rem 0; border-bottom: 1px dotted var(--cream-dark); gap: 1rem; font-size: 0.88rem; }
.drink-name { color: var(--brown-light); font-weight: 600; flex: 1; }
.drink-info { font-size: 0.8rem; color: var(--gray); font-style: italic; }
.drink-price { color: var(--red); font-weight: 700; white-space: nowrap; font-family: var(--font-heading); font-size: 0.95rem; }

/* Wines layout */
.wine-item { padding: 1.5rem 0; border-bottom: 1px solid var(--cream-dark); }
.wine-item:last-child { border-bottom: none; }
.wine-name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--brown); font-weight: 700; margin-bottom: 0.3rem; }
.wine-price { color: var(--red); font-weight: 700; font-family: var(--font-heading); font-size: 1.1rem; float: right; margin-left: 1rem; }
.wine-vol { font-size: 0.8rem; color: var(--gold); font-weight: 700; margin-bottom: 0.4rem; }
.wine-desc { font-size: 0.88rem; color: var(--gray); margin-bottom: 0.5rem; line-height: 1.6; }
.wine-pairing { font-size: 0.83rem; color: var(--brown-light); font-style: italic; }
.wine-pairing strong { color: var(--brown); font-style: normal; }

.wine-by-glass { background: var(--cream); padding: 2rem; border-radius: 4px; margin-top: 2rem; }
.wine-by-glass h3 { margin-bottom: 1.2rem; }
.wine-glass-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 2rem; }
.wine-glass-item { display: flex; justify-content: space-between; align-items: baseline; padding: 0.4rem 0; border-bottom: 1px dotted var(--cream-dark); font-size: 0.88rem; gap: 1rem; }

/* Cocktails */
.cocktail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 4rem; }
.cocktail-section h3 { font-size: 1.15rem; color: var(--brown); margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.cocktail-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 0.7rem 0; border-bottom: 1px dotted var(--cream-dark); gap: 1rem; }
.cocktail-name { font-weight: 700; color: var(--brown); font-size: 0.9rem; }
.cocktail-desc { font-size: 0.8rem; color: var(--gray); margin-top: 2px; line-height: 1.4; }
.cocktail-price { color: var(--red); font-weight: 700; white-space: nowrap; font-family: var(--font-heading); }

/* Liquors */
.licores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 4rem; }
.licor-section h3 { font-size: 1.1rem; color: var(--brown); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.licor-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 0.6rem 0; border-bottom: 1px dotted var(--cream-dark); gap: 1rem; }
.licor-left { flex: 1; }
.licor-name { font-weight: 700; color: var(--brown-light); font-size: 0.88rem; }
.licor-desc { font-size: 0.78rem; color: var(--gray); margin-top: 2px; line-height: 1.4; font-style: italic; }
.licor-price { color: var(--red); font-weight: 700; white-space: nowrap; font-family: var(--font-heading); font-size: 0.9rem; }

.menu-allergen {
    text-align: center; margin-top: 3rem; padding: 1rem 1.5rem;
    background: var(--cream); border-radius: 4px; font-size: 0.82rem;
    color: var(--gray); font-style: italic; border: 1px solid var(--cream-dark);
}

/* ══════════════════════════════════════
   SOBRE PAGE
══════════════════════════════════════ */

.chef-story { max-width: 780px; margin: 0 auto; }
.chef-story p { font-size: 1.02rem; line-height: 1.9; color: var(--brown-light); margin-bottom: 1.5rem; }
.chef-signature { font-family: var(--font-heading); font-style: italic; font-size: 1.6rem; color: var(--red); text-align: right; margin-top: 2rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.value-card { background: var(--white); padding: 2rem 1.5rem; border-radius: 4px; text-align: center; border-top: 4px solid var(--red); box-shadow: 0 4px 20px var(--shadow); }
.value-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.7rem; }
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.timeline { max-width: 600px; margin: 0 auto; }
.timeline-item { display: flex; gap: 2rem; margin-bottom: 2.5rem; align-items: flex-start; }
.timeline-year { font-family: var(--font-heading); font-size: 1.5rem; color: var(--red); font-weight: 700; min-width: 70px; }
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.9rem; color: var(--brown-light); line-height: 1.7; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-form { background: var(--cream); padding: 2.5rem; border-radius: 4px; }
.contact-form h3 { margin-bottom: 2rem; font-size: 1.4rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brown); margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 12px 15px; border: 2px solid var(--cream-dark);
    border-radius: 2px; font-family: var(--font-body); font-size: 0.92rem;
    color: var(--brown); background: var(--white); transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
.form-group textarea { height: 120px; resize: vertical; }
.form-success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; padding: 1rem 1.5rem; border-radius: 4px; margin-bottom: 1.5rem; }
.form-error { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; padding: 1rem 1.5rem; border-radius: 4px; margin-bottom: 1.5rem; }
.hours-card { background: var(--cream); padding: 2rem; border-radius: 4px; margin-top: 2rem; }
.hours-card h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px dashed var(--cream-dark); }
.hours-table td { padding: 0.7rem 0; font-size: 0.92rem; }
.hours-table td:first-child { font-weight: 700; color: var(--brown); width: 45%; }
.hours-table td:last-child { color: var(--brown-light); text-align: right; }
.hours-table tr.closed td { color: var(--gray); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .about-grid { gap: 2.5rem; }
}

@media (max-width: 768px) {
    :root { --nav-height: 62px; }
    .section { padding: 50px 0; }

    .nav-links {
        display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
        background: rgba(44,24,16,0.98); flex-direction: column;
        padding: 2rem; gap: 1.8rem; text-align: center;
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .about-image-placeholder { height: 280px; }
    .about-badge { left: 10px; bottom: -15px; width: 100px; height: 100px; }
    .about-badge .year { font-size: 1.5rem; }

    .location-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .drinks-grid { grid-template-columns: 1fr; }
    .wine-glass-items { grid-template-columns: 1fr; }
    .cocktail-grid { grid-template-columns: 1fr; }
    .licores-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .hero-btns { flex-direction: column; align-items: center; }
    .highlights-grid { grid-template-columns: 1fr; }

    .menu-item { flex-direction: column; gap: 0.4rem; }
    .item-price, .item-price-multi { text-align: left; min-width: unset; }

    .wine-item { overflow: hidden; }
    .wine-price { float: none; display: block; margin-bottom: 0.5rem; margin-left: 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .tab-btn { padding: 8px 14px; font-size: 0.72rem; }
    .menu-tabs { padding: 0.8rem 1.2rem; }
}
