:root {
    --coffee: #5C4033;
    --beige: #EDE0D4;
    --cream: #F5EDE4;
    --accent: #A67B5B;
    --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;
}

/* HERO */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(92, 64, 51, 0.65), rgba(92, 64, 51, 0.75)), #5C4033;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27200%27 height=%27200%27 viewBox=%270 0 200 200%27%3E%3Cpath fill=%27%23EDE0D4%27 fill-opacity=%270.07%27 d=%27M100 0L130 70L200 70L150 115L170 200L100 155L30 200L50 115L0 70L70 70Z%27/%3E%3C/svg%27') repeat;
    z-index: 1;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.3) 100%);
}

.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    z-index: 10;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 4px;
    color: #F5EDE4;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #EDE0D4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 10px;
    line-height: 1;
}

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

.btn {
    display: inline-block;
    background-color: #EDE0D4;
    color: #3C2F2F;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(92, 64, 51, 0.25);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(92, 64, 51, 0.3);
}

.btn-route {
    background-color: #A67B5B;
    color: white;
    margin-top: 30px;
    font-size: 1.05rem;
    padding: 16px 42px;
}

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

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--coffee);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto;
}

/* ABOUT */
.about {
    background-color: #F5EDE4;
}

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

.about-text h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: var(--coffee);
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 22px;
    color: #4a3c3c;
}

.about-image {
    height: 420px;
    background: #e2d5c3;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgb(92 64 51 / 20%);
}

.about-image::after {
    content: 'Обжарка вручную';
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255,255,255,0.85);
    color: #3C2F2F;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* MENU */
.menu {
    background: #fff;
}

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

.menu-item {
    background: #F9F3EB;
    padding: 28px 32px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%), 0 8px 10px -6px rgb(0 0 0 / 10%);
}

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

.menu-desc {
    color: #6b5a5a;
    font-size: 1.05rem;
}

.menu-price {
    font-size: 1.65rem;
    font-weight: bold;
    color: var(--accent);
    white-space: nowrap;
    padding-left: 20px;
}

/* CONTACTS */
.contacts {
    background: linear-gradient(#F5EDE4, #EDE0D4);
}

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

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.contact-block p {
    font-size: 1.25rem;
}

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

.contacts-map {
    height: 420px;
    background: #d9c8b6;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgb(92 64 51 / 25%);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, #d9c8b6, #d9c8b6 20px, #c9b49f 20px, #c9b49f 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-pin {
    width: 60px;
    height: 60px;
    background: #A67B5B;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.map-pin::after {
    content: '☕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    font-size: 28px;
    color: white;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.8rem;
    }
    
    .about-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .nav-links {
        display: none;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .menu-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .menu-price {
        padding-left: 0;
        align-self: flex-end;
    }
}