:root {
    --bg: #1a1512;
    --paper: #f9f5f0;
    --accent: #8b4513;
    --text: #333;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    background-color: var(--paper);
    color: var(--text);
    font-family: var(--font-serif);
    margin: 0;
}

.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../../../assets/rest.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 { font-size: 5rem; letter-spacing: 0.2em; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; letter-spacing: 0.1em; opacity: 0.8; }

.section { padding: 100px 10%; text-align: center; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.menu-item { border-bottom: 1px dotted #ccc; padding-bottom: 20px; text-align: left; }
.menu-item .price { float: right; font-weight: bold; }

.button {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--text);
    color: var(--text);
    text-decoration: none;
    transition: 0.3s;
    margin-top: 40px;
}

.button:hover { background: var(--text); color: white; }

.parallax {
    height: 400px;
    background: fixed url('../../../assets/rest.png') center;
    background-size: cover;
}

footer { padding: 60px 10%; background: var(--bg); color: #888; text-align: center; }
