body {
    margin: 0;
    font-family: sans-serif;
    background: #f5f2ed;
    color: #333;
}

.site-header {
    background: white;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header-inner {
    max-width: 1100px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    color: #2c241c;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

.site-nav {
    display: flex;
    gap: 18px;
}

.site-nav a {
    color: #5a3a20;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

.site-nav a:hover {
    text-decoration: underline;
}

.hero {
    background: #2c241c;
    color: white;
    padding: 70px 20px;
}

.hero-inner {
    max-width: 1000px;
    margin: auto;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    line-height: 1.8;
    font-weight: bold;
}

.about {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.about-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.about-text h2 {
    margin-top: 0;
}

.about-text p {
    line-height: 1.8;
}

.section-title {
    max-width: 1100px;
    margin: 50px auto 10px;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #2c241c;
}

.section-title p {
    line-height: 1.8;
    color: #555;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.25s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 18px;
}

.card h2 {
    margin: 0 0 12px;
}

.card p {
    margin: 0;
    line-height: 1.7;
}

.page {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

.main-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 24px;
}

.card-block {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.jmty-link {
    margin-top: 14px;
    font-size: 14px;
    font-weight: bold;
    color: #7a4b20;
}

.line-button {
    display: inline-block;
    background: #06c755;
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.2s;
}

.line-button:hover {
    opacity: 0.9;
}

.line-qr-area {
    margin-top: 28px;
}

.qr-image {
    width: 180px;
    max-width: 100%;
    margin-top: 12px;
    border-radius: 16px;
    background: white;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.price-table th,
.price-table td {
    border-bottom: 1px solid #ddd;
    padding: 14px;
    text-align: left;
}

.price-table th {
    background: #f7f2eb;
}

@media (max-width: 700px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .about-image {
        height: 240px;
    }

    .card img {
        height: 220px;
    }

    .qr-image {
        width: 160px;
    }
}

.notice-bar {
    background: #f7f2eb;
    color: #5a3a20;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #e5ddd2;
}