/* ═══════════════════════════════════════════════════════════
   PASTA LA VIE — Main Stylesheet
   Palette:
     --red:    #C41E3A  (primary brand red)
     --cream:  #FAF6F0  (warm background)
     --gold:   #C9A033  (accent)
     --dark:   #1E1008  (espresso / headings)
     --text:   #2D2D2D  (body copy)
     --white:  #FFFFFF
═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --red:       #C41E3A;
    --red-dark:  #9B1530;
    --red-light: #E8394F;
    --cream:     #FAF6F0;
    --gold:      #C9A033;
    --gold-dark: #A07E22;
    --dark:      #1E1008;
    --text:      #2D2D2D;
    --text-light:#6B6B6B;
    --white:     #FFFFFF;
    --border:    #E8DDD0;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Lato', system-ui, sans-serif;

    --radius:    6px;
    --radius-lg: 12px;
    --shadow:    0 4px 24px rgba(30,16,8,0.10);
    --shadow-lg: 0 12px 48px rgba(30,16,8,0.16);
    --transition: 0.25s ease;

    --container: 1180px;
    --section-gap: 100px;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--transition); }
ul  { list-style: none; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
    font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── Container ─────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Section Shared Styles ─────────────────────────────── */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 540px;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* Gold ornament divider */
.ornament {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    margin: 1rem 0 1.5rem;
    border-radius: 2px;
}
.section-header.centered .ornament { margin-left: auto; margin-right: auto; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,30,58,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.75);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}
.btn-secondary {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}
.btn-secondary:hover {
    background: var(--red);
    color: var(--white);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
    padding: 10px 24px;
    font-size: 0.8rem;
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
}
.btn.full-width { width: 100%; }

/* ─── HEADER ────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(30, 16, 8, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201,160,51,0.2);
    transition: all var(--transition);
}
.site-header.scrolled {
    background: rgba(30, 16, 8, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 74px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.site-logo { flex-shrink: 0; }
.text-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white);
    letter-spacing: 0.02em;
}
.logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}
.site-header .custom-logo { max-height: 50px; width: auto; }

/* Nav */
.primary-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; gap: 0.25rem; align-items: center; }
.nav-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--gold);
}

/* Header CTA */
.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: 9px 22px; font-size: 0.78rem; }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(rgba(30,16,8,0.55), rgba(30,16,8,0.55)),
        url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1600&q=80') center/cover no-repeat;
    padding: 120px 24px 80px;
    position: relative;
}
.hero-content { max-width: 720px; margin: 0 auto; }
.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-title {
    color: var(--white);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-style: italic;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}
.hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
    0%   { opacity: 1; transform: scaleY(1); }
    50%  { opacity: 0.4; }
    100% { opacity: 1; transform: scaleY(1); }
}

/* ─── FEATURES STRIP ────────────────────────────────────── */
.features-strip {
    background: var(--dark);
    padding: 60px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.feature-item {
    padding: 2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.feature-item h3 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.feature-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* ─── ABOUT SECTION ─────────────────────────────────────── */
/* ─── ABOUT / OUR STORY — split-screen layout ───────────── */
.about-section {
    background: var(--cream);
    overflow: hidden;
}
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

/* Left: image fills its half edge-to-edge */
.about-split-image {
    position: relative;
    overflow: hidden;
}
.about-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 6s ease;
}
.about-split-image:hover img { transform: scale(1.04); }

/* Est. badge overlaid on bottom-right of image */
.about-badge {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 88px;
    height: 88px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: 3px solid rgba(255,255,255,0.6);
}
.badge-year   { font-size: 0.6rem;  color: rgba(255,255,255,0.8); letter-spacing: 0.1em; text-transform: uppercase; }
.badge-number { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); font-weight: 700; line-height: 1; }

/* Right: text content, vertically centred */
.about-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
    background: var(--cream);
}
.about-lead { font-size: 1.1rem; color: var(--dark); font-weight: 400; line-height: 1.8; margin-bottom: 1rem; }

/* ─── MENU PREVIEW ──────────────────────────────────────── */
.menu-preview-section {
    padding: var(--section-gap) 0;
    background: var(--white);
}
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}
.menu-tab {
    padding: 10px 28px;
    border: 2px solid var(--border);
    border-radius: 40px;
    background: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
}
.menu-tab:hover  { border-color: var(--red); color: var(--red); }
.menu-tab.active { border-color: var(--red); background: var(--red); color: var(--white); }

.menu-panels { min-height: 280px; }
.menu-panel  { display: none; }
.menu-panel.active { display: block; }

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.menu-item-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}
.menu-item-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.menu-item-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffdf7, var(--cream));
}
.item-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}
.item-details { flex: 1; }
.item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}
.item-details p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}
.item-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--red);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}
.menu-cta { text-align: center; margin-top: 3rem; }

/* ─── QUOTE BANNER ──────────────────────────────────────── */
.quote-banner {
    background: var(--red);
    padding: 80px 0;
    text-align: center;
}
.quote-banner blockquote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 1rem;
}
.quote-banner blockquote cite {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
    font-style: normal;
}

/* ─── RESERVATIONS ──────────────────────────────────────── */
.reservations-section {
    padding: var(--section-gap) 0;
    background: var(--cream);
}
.reservations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.info-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.info-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.info-icon { font-size: 1.25rem; margin-top: 2px; flex-shrink: 0; }
.info-list li div { display: flex; flex-direction: column; gap: 2px; }
.info-list li strong { font-weight: 700; color: var(--dark); font-size: 0.9rem; }
.info-list li span  { font-size: 0.9rem; color: var(--text-light); }
.info-list li span a:hover { color: var(--red); }

/* Reservation Form */
.reservation-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group.full-width { grid-column: 1/-1; }
.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    background: var(--white);
}
.form-group textarea { resize: vertical; }
.reservation-form .btn { margin-top: 0.5rem; }
.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 0.75rem !important;
}

/* ─── CONTACT SECTION ───────────────────────────────────── */
.contact-section {
    padding: var(--section-gap) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
.contact-address {
    font-size: 0.95rem;
    margin-top: 1.5rem;
    line-height: 1.8;
}
.social-links { margin-top: 1.5rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.social-link {
    padding: 8px 20px;
    border: 1.5px solid var(--border);
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.social-link:hover { border-color: var(--red); color: var(--red); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--cream);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
    padding: 2rem;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer { background: var(--dark); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
}
.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 1rem;
}
.footer-brand .logo-main  { color: var(--white); }
.footer-brand .logo-tagline { color: var(--gold); }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 0; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.footer-links li a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}
.footer-contact li a:hover { color: var(--gold); }

.footer-hours { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-hours li:last-child { border-bottom: none; }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
    min-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(rgba(30,16,8,0.65), rgba(30,16,8,0.65)),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
    padding: 120px 24px 60px;
}
.page-hero-content h1 { color: var(--white); font-style: italic; margin: 0.5rem 0; }
.page-hero-content p  { color: rgba(255,255,255,0.7); font-size: 1rem; margin: 0; }

/* ─── FULL MENU PAGE ────────────────────────────────────── */
.menu-page { padding: 80px 0; }
.menu-category-section { margin-bottom: 70px; }
.menu-category-header  { text-align: center; margin-bottom: 2.5rem; }
.menu-category-header h2 { font-style: italic; color: var(--dark); }
.category-desc { color: var(--text-light); font-size: 0.95rem; margin: 0.5rem 0 0; }
.menu-category-header .ornament { margin: 1rem auto; }

.full-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.full-menu-grid.three-col { grid-template-columns: repeat(3, 1fr); }

.full-menu-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius);
    transition: background var(--transition);
    position: relative;
}
.full-menu-item:hover { background: var(--white); }
.full-menu-item.chef-special {
    border: 1px solid var(--gold);
    background: linear-gradient(135deg, #fffdf5, var(--cream));
    border-radius: var(--radius);
}
.full-menu-item.compact { padding: 1rem 1.25rem; }

.item-name-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.item-name-row h4 { font-size: 1rem; color: var(--dark); }
.veg-badge {
    font-size: 0.6rem;
    font-weight: 700;
    color: #2d6a2d;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 50%;
    width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.chef-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: #fff8e1;
    border: 1px solid var(--gold);
    padding: 2px 8px;
    border-radius: 20px;
}
.full-menu-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}
.full-menu-item .item-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--red);
    font-weight: 700;
    margin-top: 0.25rem;
}

.allergen-notice {
    margin-top: 3rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}
.allergen-notice strong { color: var(--dark); }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-split       { grid-template-columns: 1fr; }
    .about-split-image { min-height: 380px; }
    .about-split-content { padding: 60px 48px; }
    .reservations-grid{ grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid     { grid-template-columns: 1fr; }
    .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .features-grid    { grid-template-columns: repeat(2, 1fr); }
    .feature-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .full-menu-grid.three-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-gap: 64px; }

    .header-cta  { display: none; }
    .primary-nav { display: none; }
    .mobile-toggle { display: flex; }
    .primary-nav.open {
        display: flex;
        position: fixed;
        top: 74px; left: 0; right: 0;
        background: var(--dark);
        padding: 1.5rem;
        flex-direction: column;
        align-items: stretch;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .primary-nav.open .nav-menu { flex-direction: column; gap: 0.25rem; }
    .primary-nav.open .nav-menu li a { padding: 12px 16px; font-size: 0.875rem; }

    .hero-actions { flex-direction: column; align-items: center; }
    .menu-items-grid { grid-template-columns: 1fr; }
    .form-row   { grid-template-columns: 1fr; }
    .footer-grid{ grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .full-menu-grid { grid-template-columns: 1fr; }
    .full-menu-grid.three-col { grid-template-columns: 1fr; }
    .about-badge { right: 16px; bottom: 16px; }
    .about-split-content { padding: 48px 24px; }
    .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .menu-tabs { gap: 0.35rem; }
    .menu-tab  { padding: 8px 18px; font-size: 0.75rem; }
    .reservation-form-wrap { padding: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   NEW SECTIONS — Added with real media & content
═══════════════════════════════════════════════════════════ */

/* ─── Logo Image (header & footer) ─────────────────────── */
.header-logo-img {
    height: 48px;
    width: auto;
    display: block;
    /* The logo has a white bg — we clip it tightly */
    border-radius: 6px;
    background: var(--white);
    padding: 4px 8px;
}
.footer-logo-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
    object-position: left center;
    border-radius: 6px;
    background: var(--white);
    padding: 4px 8px;
    margin-bottom: 1rem;
}
.image-logo { display: flex; align-items: center; }

/* ─── Hero (reworked with real image) ──────────────────── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #140602;
    transform: scale(1.0);
    transition: transform 8s ease-out;
}
.hero-section:hover .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(20, 6, 2, 0.60) 0%,
        rgba(20, 6, 2, 0.45) 50%,
        rgba(20, 6, 2, 0.70) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* ─── FOOD GALLERY ──────────────────────────────────────── */
.gallery-section {
    padding: var(--section-gap) 0;
    background: var(--dark);
}
.gallery-section .section-label { color: var(--gold); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .ornament { background: linear-gradient(90deg, var(--red), var(--gold)); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 12px;
    margin-top: 2.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: #111;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.08); }

/* Tall item spans 2 rows */
.gallery-item--tall {
    grid-row: span 2;
}
/* Wide item spans 2 cols */
.gallery-item--wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(196,30,58,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.03em;
}

/* ─── GOOGLE REVIEWS ────────────────────────────────────── */
.reviews-section {
    padding: var(--section-gap) 0;
    background: var(--cream);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.review-stars {
    color: #F5A623;
    font-size: 1rem;
    letter-spacing: 2px;
}
.review-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin: 0;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.review-author div { display: flex; flex-direction: column; gap: 2px; }
.review-author strong { font-size: 0.875rem; color: var(--dark); }
.review-author span  { font-size: 0.75rem; color: var(--text-light); }
.reviews-plugin-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--white);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    display: inline-block;
    width: 100%;
}
.reviews-plugin-note strong { color: var(--dark); }

/* ─── INSTAGRAM SECTION ─────────────────────────────────── */
.instagram-section {
    padding: var(--section-gap) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 2.5rem;
}
.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--border);
    cursor: pointer;
}
.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.instagram-item:hover img { transform: scale(1.1); }
.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(196,30,58,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.5rem;
}
.instagram-item:hover .instagram-overlay { opacity: 1; }

/* CTA tile */
.instagram-item--cta {
    background: var(--dark);
    cursor: pointer;
}
.instagram-item--cta a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.instagram-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    padding: 1rem;
}
.ig-icon { font-size: 1.5rem; }
.instagram-cta-inner strong {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.instagram-cta-inner span {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}
.instagram-plugin-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--cream);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
}
.instagram-plugin-note strong { color: var(--dark); }

/* ─── RESPONSIVE — new sections ────────────────────────── */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 220px;
    }
    .gallery-item--wide { grid-column: span 2; }
    .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item { height: 240px; }
    .gallery-item--tall,
    .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .header-logo-img { height: 38px; }
}

@media (max-width: 480px) {
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   FULL MENU PAGE — Tab navigation & layout
═══════════════════════════════════════════════════════════ */

/* ─── Sticky tab nav ────────────────────────────────────── */
.menu-tab-nav {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 74px;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(30,16,8,0.07);
}
.menu-tab-nav .menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    list-style: none;
}
.menu-tab-nav .menu-tabs::-webkit-scrollbar { display: none; }

/* Vertical dividers between tabs */
.menu-tab-nav .menu-tabs li {
    display: flex;
    align-items: stretch;
}
.menu-tab-nav .menu-tabs li + li::before {
    content: '';
    display: block;
    width: 1px;
    background: var(--border);
    margin: 12px 0;
    align-self: stretch;
}

.menu-tab-btn {
    display: block;
    padding: 20px 28px;
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.01em;
    color: var(--text-light);
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    white-space: nowrap;
    position: relative;
}
.menu-tab-btn:hover {
    color: var(--red);
    background: rgba(196,30,58,0.04);
}
.menu-tab-btn.active {
    color: var(--red);
    border-bottom-color: var(--red);
    font-weight: 700;
    background: rgba(196,30,58,0.05);
}
/* Small gold diamond ornament on active tab */
.menu-tab-btn.active::after {
    content: '\25C6';
    display: block;
    font-size: 0.35rem;
    color: var(--gold);
    text-align: center;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0;
}

/* ─── Sections: all visible, separated by a rule ─────────────────── */
.menu-category-section {
    display: block;
    margin-bottom: 0;
    padding: 70px 0 60px;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 148px;  /* header + tab nav height */
}
.menu-category-section:last-of-type {
    border-bottom: none;
}

/* ─── Responsive adjustments ─────────────────────────────────────── */
@media (max-width: 768px) {
    .menu-tab-nav  { top: 64px; }
    .menu-tab-btn  { padding: 16px 18px; font-size: 0.82rem; }
    .menu-page     { padding: 50px 0; }
}
@media (max-width: 480px) {
    .menu-tab-btn  { padding: 14px 14px; font-size: 0.78rem; }
}
