/* Header */
.header {
    padding: 1.2rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__icon {
    font-size: 2.2rem;
    color: var(--color-accent-graphite);
}

.logo__text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.logo__sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #5a4e6b;
    margin-top: -5px;
}

.nav {
    display: flex;
    gap: 2.5rem;
    font-weight: 500;
}

/* Hero */
.hero {
    padding: 3rem 0 5rem;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero__title {
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.hero__desc {
    font-size: 1.25rem;
    color: #3d3349;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__badges {
    margin-top: 2.5rem;
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #4a3e57;
}

.hero__visual {
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(12px);
    border-radius: 48px;
    padding: 1.8rem 1.8rem 1.2rem;
    border: 1px solid rgba(202,196,224,0.5);
    box-shadow: 0 30px 40px -15px rgba(162,136,183,0.3);
}

.hero__food-placeholder {
    background: linear-gradient(145deg, var(--color-soft-lilac), var(--color-light-lavender));
    border-radius: 28px;
    height: 260px;
    background-blend-mode: overlay;
}

.hero__tags {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-weight: 500;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.8rem;
}

.feature-card__icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-accent-graphite);
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid #f0eaf3;
}

.category-card__img {
    height: 200px;
    background: var(--color-light-lavender);
}

.category-card__img--1 { background: linear-gradient(145deg, #B0A4CC, #CAC4E0); }
.category-card__img--2 { background: linear-gradient(145deg, #E1D2E7, #A288B7); }
.category-card__img--3 { background: linear-gradient(145deg, #F2E6F0, #B0A4CC); }

.category-card__content {
    padding: 1.8rem;
}

.category-card__link {
    font-weight: 600;
    color: var(--color-accent-graphite);
    margin-top: 1rem;
    display: inline-block;
}

/* B2B */
.b2b-block {
    background: var(--color-accent-graphite);
    border-radius: 48px;
    padding: 3.5rem 3rem;
    color: white;
    background-image: radial-gradient(circle at 100% 0%, #A288B7 0%, #2D2D2D 70%);
}

.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.pill {
    background: rgba(255,255,255,0.12);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 1rem;
}

.b2b-title {
    color: white !important;
    font-size: 2.8rem;
    margin: 1rem 0;
}

.b2b-list {
    list-style: none;
    margin: 1.8rem 0;
    font-size: 1.2rem;
    font-weight: 300;
}

.b2b-advantages {
    background: rgba(255,255,255,0.05);
    border-radius: 32px;
    padding: 2rem;
    backdrop-filter: blur(8px);
}

/* Reasons */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.reason-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.8rem;
    border: 1px solid var(--color-soft-lilac);
}

/* Gallery */
.gallery-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0.2rem 2rem;
    scroll-snap-type: x mandatory;
}

.gallery-item {
    min-width: 260px;
    height: 200px;
    background: linear-gradient(145deg, #CAC4E0, #F2E6F0);
    border-radius: 28px;
    scroll-snap-align: start;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    font-weight: 500;
}

/* CTA Form */
.cta-form {
    background: white;
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 0 30px 50px -20px rgba(162,136,183,0.3);
}

.cta-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 4rem;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(202, 196, 224, 0.4);
    background: linear-gradient(to bottom, transparent, rgba(242, 230, 240, 0.3));
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr; /* Последняя колонка чуть шире для карты */
    gap: 2rem;
    align-items: start;
}

.footer__col {
    display: flex;
    flex-direction: column;
}

.footer__col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--color-accent-graphite);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__address {
    margin: 0.8rem 0;
    line-height: 1.6;
    color: #4a3e57;
}

.footer__address i {
    margin-right: 8px;
    color: var(--color-primary-end);
    width: 18px;
}

.footer__country {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer__contact {
    margin-top: 1rem;
    line-height: 1.8;
}

.footer__contact i {
    margin-right: 8px;
    color: var(--color-primary-end);
    width: 18px;
}

.footer__links {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 0.7rem;
}

.footer__links a {
    text-decoration: none;
    color: #4a3e57;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer__links a:hover {
    color: var(--color-accent-graphite);
}

/* Карта в футере */
.footer__col--map {
    min-width: 0; /* Чтобы не вылезало за grid */
}

.map-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--color-accent-graphite);
}

.map-container {
    width: 100%;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-soft-lilac);
    box-shadow: var(--shadow-card);
    margin-bottom: 0.8rem;
}

.map-address {
    font-size: 0.85rem;
    color: #5a4e6b;
    padding: 0.5rem 0;
    line-height: 1.6;
}

.map-address i {
    margin-right: 6px;
    color: var(--color-primary-end);
}

.map-address__weekend {
    display: inline-block;
    margin-left: 22px;
}

.footer__bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
    border-top: 1px solid rgba(202, 196, 224, 0.3);
}

/* Адаптив для футера */
@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer__col--map {
        grid-column: span 2;
    }
    
    .map-container {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer__col--map {
        grid-column: span 1;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .map-address__weekend {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
}