*: {margin:0;padding:0;box-sizing:border-box}
:root {
    --primary-brown: #5C4033;
    --accent: #D98C4A;
    --beige: #F5EDE1;
    --dark-text: #2C211B;
    --light: #FAF4EB;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    color: var(--dark-text);
    background: var(--light);
}
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: rgba(92, 64, 51, 0.97);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(44, 33, 27, 0.15);
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}
.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color .25s;
}
nav a:hover {
    color: var(--accent);
}
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
}
.hero {
    background: linear-gradient(128deg, #6b4e3d 0%, #c9a17f 100%);
    color: white;
    padding-top: 85px;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - 85px);
}
.hero-content h1 {
    font-size: 3.1rem;
    line-height: 1.15;
    margin-bottom: 20px;
}
.subtitle {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.92;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: center;
}
.primary {
    background: var(--accent);
    color: white;
}
.primary:hover {
    background: #e6a76a;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgb(217 140 74);
}
.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.85);
}
.secondary:hover {
    background: rgba(255,255,255,0.12);
}
.hero-image .placeholder {
    width: 310px;
    height: 310px;
    background: #e8d4b8;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    box-shadow: 25px 25px 45px rgba(44,33,27,0.25);
    margin-left: auto;
}
.menu-section, .contacts-section {
    padding: 90px 0;
    background: #fff;
}
.info-section {
    padding: 90px 0;
    background: var(--beige);
}
.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: var(--primary-brown);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 25px;
}
.menu-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(92, 64, 51, 0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.menu-card:hover {
    transform: scale(1.04);
}
.card-image {
    height: 210px;
    background: #e9d4b7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
}
.menu-card h3 {
    font-size: 1.45rem;
    padding: 18px 22px 0;
    color: var(--primary-brown);
}
.price {
    padding: 0 22px;
    color: var(--accent);
    font-size: 1.35rem;
    font-weight: 700;
}
.menu-card > p {
    padding: 8px 22px 22px;
    color: #444;
    font-size: 0.98rem;
}
.content-article {
    max-width: 820px;
    margin: 0 auto;
    background: white;
    padding: 55px 60px;
    border-radius: 24px;
    box-shadow: 0 15px 40px -10px rgba(92, 64, 51, 0.15);
}
.content-article h2 {
    color: #5C4033;
    margin-top: 42px;
    margin-bottom: 18px;
}
.content-article ul {
    padding-left: 5px;
}
.content-article li {
    margin: 14px 0;
    padding-left: 22px;
    position: relative;
}
.content-article li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.6rem;
    line-height: 1;
}
.cta-section {
    background: linear-gradient(130deg, #5c4033, #c9a17f);
    color: white;
    text-align: center;
    padding: 110px 20px;
}
.cta-section h2 {
    font-size: 2.7rem;
    margin-bottom: 20px;
}
.cta-section p {
    max-width: 580px;
    margin: 0 auto 35px;
    font-size: 1.25rem;
}
.large {
    font-size: 1.25rem;
    padding: 18px 48px;
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.contact-info h2 {
    margin-bottom: 25px;
    color: var(--primary-brown);
}
.contact-info p {
    margin-bottom: 18px;
    font-size: 1.1rem;
}
.placeholder-map {
    background: linear-gradient(#e9d4b7, #d9b98f);
    height: 380px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #3f2a20;
    box-shadow: 0 10px 30px rgba(92, 64, 51, 0.15);
}
footer {
    background: #2c211b;
    color: #d9c6a8;
    padding: 55px 0 35px;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.social a {
    margin: 0 14px;
    color: #d9c6a8;
    text-decoration: none;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 33, 27, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: white;
    width: 100%;
    max-width: 440px;
    border-radius: 22px;
    padding: 35px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgb(0 0 0);
}
.close {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #999;
}
.modal-content h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-brown);
}
.modal-content label {
    display: block;
    margin-top: 18px;
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
}
.modal-content input,
.modal-content select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #d4b89e;
    border-radius: 10px;
    font-size: 1rem;
}
@media (max-width: 820px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .hero-image .placeholder {
        margin: 0 auto;
    }
    nav ul {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #5C4033;
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,.2);
        display: none;
    }
    nav ul.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .content-article {
        padding: 35px 25px;
    }
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}