/* LUNCH PRO - ПРЕМИАЛЬНЫЙ СТИЛЬ 2026 
   Основные принципы: Bento Grid, Glassmorphism, Split Hero
*/

:root {
    --accent: #FF5F1F;         /* Насыщенный оранжевый */
    --accent-soft: #fff5ed;    /* Кремовый для подложек */
    --dark: #0f172a;           /* Глубокий темный */
    --gray: #64748b;           /* Спокойный серый */
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --radius-lg: 32px;
    --radius-md: 20px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- ДЕКОРАТИВНЫЕ ПЯТНА НА ФОНЕ --- */
.blob-1, .blob-2 {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,95,31,0.06) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    filter: blur(80px);
}
.blob-1 { top: -150px; right: -150px; }
.blob-2 { bottom: -150px; left: -150px; }

/* --- НАВИГАЦИЯ --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.nav-container {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span { color: var(--accent); }

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    margin-left: 30px;
    font-size: 14px;
    transition: 0.3s;
}

.nav-menu a:hover { color: var(--accent); }

.nav-btn {
    background: var(--dark);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 14px;
}

/* --- ОБНОВЛЕННЫЙ SPLIT HERO --- */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.badge {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.hero h1 span { color: var(--accent); }

.hero p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns { display: flex; gap: 15px; }

.btn {
    padding: 18px 36px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary { background: var(--accent); color: white; }
.btn-secondary { background: #f1f5f9; color: var(--dark); }

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 95, 31, 0.2);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    z-index: 2;
    transition: 0.5s;
}

.hero-image:hover img { transform: rotate(0deg) scale(1.02); }

.image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-soft);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    opacity: 0.5;
}

/* --- BENTO GRID МЕНЮ --- */
.section-header { margin: 100px 0 50px; }
.section-header h2 { font-size: 42px; font-weight: 800; letter-spacing: -1.5px; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 24px;
}

.bento-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-item.large { grid-column: span 2; grid-row: span 2; }
.bento-item:nth-child(2), .bento-item:nth-child(3) { grid-column: span 2; }

.bento-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transition: 0.6s;
}

.bento-item.large .bento-img { background-image: url('https://images.unsplash.com/photo-1547592166-23ac45744acd?q=80&w=1000&auto=format&fit=crop'); }
.bento-item:nth-child(2) .bento-img { background-image: url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?q=80&w=1000&auto=format&fit=crop'); }
.bento-item:nth-child(3) .bento-img { background-image: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?q=80&w=1000&auto=format&fit=crop'); }

.bento-item:hover .bento-img { transform: scale(1.08); }

.bento-info {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
}

/* --- ПРОЦЕСС --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.step { text-align: center; }
.step-icon {
    width: 80px; height: 80px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    border-radius: 24px;
    margin: 0 auto 20px;
}

/* --- АККОРДЕОН (FAQ) --- */
.accordion { max-width: 900px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid #f1f1f1; }
.accordion-header {
    width: 100%; padding: 25px 0;
    background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; font-size: 18px; font-weight: 700;
}
.acc-icon { width: 22px; height: 22px; margin-right: 15px; color: var(--accent); }
.accordion-content {
    max-height: 0; overflow: hidden;
    transition: 0.4s ease-out;
    color: var(--gray);
}
.accordion-item.active .accordion-content { max-height: 300px; padding-bottom: 25px; }

/* --- ОТЗЫВЫ --- */
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.review-card {
    background: #f8fafc; padding: 40px; border-radius: var(--radius-lg);
}
.review-author { display: flex; align-items: center; gap: 15px; margin-top: 20px; font-weight: 700; }
.avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }

/* --- ФОРМА ЗАКАЗА --- */
/* --- ФОРМА ЗАКАЗА (Оранжевая кнопка возвращена) --- */
.order-card {
    background: var(--dark);
    padding: 80px 60px;
    border-radius: var(--radius-lg);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Декоративное свечение внутри темной карточки */
.order-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--accent);
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.order-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.order-form input {
    width: 100%;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.order-form input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
    outline: none;
}

/* Та самая кнопка */
.btn-submit {
    background: var(--accent); /* Наш фирменный оранжевый */
    color: white;
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 20px rgba(255, 95, 31, 0.2);
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 95, 31, 0.4);
    background: #ff7539; /* Чуть светлее при наведении */
}

.btn-submit:active {
    transform: translateY(0);
}

/* --- ФУТЕР --- */
.footer { background: #f8fafc; padding: 60px 0; border-top: 1px solid #eee; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; }

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 992px) {
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero-image { order: -1; }
    .hero-btns { justify-content: center; }
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-item.large, .bento-item:nth-child(2), .bento-item:nth-child(3) { grid-column: span 1; height: 350px; }
    .order-card { grid-template-columns: 1fr; padding: 40px 20px; }
    .reviews-grid { grid-template-columns: 1fr; }
}