:root {
    --warm-linen: #f7f4ed;
    --primary-red: #921d22;
    --primary-dark: #7a181c;
    --terracotta: #c87a53;
    --deep-charcoal: #242424;
    --white-soft: #fafaf8;
    --shadow-soft: 0 4px 24px rgba(36, 36, 36, 0.06);
    --shadow-medium: 0 8px 40px rgba(36, 36, 36, 0.10);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius-md: 12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--warm-linen);
    color: var(--deep-charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: 0.3s;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 34px; width: auto; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--deep-charcoal); text-decoration: none;
    position: relative; padding: 0.3rem 0;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--terracotta);
    transition: width 0.3s; border-radius: 1px;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--terracotta);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--deep-charcoal); border-radius: 2px; transition: 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}
.hero-content { max-width: 500px; z-index: 2; }
.hero-title {
    font-size: 3.8rem; font-weight: 700; color: var(--primary-red);
    line-height: 1.15; letter-spacing: 0.03em; margin-bottom: 1.5rem;
}
.hero-title em {
    font-style: italic; color: var(--terracotta);
    font-size: 2.8rem; font-weight: 400;
}
.hero-desc {
    font-style: italic; color: #4a4a4a; font-size: 1.1rem;
    margin-bottom: 2.5rem; line-height: 1.8;
    border-left: 3px solid var(--terracotta); padding-left: 1.5rem;
}
.hero-visual {
    flex: 1;
    max-width: 600px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}
.hero-visual img {
    width: 100%; height: auto; display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600; font-size: 0.9rem;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn-primary {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 6px 22px rgba(146,29,34,0.25);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(146,29,34,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}
.btn-outline:hover {
    background: var(--primary-red);
    color: #fff;
    transform: translateY(-3px);
}

/* ===== SECTIONS ===== */
.section-alt { background: var(--white-soft); }
.section-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

/* ===== PHILOSOPHY ===== */
.philosophy-text {
    font-style: italic;
    font-size: 1.3rem;
    color: #3a3a3a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ===== MENU GRID ===== */
.menu-section .section-inner {
    padding-bottom: 2rem;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.menu-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}
.menu-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    cursor: zoom-in;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img {
    transform: scale(1.06);
}
.menu-card-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.card-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--terracotta);
    font-weight: 600;
}
.menu-card-body h3 {
    font-size: 1.2rem; color: var(--primary-red);
    font-weight: 700;
}
.menu-card-body p {
    font-style: italic; color: #5a5a5a;
    font-size: 0.9rem; line-height: 1.6;
}
.flavor-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.04em;
    padding: 0.2rem 0.7rem;
    background: #f2ede4; color: #7a6e5e;
    border-radius: 12px; align-self: flex-start;
}
.menu-download {
    margin-top: 3rem;
    text-align: center;
}

/* ===== RESERVATION ===== */
.reservation .section-inner {
    padding: 4rem 2rem;
}
.reservation p {
    font-style: italic; color: #5a5a5a;
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-red);
    color: #f0e0e0;
    padding: 4rem 2rem 2rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.footer-logo {
    height: 40px;          
    width: auto;           
    max-width: 100%;      
    object-fit: contain;
    display: block;
    margin-bottom: 0.8rem;
    filter: brightness(0) invert(1);
}
.footer h4 {
    font-family: 'Georgia', serif;
    color: #fff;
    margin-bottom: 0.5rem;
}
.footer p, .footer a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #f0e0e0;
}
.footer a:hover { color: #fff; }
.map-container {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 0.5rem;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 0.8rem;
    color: #e0c0c0;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { position: relative; max-width: 90vw; max-height: 90vh; }
.modal-content img {
    width: 100%; height: auto;
    max-height: 85vh; object-fit: contain;
    border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal-close {
    position: absolute; top: -1.5rem; right: -1.5rem;
    width: 40px; height: 40px;
    background: var(--terracotta); border: none;
    border-radius: 50%; color: #fff;
    font-size: 1.5rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.modal-close:hover { background: #b56945; transform: scale(1.1); }

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero {
        flex-direction: column;
        padding: 6rem 1.5rem 3rem;
    }
    .hero-content { order: 2; text-align: center; }
    .hero-visual { order: 1; width: 100%; }
    .hero-title { font-size: 2.4rem; }
    .hero-title em { font-size: 1.8rem; }
    .hero-desc { border-left: none; border-top: 3px solid var(--terracotta); padding-left: 0; padding-top: 1rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .section-inner { padding: 3rem 1.5rem; }
}