:root {
    --coffee: #6B4E31;
    --beige: #F5EDE4;
    --cream: #EDE0D4;
    --accent: #C19A6B;
    --text: #3C2F2F;
}

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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--cream);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.nav {
    background-color: rgba(237, 224, 212, 0.95);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid #d4c3b0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--coffee);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent);
}

/* HERO */
.hero {
    height: 100vh;
    min-height: 650px;
    background: linear-gradient(rgba(107, 78, 49, 0.45), rgba(107, 78, 49, 0.55)), #6B4E31;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 600 600%27%3E%3Cpath fill=%27%23EDE0D4%27 fill-opacity=%270.08%27 d=%27M300 100 Q400 150 500 100 Q550 200 500 300 Q400 350 300 300 Q200 250 250 150 Z%27/%3E%3C/svg%27') center/cover;
    opacity: 0.15;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-slogan {
    font-size: 1.6rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-style: italic;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: #a67c52;
    transform: translateY(-3px);
}

/* SECTIONS */
.section {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--coffee);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b5a4a;
    max-width: 500px;
    margin: 0 auto;
}

/* ABOUT */
.about {
    background-color: var(--beige);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 24px;
}

.about-image {
    height: 420px;
    background: #d4b89e;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(107, 78, 49, 0.15);
    position: relative;
}

.about-image::after {
    content: 'Обжарка зерна';
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    font-weight: 500;
}

/* MENU */
.menu {
    background-color: #f8f1e9;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 18px;
}

.menu-item {
    background: white;
    padding: 26px 32px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-8px);
}

.menu-item-info h3 {
    font-size: 1.45rem;
    color: var(--coffee);
    margin-bottom: 6px;
}

.menu-desc {
    color: #6b5a4a;
    font-size: 1rem;
}

.menu-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--accent);
    white-space: nowrap;
    padding-top: 6px;
}

/* CONTACTS */
.contacts {
    background-color: var(--beige);
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-row .label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8c7259;
}

.contact-row .value {
    font-size: 1.35rem;
    color: var(--text);
}

.contact-row a {
    color: var(--accent);
    text-decoration: none;
}

.contact-row a:hover {
    text-decoration: underline;
}

.map-placeholder {
    height: 380px;
    background: #d9c5a8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    color: #5c4633;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(107, 78, 49, 0.15);
}

/* FOOTER */
.footer {
    background-color: var(--coffee);
    color: #e8d9c7;
    text-align: center;
    padding: 42px 0;
    font-size: 0.95rem;
}

/* ADAPTIVE */
@media (max-width: 768px) {
    .about-grid,
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-menu {
        gap: 20px;
        font-size: 0.95rem;
    }
    
    .hero-slogan {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}