
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #fefaf5;
            color: #2e3b2c;
            scroll-behavior: smooth;
        }

        /* контейнер */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* шапка */
        .hero {
            background: linear-gradient(135deg, #1e3c1a 0%, #2c5e2a 100%);
            color: white;
            padding: 60px 0 70px;
            text-align: center;
            border-radius: 0 0 40px 40px;
            margin-bottom: 56px;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
        }

        .hero h1 {
            font-size: 3rem;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 560px;
            margin: 0 auto;
        }

        .hero .tagline {
            margin-top: 24px;
            font-weight: 500;
            display: inline-block;
            background: rgba(255,255,240,0.2);
            padding: 8px 20px;
            border-radius: 60px;
            backdrop-filter: blur(4px);
            font-size: 0.9rem;
        }

        /* кнопка заказать столик (главная) */
        .book-btn-main {
            background: #f5b042;
            border: none;
            color: #2c3e1f;
            font-weight: 700;
            font-size: 1.2rem;
            padding: 14px 36px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 8px 18px rgba(0,0,0,0.15);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-top: 32px;
            font-family: inherit;
        }

        .book-btn-main i {
            font-size: 1.3rem;
        }

        .book-btn-main:hover {
            background: #ffc05c;
            transform: scale(1.02);
            box-shadow: 0 12px 22px rgba(0,0,0,0.2);
        }

        /* секция галереи (заглушки) */
        .gallery-section {
            margin: 70px 0 50px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 32px;
            text-align: center;
            color: #2b4b25;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #f5b042;
            margin: 12px auto 0;
            border-radius: 4px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 28px;
            margin-top: 20px;
        }

        .gallery-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }

        .gallery-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
        }

        .gallery-img {
            width: 100%;
            height: 200px;
            background-color: #e2e6da;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5a6e4a;
            font-size: 3rem;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        /* стили для заглушек изображений – позже замените на реальные фото */
        .gallery-img.placeholder-style {
            background: linear-gradient(145deg, #cfdec3, #b9caaa);
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-weight: 500;
        }

        .gallery-img.placeholder-style i {
            font-size: 3.2rem;
            color: #3c5e2b;
            opacity: 0.7;
        }

        .gallery-img.placeholder-style span {
            background: rgba(0,0,0,0.5);
            color: white;
            padding: 4px 12px;
            border-radius: 40px;
            font-size: 0.8rem;
        }

        .card-caption {
            padding: 16px 18px 20px;
            text-align: center;
            font-weight: 500;
            color: #3f5c34;
            border-top: 1px solid #efebe4;
        }

        /* филиалы */
        .branches-section {
            background: #ffffffea;
            border-radius: 48px;
            padding: 48px 32px;
            margin: 60px 0 40px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
            border: 1px solid #e9e2d6;
        }

        .branches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 28px;
            margin-top: 24px;
        }

        .branch-card {
            background: #fefaf5;
            border-radius: 32px;
            padding: 22px 24px;
            transition: all 0.2s;
            border: 1px solid #ece3d8;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }

        .branch-card:hover {
            border-color: #dccfbc;
            box-shadow: 0 12px 18px -8px rgba(0,0,0,0.08);
        }

        .branch-address {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 16px;
        }

        .branch-address i {
            font-size: 1.4rem;
            color: #f5b042;
            margin-top: 3px;
        }

        .branch-address p {
            font-size: 1.05rem;
            font-weight: 500;
            line-height: 1.4;
            color: #2e3b2c;
        }

        .branch-phone {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #f3efe8;
            padding: 8px 16px;
            border-radius: 48px;
            width: fit-content;
            transition: 0.1s;
            text-decoration: none;
            color: #1f4a1a;
            font-weight: 600;
            margin-top: 12px;
        }

        .branch-phone i {
            font-size: 1rem;
        }

        .branch-phone:hover {
            background: #e5dccc;
            color: #163d12;
        }

        /* нижняя плавающая кнопка (для быстрого заказа) */
        .floating-book {
            position: fixed;
            bottom: 28px;
            right: 24px;
            background: #f5b042;
            color: #2a551f;
            width: 58px;
            height: 58px;
            border-radius: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.9rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
            cursor: pointer;
            z-index: 999;
            transition: all 0.2s;
            border: none;
        }

        .floating-book:hover {
            background: #ffbc54;
            transform: scale(1.05);
            width: 62px;
            height: 62px;
        }

        footer {
            text-align: center;
            padding: 36px 20px 40px;
            color: #6b7c62;
            border-top: 1px solid #e2d9cf;
            margin-top: 48px;
            font-size: 0.85rem;
        }

        @media (max-width: 680px) {
            .hero h1 { font-size: 2.2rem; }
            .branches-section { padding: 32px 20px; }
            .container { padding: 0 18px; }
            .book-btn-main { padding: 12px 28px; font-size: 1rem; }
        }

        button {
            background: none;
            border: none;
            cursor: pointer;
        }

        a {
            text-decoration: none;
        }
