:root {
    --coffee: #6B4E31;
    --beige: #F5EDE1;
    --accent-green: #8FBC8F;
    --accent-orange: #FF9F1C;
    --text: #3C2F2F;
}

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

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--beige);
}

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

/* Header & Hero */
.hero {
    background: linear-gradient(135deg, #6B4E31 0%, #8C6642 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(245, 237, 225, 0.15));
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -2px;
    color: #FFEBB8;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-content {
    max-width: 520px;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 12px;
    color: #FFEBB8;
}

.hero-slogan {
    font-size: 1.55rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn.primary {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(255, 159, 28, 0.4);
}

.btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -8px rgba(255, 159, 28, 0.5);
}

.hero-image-placeholder {
    position: absolute;
    right: 8%;
    bottom: 10%;
    width: 380px;
    height: 420px;
    background: #e8d9c4;
    border-radius: 20px 60px 20px 20px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.35);
    display: none;
}

@media (min-width: 992px) {
    .hero-image-placeholder {
        display: block;
    }
}

/* 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: #6B4E31;
    opacity: 0.7;
}

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

.about-text {
    font-size: 1.2rem;
    color: #4A3A34;
}

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

.highlight {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.highlight span {
    display: inline-block;
    background: #F5EDE1;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    color: var(--coffee);
}

.about-image-placeholder {
    height: 460px;
    background: #d4b89e;
    border-radius: 16px;
    box-shadow: 25px 25px 0 -10px #f0d9b8;
}

/* Menu */
.menu {
    background: white;
}

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

.menu-item {
    background: #FFF9EF;
    padding: 28px 32px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0e4d0;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -15px rgba(107, 78, 49, 0.15);
}

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

.menu-desc {
    color: #6B5544;
    font-size: 0.98rem;
}

.menu-price {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--accent-orange);
    white-space: nowrap;
}

.menu-note {
    margin-top: 50px;
    text-align: center;
    font-style: italic;
    color: #8B6F5A;
    font-size: 1.05rem;
}

/* Contacts */
.contacts {
    background: linear-gradient(to bottom, #f9f0e3, #f0e0ca);
}

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

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

.contact-item {
    display: flex;
    gap: 22px;
}

.icon {
    font-size: 2rem;
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--coffee);
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.contact-item p {
    color: #5C463A;
    font-size: 1.1rem;
}

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

.map-placeholder {
    height: 420px;
    background: #d8c4a8;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px -10px rgba(107, 78, 49, 0.3);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(107, 78, 49, 0.75));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
}

.route-btn {
    background: white;
    color: var(--coffee);
    padding: 18px 52px;
    font-size: 1.15rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.route-btn:hover {
    background: #FFEBB8;
    transform: scale(1.04);
}

/* Footer */
.footer {
    background: var(--coffee);
    color: #EFD9B9;
    text-align: center;
    padding: 45px 0 30px;
    font-size: 0.95rem;
}

.footer p {
    margin-bottom: 8px;
}

.made-with {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Adaptive */
@media (max-width: 768px) {
    .about-content,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .nav-links {
        gap: 20px;
        font-size: 0.95rem;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .menu-item {
        padding: 22px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .menu-price {
        font-size: 1.4rem;
    }
}