﻿/* ============================================
   RABBIT HOLE - MAIN STYLES
   Полная версия со всеми компонентами
   Версия 2.1 Final
   ============================================ */

/* ============================================
   IMPORTS - ВСЕГДА В НАЧАЛЕ!
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:wght@600;700&family=Manrope:wght@400;600&family=Montserrat:wght@400;600&display=swap&subset=cyrillic');

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
    --font-serif: 'Noto Serif Display', 'Times New Roman', serif;
    --font-sans: 'Montserrat', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: #1b1b1b;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    padding-top: 120px;
}

p {
    font-family: var(--font-sans);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: #d9b97c;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Site wrapper */
.site {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ============================================
   CONTAINER & GRID SYSTEM
   ============================================ */

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 575.98px) {
    .container {
        padding: 0 10px;
    }
}

.container-fluid {
    width: 100%;
    padding: 0;
    margin: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

/* Column System */
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

/* XL Breakpoint (1200px+) */
@media (min-width: 1200px) {
    .col-xl-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        padding: 0 15px;
    }

    .col-xl-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        padding: 0 15px;
    }

    .col-xl-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
        padding: 0 15px;
    }

    .d-xl-none {
        display: none !important;
    }

    .d-xl-block {
        display: block !important;
    }

    /* Ensure menu is visible on desktop */
    .header-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header-menu .nav-menu {
        display: flex !important;
    }
}

/* LG Breakpoint (992px+) */
@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
        padding: 0 15px;
    }

    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
        padding: 0 15px;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
        padding: 0 15px;
    }

    .offset-lg-5 {
        margin-left: 41.666667%;
    }

    .d-lg-none {
        display: none !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .text-lg-start {
        text-align: left !important;
    }

    .text-lg-center {
        text-align: center !important;
    }

    .text-lg-end {
        text-align: right !important;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Display */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

/* Desktop display overrides */
@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
    
    .d-lg-none {
        display: none !important;
    }
}

/* Mobile display overrides */
@media (max-width: 991.98px) {
    .d-lg-none {
        display: block !important;
    }
}

/* Flexbox */
.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

/* Text Alignment */
.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
}

.text-end {
    text-align: right;
}

/* Colors */
.text-secondary {
    color: #d9b97c !important;
}

/* Font Sizes */
.text-large {
    font-size: 1.25rem;
}

/* Spacing */
.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.p-mobile-0 {
    padding: 0 !important;
}

@media (min-width: 992px) {
    .p-mobile-0 {
        padding: 0 15px;
    }
}

/* Dimensions */
.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

/* Position */
.position-relative {
    position: relative;
}

/* Order */
.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: inherit;
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
}

h2 {
    font-size: 3.5rem;
}

h3 {
    font-size: 2.75rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

strong {
    font-weight: 700;
}

/* Responsive Typography */
@media (max-width: 1199px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

/* Title Styles */
.title-border {
    position: relative;
    display: inline-block;
    font-family: var(--font-serif);
}

.title-border--line {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.title-border--line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #d9b97c;
}

.title-lines {
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #d9b97c;
    vertical-align: middle;
    margin: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 38px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: #d9b97c;
    color: #1b1b1b;
    border-color: #d9b97c;
}

.btn-primary:hover {
    background-color: #1b1b1b;
    color: #d9b97c;
    border-color: #1b1b1b;
}

.btn-secondary {
    background-color: #1b1b1b;
    color: #d9b97c;
    border-color: #1b1b1b;
}

.btn-secondary:hover {
    background-color: #d9b97c;
    color: #1b1b1b;
    border-color: #d9b97c;
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: #1b1b1b;
    border-color: #fff;
}

.btn-white {
    background-color: #fff;
    color: #1b1b1b;
    border-color: #fff;
}

.btn-white:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

#wrapper-navbar {
    background-color: #fff;
    box-shadow: none;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
}

#main-nav {
    padding: 20px 0;
}

#main-nav .menu {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.navbar-brand {
    display: inline-block !important;
    line-height: 1;
    padding: 0;
}

.navbar-brand img {
    height: 50px !important;
    width: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    display: block !important;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover img {
    opacity: 0.8 !important;
}

/* Desktop logo size */
@media (min-width: 1200px) {
    .navbar-brand img {
        height: 90px !important;
    }
    
    #wrapper-navbar .navbar-brand img {
        height: 90px !important;
        max-height: none !important;
    }
}

/* Desktop Menu - FORCE VISIBILITY */
.header-menu {
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.header-menu .nav-menu {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

#menu-header {
    display: flex !important;
    visibility: visible !important;
}

.nav-menu__item {
    position: relative;
    display: inline-block !important;
    margin: 0;
    padding: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu__link {
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 20px !important;
    color: #1b1b1b !important;
    position: relative;
    display: inline-block !important;
    white-space: nowrap;
    text-decoration: none;
}

/* More specific selectors */
nav#main-nav .header-menu .nav-menu {
    display: flex !important;
}

nav#main-nav .header-menu .nav-menu__item {
    display: inline-block !important;
}

nav#main-nav .header-menu .nav-menu__link {
    display: inline-block !important;
    color: #1b1b1b !important;
    padding: 12px 15px;
}

.navbarToggler {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 32px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}



.navbarToggler--line {
    width: 100%;
    height: 3px;
    background-color: #000 !important;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbarToggler--line.middle {
    width: 80%;
}

.navbarToggler--line.top {
    transform-origin: top left;
}

.navbarToggler--line.bottom {
    transform-origin: bottom left;
}

/* Hide main navbar burger when menu is open (but keep slideMenu close button) */
body.menu-open #wrapper-navbar .navbarToggler {
    opacity: 0;
    pointer-events: none;
}

body.menu-open #slideMenu .navbarToggler {
    opacity: 1;
    pointer-events: auto;
}

/* Active state for mobile menu */
.menu-open .navbarToggler--line.top {
    transform: rotate(45deg);
}

.menu-open .navbarToggler--line.middle {
    opacity: 0;
}

.menu-open .navbarToggler--line.bottom {
    transform: rotate(-45deg);
}

/* ============================================
   MOBILE SLIDE MENU
   ============================================ */

#slideMenuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#slideMenuOverlay.active {
    opacity: 1;
    visibility: visible;
}

#slideMenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

#slideMenu.active {
    left: 0;
}

.slideMenu__header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.slideMenu__header--close {
    display: flex;
    align-items: center;
}

.slideMenu__header--close .navbarToggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.slideMenu__header--close .navbarToggler .navbarToggler--line {
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #000 !important;
    transition: all 0.3s ease;
}

.slideMenu__header--close .navbarToggler .navbarToggler--line.top {
    transform: rotate(45deg);
}

.slideMenu__header--close .navbarToggler .navbarToggler--line.bottom {
    transform: rotate(-45deg);
}

.slideMenu__body {
    padding: 30px 20px;
    flex: 1;
    overflow-y: auto;
}

.slideMenu__body .nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slideMenu__body .nav-menu__item {
    margin-bottom: 0;
}

.slideMenu__body .nav-menu__link {
    display: block;
    padding: 15px 0;
    color: #1b1b1b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.slideMenu__body .nav-menu__link:hover {
    color: #d9b97c;
    padding-left: 10px;
}

.slideMenu__footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #f8f8f8;
}

.slideMenu__footer--text {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #1b1b1b;
}

.slideMenu__footer--text svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.slideMenu__footer--text svg path {
    fill: #d9b97c;
}

.slideMenu__footer--text a {
    color: #1b1b1b;
}

.slideMenu__footer--text a:hover {
    color: #d9b97c;
}

body.menu-open {
    overflow: hidden;
}

/* ============================================
   HERO BANNER - FULL HEIGHT
   ============================================ */

.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner.under-header {
    margin-top: 0;
    padding-top: 0;
}

.hero-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner__image img,
.hero-banner__image--desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner__image--mobile {
    background-size: cover;
    background-position: center;
}

.hero-banner__image.light::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-banner__image.dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-banner__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-banner__content__object__box {
    padding: 60px 40px;
    max-width: 700px;
}

.hero-banner__content__object__box.light,
.hero-banner__content__object__box.dark {
    color: #fff;
}

.hero-banner__content__object--subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.95;
}

.hero-banner__content__object--title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-banner__content__object--text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-banner__content__object__button {
    margin-top: 30px;
}

/* Responsive Hero Banner */
@media (max-width: 1199px) {
    .hero-banner {
        min-height: 80vh;
    }

    .hero-banner__content__object--title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        min-height: 70vh;
    }

    .hero-banner__content__object__box {
        padding: 40px 20px;
    }

    .hero-banner__content__object--title {
        font-size: 2.5rem;
    }

    .hero-banner__content__object--subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        min-height: 60vh;
    }

    .hero-banner__content__object--title {
        font-size: 2rem;
    }
}

/* ============================================
   BANNER TWO COLUMN FULL WIDTH
   ============================================ */

.banner-tc-fw {
    padding: 0;
}

.banner-tc-fw__image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
}

.banner-tc-fw__content {
    padding: 100px 80px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 700px;
}

.banner-tc-fw__content--icon {
    margin-bottom: 35px;
    text-align: center;
}

.banner-tc-fw__content--icon img {
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.banner-tc-fw__content--title {
    font-size: 2.75rem;
    margin-bottom: 35px;
    color: #1b1b1b;
    text-align: center;
    font-family: var(--font-serif);
}

.hero-banner__content__object--title {
    font-family: var(--font-serif);
}

.banner-tc-fw__content--text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 35px;
    color: #4a4a4a;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-sans);
}

.banner-tc-fw__content__button {
    margin-top: 10px;
    text-align: center;
}

/* Responsive Banner TC FW */
@media (max-width: 991px) {
    .banner-tc-fw__image {
        min-height: 400px;
    }

    .banner-tc-fw__content {
        padding: 60px 40px;
        min-height: auto;
    }

    .banner-tc-fw__content--title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .banner-tc-fw__content {
        padding: 50px 25px;
    }

    .banner-tc-fw__content--title {
        font-size: 1.75rem;
    }
}

/* ============================================
   BANNER FIXED BACKGROUND
   ============================================ */

.banner-fixedBG {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.banner-fixedBG--background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-fixedBG--background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.banner-fixedBG__content {
    position: relative;
    z-index: 1;
    padding: 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.banner-fixedBG__content--image {
    margin-bottom: 40px;
    overflow: hidden;
}

.banner-fixedBG__content--image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.banner-fixedBG__content:hover .banner-fixedBG__content--image img {
    transform: scale(1.05);
}

.banner-fixedBG__content__grid {
    padding: 0;
}

.banner-fixedBG__content__grid--icon {
    margin-bottom: 25px;
}

.banner-fixedBG__content__grid--icon img {
    width: 60px;
    height: 60px;
}

.banner-fixedBG__content__grid--title {
    font-size: 2.25rem;
    margin-bottom: 25px;
}

.banner-fixedBG__content__grid--text {
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

.banner-fixedBG__content__grid__button {
    margin-top: 15px;
}

/* Responsive Fixed BG */
@media (max-width: 991px) {
    .banner-fixedBG {
        padding: 60px 0;
    }

    .banner-fixedBG__content {
        padding: 60px 40px;
    }

    .banner-fixedBG__content__grid--title {
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .banner-fixedBG {
        padding: 40px 0;
    }

    .banner-fixedBG__content {
        padding: 40px 25px;
    }
}


/* ============================================
   BANNER TWO COLUMN
   ============================================ */

.banner-twoCol {
    position: relative;
    padding: 100px 0;
    background-color: #1b1b1b;
    background-size: cover;
    background-position: center;
}

.banner-twoCol::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.banner-twoCol .container {
    position: relative;
    z-index: 1;
}

.banner-twoCol__contentSmall {
    color: #fff;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-twoCol__contentSmall--title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.banner-twoCol__contentSmall--text {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    margin-bottom: 35px;
    text-align: center;
}

.banner-twoCol__contentSmall__button {
    text-align: center;
}

.banner-twoCol__content {
    padding: 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.banner-twoCol__content--image {
    margin-bottom: 40px;
    overflow: hidden;
}

.banner-twoCol__content--image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.banner-twoCol__content:hover .banner-twoCol__content--image img {
    transform: scale(1.05);
}

.banner-twoCol__content__grid {
    padding: 0;
}

.banner-twoCol__content__grid--icon {
    margin-bottom: 25px;
}

.banner-twoCol__content__grid--icon img {
    width: 60px;
    height: 60px;
}

.banner-twoCol__content__grid--title {
    font-size: 1.875rem;
    margin-bottom: 25px;
}

.banner-twoCol__content__grid--text {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

.banner-twoCol__content__grid__button {
    margin-top: 15px;
}

/* Responsive Two Col */
@media (max-width: 991px) {
    .banner-twoCol {
        padding: 60px 0;
    }

    .banner-twoCol__contentSmall {
        padding: 40px 25px;
    }

    .banner-twoCol__contentSmall--title {
        font-size: 2.5rem;
    }

    .banner-twoCol__contentSmall--text {
        font-size: 1.25rem;
    }

    .banner-twoCol__content {
        padding: 60px 40px;
    }
}

@media (max-width: 767px) {
    .banner-twoCol__contentSmall--title {
        font-size: 2rem;
        flex-direction: column;
        gap: 15px;
    }

    .banner-twoCol__content {
        padding: 40px 25px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background-color: #1b1b1b;
    color: #d9b97c;
    padding: 80px 0 40px;
}

.site-footer__column {
    padding: 0;
}

.site-footer__column--title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer__column--text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.site-footer__column--text svg {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-top: 3px;
}

.site-footer__column--text svg path,
.site-footer__column--text svg .st0 {
    fill: #d9b97c;
}

.site-footer__column--text.adress,
.site-footer__column--text.number,
.site-footer__column--text.email {
    align-items: flex-start;
}

.site-footer__column--text a {
    color: #d9b97c;
    transition: color 0.3s ease;
}

.site-footer__column--text a:hover {
    color: #fff;
}

.site-footer__column__logo {
    margin-bottom: 35px;
    text-align: center;
}

.site-footer__column__logo img {
    max-width: 220px;
    height: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.site-footer__column--text.center-text {
    display: block;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px;
}

.site-footer__column--text.left-text {
    display: block;
    text-align: left;
}

.site-footer__regulations {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(217, 185, 124, 0.25);
}

.site-footer__regulations--link {
    color: #d9b97c;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.site-footer__regulations--link:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .site-footer {
        padding: 60px 0 30px;
    }

    .site-footer__regulations {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 50px 0 25px;
    }

    .site-footer__column--title {
        font-size: 1.125rem;
        margin-bottom: 25px;
    }
}

/* Copyright Footer */
.copyrights {
    background-color: #0d0d0d;
    color: #888;
    padding: 25px 0;
    font-size: 0.875rem;
    text-align: center;
}

.copyrights a {
    color: #d9b97c;
    transition: color 0.3s ease;
}

.copyrights a:hover {
    color: #fff;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.animation-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animation-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.scrollParalax {
    transition: transform 0.1s ease-out;
}

/* ============================================
   HELPER CLASSES
   ============================================ */

.sticky-footer {
    min-height: calc(100vh - 400px);
}

.noPadding {
    padding: 0 !important;
}

.full {
    width: 100%;
}

/* SVG Icon Styles */
svg .st0 {
    fill: #d9b97c;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ============================================
   CRITICAL OVERRIDES - MUST BE LAST
   ============================================ */

/* Force menu visibility on desktop */
@media (min-width: 1200px) {
    #wrapper-navbar #main-nav .col-xl-8 {
        display: block !important;
    }
    
    #wrapper-navbar #main-nav .d-xl-block {
        display: block !important;
    }
    
    #wrapper-navbar #main-nav .header-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    #wrapper-navbar #main-nav .header-menu #menu-header {
        display: flex !important;
        visibility: visible !important;
    }
    
    #wrapper-navbar #main-nav .header-menu .nav-menu__item {
        display: inline-block !important;
        visibility: visible !important;
    }
    
    #wrapper-navbar #main-nav .header-menu .nav-menu__link {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #1b1b1b !important;
        font-size: 13px !important;
    }
}

/* Force logo visibility */
#wrapper-navbar .navbar-brand {
    display: inline-block !important;
}

/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */

/* Base mobile fixes */
@media (max-width: 991.98px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .site {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Container */
    .container {
        max-width: 100%;
    }
    
    /* Sections padding */
    section {
        padding: 40px 0;
    }
    
    /* Banner content */
    .banner-tc-fw__content,
    .banner-fixedBG__content,
    .banner-twoCol__content {
        padding: 30px 20px;
    }
    
    /* Text sizes */
    h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    h4 {
        font-size: 20px;
        line-height: 1.4;
    }
    
    p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Mobile menu wider on small phones */
    #slideMenu {
        width: 90%;
        max-width: 320px;
    }
    
    /* Logo size on mobile */
    .navbar-brand img {
        height: 50px !important;
    }
    
    #wrapper-navbar .navbar-brand img {
        height: 50px !important;
    }
    
    /* Navbar padding */
    #main-nav {
        padding: 10px 0;
    }
    
    #wrapper-navbar {
        padding: 0;
    }
    
    /* Hero banner adjustments */
    .hero-banner {
        min-height: 70vh;
    }
    
    .hero-banner__content__object--title {
        font-size: 28px !important;
        line-height: 1.2;
    }
    
    .hero-banner__content__object--subtitle {
        font-size: 14px !important;
        margin-bottom: 15px;
    }
    
    .hero-banner__content__object--text {
        font-size: 14px !important;
    }
    
    /* Sections */
    section {
        padding: 30px 0;
    }
    
    /* Banner content boxes */
    .banner-tc-fw__content {
        padding: 30px 15px !important;
    }
    
    .banner-tc-fw__content--title {
        font-size: 22px !important;
    }
    
    .banner-tc-fw__content--text {
        font-size: 14px !important;
    }
    
    .banner-fixedBG__content {
        padding: 25px 15px !important;
        margin: 0 !important;
    }
    
    .banner-fixedBG__content__grid--title {
        font-size: 22px !important;
    }
    
    .banner-fixedBG__content__grid--text {
        font-size: 14px !important;
    }
    
    /* Footer columns */
    .site-footer .col-lg {
        margin-bottom: 30px;
    }
    
    .site-footer__column--text {
        font-size: 14px !important;
    }
    
    /* Container padding on mobile */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Grid columns */
    .col-3, .col-6, .col-12 {
        padding: 0 10px;
    }
    
    /* Remove negative margins on mobile */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    #slideMenu {
        width: 80%;
        max-width: 360px;
    }
    
    .navbar-brand img {
        height: 60px !important;
    }
    
    #wrapper-navbar .navbar-brand img {
        height: 60px !important;
    }
    
    .hero-banner__content__object--title {
        font-size: 32px !important;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    #slideMenu {
        width: 60%;
        max-width: 380px;
    }
    
    .navbar-brand img {
        height: 70px !important;
    }
    
    #wrapper-navbar .navbar-brand img {
        height: 70px !important;
    }
    
    .hero-banner__content__object--title {
        font-size: 36px !important;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    #slideMenu {
        width: 50%;
        max-width: 400px;
    }
    
    .navbar-brand img {
        height: 80px !important;
    }
    
    #wrapper-navbar .navbar-brand img {
        height: 80px !important;
    }
}

/* Hide mobile menu on desktop */
@media (min-width: 1200px) {
    #slideMenu,
    #slideMenuOverlay {
        display: none !important;
    }
    
    .navbarToggler {
        display: none !important;
    }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .slideMenu__body {
        padding: 15px 20px;
    }
    
    .slideMenu__body .nav-menu__link {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .slideMenu__footer {
        padding: 15px 20px;
    }
    
    .slideMenu__footer--text {
        margin-bottom: 10px;
        font-size: 12px;
    }
    
    .hero-banner {
        min-height: 100vh;
    }
}

/* Prevent content shift when menu opens */
@media (max-width: 1199.98px) {
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

/* ==========================
   Simple horizontal gallery
   ========================== */

.gallery {
    width: 100%;
    padding: 150px 0 60px;
    background: #fff;
}

.gallery-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.gallery-viewport {
    overflow: hidden;
    flex: 1;
}

.gallery-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.gallery-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
}

.gallery-slide img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

@media (min-width: 768px) {
    .gallery-slide {
        flex-basis: calc(100% / 3);
    }
}

@media (min-width: 1200px) {
    .gallery-slide {
        flex-basis: calc(100% / 3.2);
    }
    .gallery-slide img {
        height: 200px;
    }
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: #d9b97c;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0,0,0,0.16);
    z-index: 3;
}

.gallery-btn--prev { left: -22px; }
.gallery-btn--next { right: -22px; }

.gallery-btn:hover {
    background: #c6a566;
}

@media (max-width: 767.98px) {
    .gallery-viewport {
        padding: 0 16px;
    }
    .gallery-track {
        gap: 12px;
    }
    .gallery-slide {
        flex: 0 0 100%;
    }
    .gallery-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
        top: auto;
        bottom: -20px;
        transform: none;
    }
    .gallery-btn--prev { left: 10px; }
    .gallery-btn--next { right: 10px; }
    .gallery { padding: 80px 0 80px; }
    .gallery-inner { padding-bottom: 32px; }
}
/* Menu page layout overrides */
#main-menu {
    padding: 60px 0 80px;
}

.shopMenu__grid__tabs__nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0;
    margin: 40px 0 30px;
    list-style: none;
}

.shopMenu__grid__tabs__nav--switch {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1b1b1b;
    position: relative;
    padding-bottom: 10px;
}

.shopMenu__grid__tabs__nav--switch.active::after,
.shopMenu__grid__tabs__nav--switch:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #d9b97c;
}

.shopMenu__grid__tabs__tab__object {
    display: none;
}

.shopMenu__grid__tabs__tab__object.active {
    display: block;
}

.content-restaurant {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.content-restaurant__top {
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.content-restaurant__top--title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.content-restaurant__top--price span {
    color: #d9b97c;
    font-weight: 700;
}

.content-restaurant__bottom--desc {
    margin: 8px 0 0;
    color: #666;
}

@media (max-width: 767.98px) {
    #main-menu {
        padding: 30px 0 60px;
    }

    .content-restaurant__top--title {
        font-size: 16px;
    }
}
/* ============================================
   КНОПКА ПРОСМОТРА МЕНЮ
   ============================================ */

.btn-view-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #c19a6b;
    color: #1b1b1b;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 2px solid #c19a6b;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.3);
    cursor: pointer;
}

.btn-view-menu:hover {
    background: #1b1b1b;
    color: #c19a6b;
    border-color: #1b1b1b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.btn-view-menu svg {
    width: 18px;
    height: 18px;
}

#main-menu.shopMenu {
    padding: 80px 0 100px;
    background: #fff;
}

#page-header {
    position: relative;
    color: #fff;
}

#page-header .banner-tc-fw__overlay {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

#page-header .banner-tc-fw__content {
    color: #fff !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

#page-header .banner-tc-fw__content--title {
    color: #fff;
}

#page-header .banner-tc-fw__content--text {
    color: #f5f5f5;
}

/* ============================================
   ТАБЫ НАВИГАЦИИ МЕНЮ
   ============================================ */

.shopMenu__grid__tabs__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 0;
    margin: 0 0 50px;
    list-style: none;
}

.shopMenu__grid__tabs__nav--item {
    margin: 0;
    padding: 0;
}

.shopMenu__grid__tabs__nav--switch {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1b1b1b;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 4px;
    background: #f8f8f8;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.shopMenu__grid__tabs__nav--switch:hover {
    background: #f0f0f0;
    color: #c19a6b;
    border-color: #c19a6b;
    text-decoration: none;
}

.shopMenu__grid__tabs__nav--switch.active {
    background: #c19a6b;
    color: #fff;
    border-color: #c19a6b;
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.3);
}

.shopMenu__grid__tabs__tab__object {
    display: none;
    animation: fadeInMenu 0.5s ease;
}

.shopMenu__grid__tabs__tab__object.active {
    display: block;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px 40px;
    max-width: 1200px;
    margin: 0 auto;
}


.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 4px;
    height: 100%;
    background: #c19a6b;
    border-radius: 8px 0 0 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover {
    border-color: #c19a6b;
    box-shadow: 0 8px 20px rgba(193, 154, 107, 0.15);
    transform: translateY(-2px);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item__info {
    flex: 1;
}

.menu-item__title {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0 0 8px;
    line-height: 1.3;
}

.menu-item__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.menu-item__price {
    font-size: 18px;
    font-weight: 700;
    color: #c19a6b;
    white-space: nowrap;
    padding-top: 2px;
}

.menu-category-divider {
    grid-column: 1 / -1;
    text-align: center;
    position: relative;
    margin: 12px 0 6px;
    padding: 12px 0 6px;
}

.menu-category-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e8e8e8;
    z-index: 0;
}

.menu-category-divider .menu-category-title {
    display: inline-block;
    position: relative;
    padding: 0 14px;
    margin: 0;
    font-family: var(--font-serif);
    font-size: 18px;
    color: #1b1b1b;
    background: #fff;
    z-index: 1;
}

.menu-category-divider .menu-category-subtitle {
    display: block;
    margin-top: 4px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: #7a6246;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    #main-menu.shopMenu {
        padding: 60px 0 80px;
    }

    .shopMenu__grid__tabs__nav {
        gap: 10px 15px;
        margin-bottom: 40px;
    }

    .shopMenu__grid__tabs__nav--switch {
        font-size: 13px;
        padding: 10px 18px;
    }

    .menu-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px 30px;
    }

    .menu-item {
        padding: 20px;
    }

    .menu-item__title {
        font-size: 17px;
    }

    .menu-item__desc {
        font-size: 13px;
    }

    .menu-item__price {
        font-size: 17px;
    }
}

@media (max-width: 767.98px) {
    .btn-view-menu {
        padding: 12px 24px;
        font-size: 14px;
    }

    #main-menu.shopMenu {
        padding: 40px 0 60px;
    }

    .shopMenu__grid__tabs__nav {
        gap: 8px 10px;
        margin-bottom: 30px;
    }

    .shopMenu__grid__tabs__nav--switch {
        font-size: 12px;
        padding: 8px 14px;
    }

    .menu-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-item {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }

    .menu-item__title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .menu-item__desc {
        font-size: 13px;
    }

    .menu-item__price {
        font-size: 16px;
        align-self: flex-start;
    }
}

@media (max-width: 575.98px) {
    .btn-view-menu {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .shopMenu__grid__tabs__nav--switch {
        font-size: 11px;
        padding: 8px 12px;
    }

    .menu-item {
        padding: 16px;
    }
}

@media print {
    .btn-view-menu,
    .shopMenu__grid__tabs__nav {
        display: none !important;
    }

    .menu-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .shopMenu__grid__tabs__tab__object {
        display: block !important;
    }
}
/* ============================================
   KITCHEN PAGE - RABBIT HOLE STYLE
   ============================================ */

#kitchen-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #0f0f0f;
}

#kitchen-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.kitchen-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    filter: saturate(1.1);
    z-index: 0;
}

.kitchen-hero__content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    padding: 140px 20px 120px;
}

.kitchen-hero__eyebrow {
    font-size: 0.9rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.kitchen-hero__title {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
}

.kitchen-hero__title span {
    color: #d9b97c;
}

.kitchen-hero__lead {
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 740px;
    margin: 0 auto;
    opacity: 0.95;
}

.kitchen-hero__actions {
    margin-top: 35px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.kitchen-experience {
    position: relative;
    padding: 0;
    background: url('imgPub/kitchen_banner.png') center/cover no-repeat;
    overflow: hidden;
}

.kitchen-experience__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1.5;
    filter: grayscale(1);
    mix-blend-mode: multiply;
}

.kitchen-experience__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.kitchen-tile {
    background: #fff;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 38px;
    min-height: 420px;
}

.kitchen-tile--image {
    padding: 0;
    border: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: none;
}

.kitchen-tile--card {
    align-items: flex-start;
}

.kitchen-tile--dark {
    background: #0f0f0f;
    color: #f6f6f6;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
}

.kitchen-tile--dark .kitchen-tile__title {
    color: #fff;
}

.kitchen-tile--light {
    background: #fff;
}

.kitchen-tile--span-2 {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 360px;
}

.kitchen-tile__icon {
    margin-bottom: 18px;
}

.kitchen-tile__icon img {
    width: 52px;
    height: auto;
    display: block;
}

.kitchen-tile__title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin: 0 0 16px;
    color: #1b1b1b;
}

.kitchen-tile__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.kitchen-tile--center {
    align-items: center;
    text-align: center;
}

.kitchen-tile--plain {
    background: transparent !important;
    box-shadow: none !important;
    border: 0;
    padding: 50px 40px;
}

.kitchen-tile--double {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    min-height: 420px;
}

.kitchen-tile__half {
    background-size: cover;
    background-position: center;
}

.kitchen-story {
    padding: 120px 0 110px;
    background: #fff;
}

.kitchen-story__intro {
    max-width: 780px;
    margin: 0 auto 70px;
}

.kitchen-story__icon {
    margin-bottom: 16px;
}

.kitchen-story__icon img {
    width: 42px;
    height: auto;
}

.kitchen-story__title {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: #1b1b1b;
}

.kitchen-story__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.kitchen-story__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}

.kitchen-story__image {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    box-shadow: none;
}

.kitchen-story__card {
    background: #fff;
    padding: 40px 38px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kitchen-story__card--dark {
    background: #0f0f0f;
    color: #f5f5f5;
}

.kitchen-story__card--dark .kitchen-story__cardTitle {
    color: #fff;
}

.kitchen-story__cardTitle {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    margin: 0 0 16px;
    color: #1b1b1b;
}

.kitchen-story__cardText {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.kitchen-story__card--dark .kitchen-story__cardText {
    color: #dadada;
}

/* CTA - общая одно-колоночная */
.banner-oneCol {
    padding: 90px 0;
}

.banner-oneCol__content {
    padding: 60px 40px;
    background-color: #1b1b1b;
    color: #fff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.banner-oneCol__content--title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.banner-oneCol__content--text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.92;
}

.banner-oneCol__content__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    #kitchen-hero {
        min-height: 80vh;
    }

    .kitchen-hero__content {
        padding: 120px 20px 100px;
    }

    .kitchen-hero__title {
        font-size: 3.6rem;
    }

    .kitchen-experience__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
        padding: 0;
        max-width: 1040px;
    }

    .kitchen-tile {
        min-height: 360px;
    }

    .kitchen-story__title {
        font-size: 2.3rem;
    }

}

@media (max-width: 991px) {
    .kitchen-hero__title {
        font-size: 3rem;
    }

    .kitchen-hero__lead {
        font-size: 1rem;
    }

    .kitchen-experience {
        padding: 100px 0;
    }

    .kitchen-story {
        padding: 100px 0 90px;
    }

    .banner-oneCol {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    #kitchen-hero {
        min-height: 75vh;
    }

    .kitchen-hero__title {
        font-size: 2.4rem;
    }

    .kitchen-hero__lead {
        font-size: 0.95rem;
    }

    .kitchen-hero__actions {
        flex-direction: column;
    }

    .kitchen-experience__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        padding: 0;
    }

    .kitchen-tile {
        min-height: 320px;
    }

    .kitchen-story__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .kitchen-story__image {
        min-height: 300px;
    }

    .banner-oneCol {
        padding: 70px 0;
    }

    .banner-oneCol__content {
        padding: 45px 30px;
    }
}

@media (max-width: 575px) {
    .kitchen-hero__title {
        font-size: 2.1rem;
    }

    .kitchen-hero__eyebrow {
        letter-spacing: 2px;
    }

    .kitchen-story__title {
        font-size: 2rem;
    }

    .kitchen-story__cardTitle {
        font-size: 1.6rem;
    }

    .banner-oneCol__content {
        padding: 35px 20px;
    }
}

@media print {
    #kitchen-hero,
    .kitchen-experience,
    .kitchen-story {
        page-break-inside: avoid;
    }

    .banner-oneCol {
        display: none;
    }
}

/* About page */
.about-hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(217,185,124,0.25), transparent 40%), linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.75) 100%);
    mix-blend-mode: multiply;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-section {
    padding: 80px 0;
}

.about-section--alt {
    background: #f7f7f7;
}

.about-panels {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.about-panels__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.about-panels__tile {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
}

.about-panels__tile--card {
      background: rgba(18, 18, 18, 0.94);
      color: #f5f5f5;
      text-align: center;
  }

.about-panels__tile--light {
    background: rgba(255, 255, 255, 0.94);
    color: #1b1b1b;
}

.about-panels__tile--halo {
    position: relative;
}

.about-panels__tile--halo::before {
      content: '';
      position: absolute;
      inset: 12%;
      border: none;
      z-index: 1;
  }

.about-panels__tile--card .about-title {
      color: #d6b679;
      margin-bottom: 18px;
  }
.about-panels__tile--card .about-text {
    color: #fff;
}

.about-panels__tile .about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 640px;
}

.about-panels__tile--card {
      text-align: center;
}

@media (max-width: 992px) {
    .about-panels__grid {
        grid-template-columns: 1fr;
    }
    .about-panels__tile {
        min-height: 320px;
        padding: 36px 28px;
        text-align: left;
    }
    .about-panels__tile--card {
        text-align: left;
        align-items: center;
        justify-content: center;
    }
    .about-panels__tile .about-text {
        max-width: 100%;
    }
    .about-panels__tile--halo::before {
        inset: 6%;
    }
}

.about-image {
    width: 100%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}

.about-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 16px 36px rgba(0,0,0,0.08);
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(217,185,124,0.35), transparent 60%);
    opacity: 0.7;
}

.about-title {
    margin: 0 0 14px;
    font-family: var(--font-serif);
}

.about-text {
    margin: 0 0 16px;
    color: #4a4a4a;
}

.about-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.about-card__thumb {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    margin-bottom: 10px;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.quote-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.quote-card__text {
    font-size: 16px;
    font-style: italic;
    margin: 0 0 8px;
}

.quote-card__author {
    margin: 0;
    font-weight: 700;
    color: #1b1b1b;
}

.about-team {
    background: #f9f9f9;
    color: #1b1b1b;
    padding: 100px 0;
}

.about-team__head {
    max-width: 740px;
    margin: 0 auto 40px;
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.about-team__card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 420px;
}

.about-team__photo {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

.about-team__name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 0;
}

.about-team__role {
    margin: 0;
    color: #d9b97c;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-team__bio {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-panels {
    position: relative;
    padding: 90px 0;
    background: #f8f8f8;
}

.contact-panels__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    background: #fff;
    box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.contact-panels__photo {
    min-height: 420px;
    background-size: cover;
    background-position: center;
}

.contact-panels__card {
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.contact-panels__title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin: 0 0 6px;
}

.contact-panels__text {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-panels__list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.contact-panels__list li {
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-panels__list li span {
    font-weight: 400;
    color: #4a4a4a;
}

.contact-quick {
    padding: 80px 0;
}

.contact-quick__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.contact-quick__card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 26px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.contact-quick__title {
    font-family: var(--font-serif);
    margin: 0 0 10px;
    font-size: 1.4rem;
}

.contact-quick__text {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-map {
    padding: 90px 0;
    background: #fff;
}

.contact-map__frame {
    width: 100%;
    min-height: 380px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    background: radial-gradient(circle at 30% 30%, rgba(217,185,124,0.15), transparent 40%), linear-gradient(135deg, #fafafa 0%, #f1f1f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    text-align: center;
    padding: 40px;
}

/* Rules modal */
.rules-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.rules-modal.active {
    display: flex;
}

.rules-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.rules-modal__dialog {
    position: relative;
    z-index: 1;
    max-width: 860px;
    width: 90%;
    max-height: 80vh;
    background: #0f0f0f;
    color: #f5f5f5;
    padding: 36px 32px;
    box-shadow: 0 20px 44px rgba(0,0,0,0.35);
    overflow: hidden;
    border: 1px solid rgba(217,185,124,0.25);
}

.rules-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: #f5f5f5;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rules-modal__close:hover {
    background: rgba(217,185,124,0.2);
    border-color: rgba(217,185,124,0.4);
}

.rules-modal__title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin: 0 0 18px;
}

.rules-modal__content {
    max-height: 65vh;
    overflow-y: auto;
    padding-right: 6px;
}

.rules-modal__content p {
    margin: 0 0 14px;
    line-height: 1.7;
}

.rules-modal__content strong {
    color: #d9b97c;
}

@media (max-width: 991px) {
    .contact-panels__grid {
        grid-template-columns: 1fr;
    }

    .contact-panels__photo {
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .contact-panels__card {
        padding: 36px 28px;
    }

    .contact-panels__title {
        font-size: 1.9rem;
    }
}

.about-list {
    padding-left: 18px;
    margin: 10px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.about-card__thumb {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    margin-bottom: 10px;
}

@media (max-width: 767.98px) {
    .about-section { padding: 40px 0; }
}
.kitchen-feature {
    margin-bottom: 18px;
}

.kitchen-feature__title {
    margin: 0 0 6px;
    font-size: 18px;
}

.kitchen-feature__text {
    margin: 0;
    color: #666;
}

.kitchen-tech__image {
    width: 100%;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

@media (max-width: 767.98px) {
    .kitchen-section {
        padding: 40px 0;
    }
}
/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #1b1b1b;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 2500;
}

.back-to-top:hover {
    transform: translateY(-2px);
    background: #d9b97c;
    color: #1b1b1b;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 575.98px) {
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
.banner-split {
    background: #f5f5f5;
}

.banner-split__image {
    height: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}

.banner-split__content {
    background: #f5f5f5;
    padding: 40px 30px;
    
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-split__content .banner-tc-fw__content {
    max-width: 520px;
    margin: 0 auto;
}

.banner-split__content .banner-tc-fw__content--title {
    font-size: 3.2rem;
    line-height: 1.2;
    font-family: var(--font-serif);
    font-weight: 700;
}

.banner-split__content .banner-tc-fw__content--text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: var(--font-sans);
    font-weight: 400;
}

.banner-split .row {
    min-height: 100vh;
}

.banner-split {
    background: #f5f5f5;
}

.banner-split__image {
    height: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}

.banner-split__content {
    background: #f5f5f5;
    padding: 40px 30px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-split__content .banner-tc-fw__content {
    max-width: 520px;
    margin: 0 auto;
}

.banner-split__content .banner-tc-fw__content--title {
    font-size: 3.2rem;
    line-height: 1.2;
    font-family: var(--font-serif);
    font-weight: 700;
}

.banner-split__content .banner-tc-fw__content--text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: var(--font-sans);
    font-weight: 400;
}

.banner-split .row {
    min-height: 100vh;
}

/* ============================================
   INDEX.PHP STYLES (from index.css)
   Стили для главной страницы
   ============================================ */

.hero-beer {
    margin-bottom: 0;
}

.hero-food {
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 900px;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-food__left {
    background-size: cover;
    background-position: center;
    min-height: 900px;
}

.hero-food__right {
    background: #c9a56b;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 240px 90px 140px 90px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

.hero-food__photo {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 540px;
    height: 360px;
    box-shadow: 0 20px 44px rgba(0,0,0,0.28);
    overflow: hidden;
}

.hero-food__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-food__body {
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.hero-food__icon {
    margin-top: 8px;
}

.hero-food__title {
    font-size: 2.6rem;
    margin-bottom: 8px;
}

.hero-food__text {
    line-height: 1.8;
}

.hero-food__cta {
    margin-top: 18px;
}

@media (max-width: 1199.98px) {
    .hero-food {
        grid-template-columns: 55% 45%;
        margin-top: -60px;
        padding-top: 60px;
        min-height: 820px;
    }

    .hero-food__right {
        padding: 220px 70px 120px 70px;
    }

    .hero-food__photo {
        top: -140px;
        height: 320px;
        max-width: 520px;
    }
}

@media (max-width: 991.98px) {
    .hero-food {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding-top: 0;
        min-height: auto;
    }

    .hero-food__left {
        min-height: 360px;
    }

    .hero-food__right {
        padding: 160px 30px 90px 30px;
    }

    .hero-food__photo {
        top: -100px;
        height: 240px;
        max-width: 100%;
    }

    .hero-food__body {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .hero-food__right {
        padding: 120px 20px 70px 20px;
    }

    .hero-food__photo {
        top: -80px;
        height: 200px;
    }
}
/* Strip styles for #banner-fixedBG-6 */
#banner-fixedBG-6, #banner-fixedBG-6 * {
    background: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    animation: none !important;
}
#banner-fixedBG-6 img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}
#banner-fixedBG-6 .btn {
    background: transparent !important;
    color: inherit !important;
    border: none !important;
    padding: 0 !important;
}

/* Synced from main.css (shared sections) */
/* ============= ОСНОВНЫЕ СТИЛИ ДЛЯ FOOD SPLIT ============= */
.banner-food-split {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.banner-food-split__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-food-split__content {
    position: absolute;
    top: 0;
    right: 6%;
    width: 42%;
    max-width: 640px;
    background: #d4b896;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 200px 60px 100px 60px;
    z-index: 2;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    overflow: visible;
}
.banner-food-feature__photo {
    width: 100%;
    max-width: none;
    display: block;
    position: absolute;
    top: -20px;
    left: 0;
    transform: none;
    z-index: 3;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.banner-food-feature__photo img {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.banner-food-feature__body {
    padding: 0 60px 80px 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.banner-food-feature__icon {
    margin-bottom: 35px;
}

.banner-food-feature__icon img {
    width: 60px;
    height: auto;
}

.banner-food-feature__title {
    font-size: 2.8rem;
    margin-bottom: 35px;
    font-weight: bold;
    line-height: 1.2;
}

.banner-food-feature__text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #333;
}

.banner-food-feature__cta {
    margin-top: 20px;
}

/* ============= INDEX PAGE - HERO FOOD CUSTOM ============= */
.hero-food-index {
    margin-top: -280px;
    padding-top: 280px;
}

.hero-food-index .banner-food-split__content {    position: absolute;    top: 140px;    right: 6%;    width: 44%;    max-width: 620px;    background: #c9a56b;    box-shadow: 0 18px 40px rgba(0,0,0,0.22);    padding: 70px 60px 80px;    display: flex;    flex-direction: column;    gap: 24px;    z-index: 2;}

.hero-food-index .banner-food-feature__photo {
    top: -70px;
    height: 280px;
}

.hero-food-index .banner-food-feature__photo img {    width: 100%;    height: 280px;    object-fit: cover;}

.hero-food-index .banner-food-feature__body {
    padding: 0 70px 80px 70px;
    gap: 20px;
}

.hero-food-index .banner-food-feature__icon {
    margin-top: 10px;
}

@media (max-width: 1199.98px) {
    .hero-food-index {
        margin-top: -200px;
        padding-top: 200px;
    }

    .hero-food-index .banner-food-split__content {    position: absolute;    top: 140px;    right: 6%;    width: 44%;    max-width: 620px;    background: #c9a56b;    box-shadow: 0 18px 40px rgba(0,0,0,0.22);    padding: 70px 60px 80px;    display: flex;    flex-direction: column;    gap: 24px;    z-index: 2;}

    .hero-food-index .banner-food-feature__photo {
        top: -50px;
        height: 240px;
    }

    .hero-food-index .banner-food-feature__photo img {    width: 100%;    height: 280px;    object-fit: cover;}
}

@media (max-width: 991.98px) {
    .hero-food-index {
        margin-top: 0;
        padding-top: 0;
    }

    .hero-food-index .banner-food-split__content,
    .hero-food-index .banner-food-feature__body {
        padding: 30px 20px 40px 20px;
    }

    .hero-food-index .banner-food-feature__photo,
    .hero-food-index .banner-food-feature__photo img {    width: 100%;    height: 280px;    object-fit: cover;}
}

/* ============= АДАПТИВ ============= */
@media (max-width: 1199.98px) {
    .banner-food-split {
        min-height: 650px;
    }
    
    .banner-food-split__content {
        right: 4%;
        width: 46%;
        max-width: 600px;
    }

    .banner-food-feature__photo {
        width: 100%;
        max-width: none;
        margin: 0 auto 24px auto;
    }

    .banner-food-feature__body {
        padding: 90px 50px 70px 50px;
    }
}

@media (max-width: 991.98px) {
    .banner-food-split {
        flex-direction: column;
        min-height: auto;
    }
    
    .banner-food-split__image {
        position: relative;
        right: 0;
        width: 100%;
        min-height: 360px;
    }
    
    .banner-food-split__content {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        box-shadow: none;
        position: relative;
        top: 0;
        right: 0;
        padding: 0 0 20px 0;
    }
    
    .banner-food-feature__photo {
        width: 100%;
        margin-left: 0;
        height: auto;
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        margin: 20px 0;
    }
    
    .banner-food-feature__body {
        padding: 30px 20px 40px 20px;
    }
    
    .banner-food-feature__title {
        font-size: 2.3rem;
    }
}

@media (max-width: 767.98px) {
    .banner-food-split__image {
        min-height: 280px;
    }
    
    .banner-food-feature__body {
        padding: 30px 20px;
    }
    
    .banner-food-feature__title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .banner-food-feature__body {
        padding: 28px 18px;
    }
}

/* ============= СТАРЫЕ СТИЛИ BANNER-SPLIT ============= */
@media (max-width: 991.98px) {
    .banner-split__image {
        min-height: 320px;
    }
    .banner-split__content {
        padding: 40px 20px;
        min-height: auto;
        align-items: flex-start;
    }

    .banner-split__content .banner-tc-fw__content--title {
        font-size: 2.6rem;
    }

    .banner-split__content .banner-tc-fw__content--text {
        font-size: 1rem;
        font-weight: 400;
    }
}

@media (max-width: 1199.98px) {
    .banner-food-feature {
        min-height: 85vh;
    }
}

@media (max-width: 991.98px) {
    .banner-food-split {
        flex-direction: column;
    }
    .banner-food-split__image,
    .banner-food-feature .banner-food-split__image {
        flex: 0 0 auto;
        width: 100%;
        min-height: 320px;
    }
    .banner-food-split__content {
        flex: 0 0 auto;
        width: 100%;
        padding: 30px 20px 40px;
        align-items: flex-start;
    }

    .banner-food-feature {
        min-height: auto;
    }

    .banner-food-feature .banner-food-split__image {
        min-height: 360px;
    }

    .banner-food-feature .banner-food-split__content {
        padding: 30px 20px 40px;
    }

    .banner-food-feature__photo {
        position: relative;
        width: 100%;
        max-width: 100%;
        transform: translateY(0);
        margin-bottom: 16px;
    }

    .banner-food-feature__body {
        padding: 0;
        max-width: none;
    }

    .banner-food-feature__title .title-border--line {
        font-size: 2.3rem;
    }
}

@media (max-width: 991.98px) {
    .banner-split__image {
        min-height: 320px;
    }
    .banner-split__content {
        padding: 40px 20px;
        min-height: auto;
        align-items: flex-start;
    }

    .banner-split__content .banner-tc-fw__content--title {
        font-size: 2.6rem;
    }

    .banner-split__content .banner-tc-fw__content--text {
        font-size: 1rem;
        font-weight: 400;
    }
}

@media (max-width: 575.98px) {
    .banner-food-feature .banner-food-split__image {
        min-height: 280px;
    }

    .banner-food-feature__photo {
        max-width: 100%;
        margin-bottom: 0;
    }

    .banner-food-feature .banner-food-split__content {
        padding: 28px 18px;
    }
}

@import url('index.css');
/* Override food hero layout to overlay card on right */
.banner-food-split {
    position: relative;
    display: flex;
    min-height: 80vh;
}

.banner-food-split__image {
    position: relative;
    flex: 1 1 60%;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
}

.banner-food-split__content {
    position: relative;
    flex: 0 0 40%;
    background: #c9a56b;
    padding: 40px 36px 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-left: -6%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

.banner-food-split__inner {
    max-width: 520px;
    width: 100%;
}

.banner-fixedBG__content--image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.banner-food-text {
    text-align: left;
}

@media (max-width: 991.98px) {
    .banner-food-split {
        flex-direction: column;
        min-height: auto;
    }
    .banner-food-split__image {
        flex: 0 0 auto;
        min-height: 320px;
    }
    .banner-food-split__content {
        flex: 0 0 auto;
        margin-left: 0;
        box-shadow: none;
        padding: 24px 20px 32px;
    }
    .banner-food-split__inner {
        max-width: none;
    }
}
/* Food hero overlay restore */
.hero-food-index {
    margin-top: 0;
    padding-top: 0;
}
.hero-food-index.banner-food-split {
    position: relative;
    min-height: 900px;
    overflow: hidden;
}
.hero-food-index .banner-food-split__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-food-index .banner-food-split__content {    position: absolute;    top: 140px;    right: 6%;    width: 44%;    max-width: 620px;    background: #c9a56b;    box-shadow: 0 18px 40px rgba(0,0,0,0.22);    padding: 70px 60px 80px;    display: flex;    flex-direction: column;    gap: 24px;    z-index: 2;}
.hero-food-index .banner-food-feature__photo {
    margin-bottom: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}
.hero-food-index .banner-food-feature__photo img {    width: 100%;    height: 280px;    object-fit: cover;}
.hero-food-index .banner-food-feature__icon {
    margin-bottom: 18px;
}
.hero-food-index .banner-food-feature__body {
    padding: 0;
    gap: 16px;
}
.hero-food-index .banner-food-feature__title .title-border--line {    font-size: 2.8rem;}
.hero-food-index .banner-food-feature__text {
    font-size: 1.05rem;
    line-height: 1.8;
}
.hero-food-index .banner-food-feature__cta {
    margin-top: 12px;
}
@media (max-width: 1199.98px) {
    .hero-food-index.banner-food-split { min-height: 760px; }
    .hero-food-index .banner-food-split__content {    position: absolute;    top: 140px;    right: 6%;    width: 44%;    max-width: 620px;    background: #c9a56b;    box-shadow: 0 18px 40px rgba(0,0,0,0.22);    padding: 70px 60px 80px;    display: flex;    flex-direction: column;    gap: 24px;    z-index: 2;}
    .hero-food-index .banner-food-feature__photo img {    width: 100%;    height: 280px;    object-fit: cover;}
}
@media (max-width: 991.98px) {
    .hero-food-index.banner-food-split {
        min-height: auto;
    }
    .hero-food-index .banner-food-split__image {
        position: relative;
        min-height: 360px;
    }
    .hero-food-index .banner-food-split__content {    position: absolute;    top: 140px;    right: 6%;    width: 44%;    max-width: 620px;    background: #c9a56b;    box-shadow: 0 18px 40px rgba(0,0,0,0.22);    padding: 70px 60px 80px;    display: flex;    flex-direction: column;    gap: 24px;    z-index: 2;}
    .hero-food-index .banner-food-feature__photo,
    .hero-food-index .banner-food-feature__photo img {    width: 100%;    height: 280px;    object-fit: cover;}
}
@media (max-width: 575.98px) {
    .hero-food-index .banner-food-feature__photo { margin-bottom: 16px; }
    .hero-food-index .banner-food-split__content {    position: absolute;    top: 140px;    right: 6%;    width: 44%;    max-width: 620px;    background: #c9a56b;    box-shadow: 0 18px 40px rgba(0,0,0,0.22);    padding: 70px 60px 80px;    display: flex;    flex-direction: column;    gap: 24px;    z-index: 2;}
    .hero-food-index .banner-food-feature__title .title-border--line {    font-size: 2.8rem;}
    .hero-food-index .banner-food-feature__text { font-size: 1rem; }
}
/* Food hero quick overrides */
.hero-food-index.banner-food-split { display: block; }
/* Final override for food hero layout */
.hero-food-index .banner-food-split__content {
    top: 200px;
    right: 5%;
    width: 40%;
    max-width: 560px;
    padding: 72px 56px 80px;
}
.hero-food-index .banner-food-feature__photo img {
    height: 240px;
}
.hero-food-index .banner-food-feature__title .title-border--line {
    font-size: 2.7rem;
}
@media (max-width: 1199.98px) {
    .hero-food-index .banner-food-split__content {
        top: 140px;
        right: 4%;
        width: 48%;
        max-width: 620px;
        padding: 60px 48px 70px;
    }
    .hero-food-index .banner-food-feature__photo img { height: 220px; }
}
@media (max-width: 991.98px) {
    .hero-food-index .banner-food-split__content {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: none;
        padding: 32px 22px 42px;
    }
    .hero-food-index .banner-food-feature__photo img { height: auto; }
}
/* Final layout fix for food hero overlay */
.hero-food-index.banner-food-split {
    position: relative;
    display: block;
    min-height: 900px;
    overflow: hidden;
}
.hero-food-index .banner-food-split__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-food-index .banner-food-split__content {
    position: absolute;
    top: 150px;
    right: 6%;
    left: auto;
    margin-left: 0;
    width: 42%;
    max-width: 620px;
    background: #c9a56b;
    padding: 70px 56px 80px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
}
.hero-food-index .banner-food-feature__photo {
    margin-bottom: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}
.hero-food-index .banner-food-feature__photo img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.hero-food-index .banner-food-feature__title .title-border--line {
    font-size: 2.7rem;
}
@media (max-width: 1199.98px) {
    .hero-food-index.banner-food-split { min-height: 760px; }
    .hero-food-index .banner-food-split__content {
        top: 120px;
        right: 4%;
        width: 48%;
        max-width: 640px;
        padding: 60px 48px 70px;
    }
    .hero-food-index .banner-food-feature__photo img { height: 220px; }
}
@media (max-width: 991.98px) {
    .hero-food-index.banner-food-split {
        min-height: auto;
    }
    .hero-food-index .banner-food-split__image {
        position: relative;
        min-height: 360px;
    }
    .hero-food-index .banner-food-split__content {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: none;
        padding: 32px 22px 42px;
        box-shadow: none;
    }
    .hero-food-index .banner-food-feature__photo,
    .hero-food-index .banner-food-feature__photo img {
        height: auto;
    }
}
/* Food hero card readability tweaks */
.hero-food-index .banner-food-feature__icon img {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 0 16px;
}
.hero-food-index .banner-food-feature__body,
.hero-food-index .banner-food-feature__text,
.hero-food-index .banner-food-split__content {
    color: #1c150c;
}
.hero-food-index .banner-food-feature__text {
    line-height: 1.9;
}
/* Final tweaks: show icon and improve readability */
.hero-food-index .banner-food-feature__icon {
    display: block;
    margin: 0 0 12px;
}
.hero-food-index .banner-food-feature__icon img {
    width: 60px;
    height: 60px;
    display: block;
}
.hero-food-index .banner-food-split__content,
.hero-food-index .banner-food-feature__body,
.hero-food-index .banner-food-feature__text {
    color: #2b2014;
}
/* Food hero: icon visibility & spacing */
.hero-food-index .banner-food-split__content {
    padding-top: 88px;
}
.hero-food-index .banner-food-feature__body {
    position: relative;
}
.hero-food-index .banner-food-feature__icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 16px;
}
.hero-food-index .banner-food-feature__icon img {
    width: 58px;
    height: 58px;
    opacity: 0.95;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
.hero-food-index .banner-food-feature__title {
    margin-top: 4px;
}
/* Food card icon and visual tweaks */
.hero-food-index .banner-food-feature__icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 20px;
}
.hero-food-index .banner-food-feature__icon img {
    width: 64px;
    height: 64px;
    opacity: 1;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.25));
}
.hero-food-index .banner-food-split__content {
    padding-top: 92px;
}
.hero-food-index .banner-food-feature__title {
    margin-top: 0;
}
.hero-food-index .banner-food-feature__body,
.hero-food-index .banner-food-feature__text,
.hero-food-index .banner-food-split__content {
    color: #24170c;
}
.hero-food-index .banner-food-split__content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0));
    pointer-events: none;
}
.hero-food-index .banner-food-split__content > * { position: relative; z-index: 1; }
/* Reset food hero layout to clean overlay */
.hero-food-index.banner-food-split {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 820px;
    overflow: hidden;
}
.hero-food-index .banner-food-split__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-food-index .banner-food-split__content {
    position: relative;
    z-index: 2;
    width: 42%;
    max-width: 620px;
    margin: 80px 6% 80px 0;
    padding: 60px 55px 70px;
    background: #c9a56b;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.hero-food-index .banner-food-split__content::after { display: none; }
.hero-food-index .banner-food-feature__photo {
    width: calc(100% + 110px);
    margin: -40px -55px 26px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.hero-food-index .banner-food-feature__photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.hero-food-index .banner-food-feature__icon {
    display: flex;
    align-items: center;
    margin: 0 0 18px;
}
.hero-food-index .banner-food-feature__icon img {
    width: 60px;
    height: 60px;
    opacity: 1;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2));
}
.hero-food-index .banner-food-feature__title,
.hero-food-index .banner-food-feature__body,
.hero-food-index .banner-food-feature__text,
.hero-food-index .banner-food-split__content {
    color: #24170c;
}
@media (max-width: 1199.98px) {
    .hero-food-index .banner-food-split__content {
        width: 48%;
        max-width: 640px;
        margin: 60px 4% 60px 0;
        padding: 50px 46px 60px;
    }
    .hero-food-index .banner-food-feature__photo {
        width: calc(100% + 92px);
        margin: -32px -46px 22px;
    }
}
@media (max-width: 991.98px) {
    .hero-food-index.banner-food-split {
        display: block;
        min-height: auto;
    }
    .hero-food-index .banner-food-split__image { position: relative; min-height: 340px; }
    .hero-food-index .banner-food-split__content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 32px 22px 42px;
        box-shadow: none;
    }
    .hero-food-index .banner-food-feature__photo {
        width: 100%;
        margin: 0 0 18px;
    }
}
/* Final size tweak for food hero card */
.hero-food-index.banner-food-split {
    min-height: 740px;
}
.hero-food-index .banner-food-split__content {
    width: 38%;
    max-width: 540px;
    margin: 60px 5% 60px 0;
    padding: 48px 44px 56px;
}
.hero-food-index .banner-food-feature__photo {
    width: calc(100% + 70px);
    margin: -28px -35px 18px;
}
@media (max-width: 1199.98px) {
    .hero-food-index .banner-food-split__content {
        width: 46%;
        max-width: 560px;
        margin: 50px 4% 50px 0;
        padding: 44px 40px 52px;
    }
    .hero-food-index .banner-food-feature__photo {
        width: calc(100% + 60px);
        margin: -24px -30px 16px;
    }
}
/* Reset food hero to stable layout */
.hero-food-index.banner-food-split {
    position: relative;
    display: block;
    min-height: 820px;
    overflow: hidden;
}
.hero-food-index .banner-food-split__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-food-index .banner-food-split__content {
    position: absolute;
    top: 80px;
    right: 5%;
    width: 44%;
    max-width: 650px;
    padding: 60px 60px 70px;
    margin: 0;
    background: #c9a56b;
    box-shadow: 0 16px 30px rgba(0,0,0,0.18);
    z-index: 2;
    color: #24170c;
}
.hero-food-index .banner-food-feature__photo {
    width: 100%;
    margin: 0 0 24px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.hero-food-index .banner-food-feature__photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.hero-food-index .banner-food-feature__icon {
    display: flex;
    align-items: center;
    margin: 0 0 16px;
}
.hero-food-index .banner-food-feature__icon img {
    width: 58px;
    height: 58px;
    display: block;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2));
}
.hero-food-index .banner-food-feature__title,
.hero-food-index .banner-food-feature__body,
.hero-food-index .banner-food-feature__text,
.hero-food-index .banner-food-split__content {
    color: #24170c;
}
.hero-food-index .banner-food-feature__text { line-height: 1.8; }
@media (max-width: 1199.98px) {
    .hero-food-index .banner-food-split__content {
        width: 48%;
        max-width: 620px;
        top: 60px;
        right: 4%;
        padding: 50px 50px 60px;
    }
}
@media (max-width: 991.98px) {
    .hero-food-index.banner-food-split {
        min-height: auto;
    }
    .hero-food-index .banner-food-split__image {
        position: relative;
        min-height: 340px;
    }
    .hero-food-index .banner-food-split__content {
        position: relative;
        width: 100%;
        max-width: none;
        top: 0;
        right: 0;
        padding: 32px 22px 42px;
        box-shadow: none;
    }
    .hero-food-index .banner-food-feature__photo {
        margin: 0 0 18px;
    }
}
/* Restore stable food hero layout */
.hero-food-index.banner-food-split {
    position: relative;
    display: block;
    min-height: 900px;
    overflow: hidden;
}
.hero-food-index .banner-food-split__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-food-index .banner-food-split__content {
    position: absolute;
    top: 120px;
    right: 5%;
    width: 44%;
    max-width: 650px;
    padding: 64px 60px 72px;
    margin: 0;
    background: #c9a56b;
    box-shadow: 0 16px 32px rgba(0,0,0,0.18);
    z-index: 2;
    color: #23160e;
}
.hero-food-index .banner-food-split__content::after { display: none; }
.hero-food-index .banner-food-feature__photo {
    width: 100%;
    margin: 0 0 26px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.hero-food-index .banner-food-feature__photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.hero-food-index .banner-food-feature__icon {
    display: flex;
    align-items: center;
    margin: 0 0 18px;
}
.hero-food-index .banner-food-feature__icon img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2));
    opacity: 1;
}
.hero-food-index .banner-food-feature__title,
.hero-food-index .banner-food-feature__body,
.hero-food-index .banner-food-feature__text,
.hero-food-index .banner-food-split__content {
    color: #23160e;
}
.hero-food-index .banner-food-feature__text { line-height: 1.8; }
@media (max-width: 1199.98px) {
    .hero-food-index .banner-food-split__content {
        top: 90px;
        right: 4%;
        width: 48%;
        max-width: 620px;
        padding: 52px 50px 64px;
    }
}
@media (max-width: 991.98px) {
    .hero-food-index.banner-food-split { min-height: auto; }
    .hero-food-index .banner-food-split__image {
        position: relative;
        min-height: 340px;
    }
    .hero-food-index .banner-food-split__content {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: none;
        padding: 32px 22px 42px;
        box-shadow: none;
    }
    .hero-food-index .banner-food-feature__photo { margin: 0 0 18px; }
}
/* Final restore: simple overlay card for food hero */
.hero-food-index.banner-food-split {
    position: relative;
    display: block;
    min-height: 860px;
    overflow: hidden;
}
.hero-food-index .banner-food-split__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-food-index .banner-food-split__content {
    position: absolute;
    top: 110px;
    right: 6%;
    width: 44%;
    max-width: 640px;
    padding: 58px 56px 68px;
    margin: 0;
    background: #c9a56b;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    z-index: 2;
    color: #23160e;
}
.hero-food-index .banner-food-split__content::after { display: none; }
.hero-food-index .banner-food-feature__photo { margin: 0 0 22px; box-shadow: 0 10px 22px rgba(0,0,0,0.14); }
.hero-food-index .banner-food-feature__photo img { width: 100%; height: auto; object-fit: cover; }
.hero-food-index .banner-food-feature__icon { display: flex; align-items: center; margin: 0 0 16px; }
.hero-food-index .banner-food-feature__icon img { width: 58px; height: 58px; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2)); }
.hero-food-index .banner-food-feature__title,
.hero-food-index .banner-food-feature__body,
.hero-food-index .banner-food-feature__text,
.hero-food-index .banner-food-split__content { color: #23160e; }
.hero-food-index .banner-food-feature__text,
.hero-food-index .banner-fixedBG__content__grid--text { font-family: var(--font-sans); font-size: 1.05rem; line-height: 1.8; }
@media (max-width: 1199.98px) {
    .hero-food-index .banner-food-split__content { width: 48%; right: 4%; max-width: 600px; padding: 50px 48px 60px; top: 90px; }
}
@media (max-width: 991.98px) {
    .hero-food-index.banner-food-split { min-height: auto; }
    .hero-food-index .banner-food-split__image { position: relative; min-height: 340px; }
    .hero-food-index .banner-food-split__content { position: relative; width: 100%; max-width: none; right: 0; top: 0; padding: 32px 22px 42px; box-shadow: none; }
    .hero-food-index .banner-food-feature__photo { margin: 0 0 18px; }
}
/* Clean final override for food hero */
.hero-food-index.banner-food-split {
    position: relative;
    display: block;
    min-height: 820px;
    overflow: hidden;
}
.hero-food-index .banner-food-split__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-food-index .banner-food-split__content {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 620px;
    padding: 56px 54px 64px;
    background: #c9a56b;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    z-index: 2;
    color: #23160e;
}
.hero-food-index .banner-food-split__content::after { display: none; }
.hero-food-index .banner-food-feature__photo { margin: 0 0 22px; box-shadow: 0 10px 22px rgba(0,0,0,0.14); }
.hero-food-index .banner-food-feature__photo img { width: 100%; height: auto; object-fit: cover; }
.hero-food-index .banner-food-feature__icon { display: flex; align-items: center; margin: 0 0 16px; }
.hero-food-index .banner-food-feature__icon img { width: 58px; height: 58px; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2)); }
.hero-food-index .banner-food-feature__title,
.hero-food-index .banner-food-feature__body,
.hero-food-index .banner-food-feature__text,
.hero-food-index .banner-food-split__content { color: #23160e; }
.hero-food-index .banner-food-feature__text { font-family: var(--font-sans); font-size: 1.05rem; line-height: 1.8; }
@media (max-width: 1199.98px) {
    .hero-food-index .banner-food-split__content {
        width: 46%;
        right: 4%;
        padding: 50px 48px 60px;
        transform: translateY(-50%);
    }
}
@media (max-width: 991.98px) {
    .hero-food-index.banner-food-split { min-height: auto; }
    .hero-food-index .banner-food-split__image { position: relative; min-height: 340px; }
    .hero-food-index .banner-food-split__content {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-width: none;
        padding: 32px 22px 42px;
        box-shadow: none;
    }
    .hero-food-index .banner-food-feature__photo { margin: 0 0 18px; box-shadow: none; }
}
/* Final tidy: align photo and CTA in food hero */
.hero-food-index .banner-food-split__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 58px 54px 68px;
}
.hero-food-index .banner-food-feature__photo {
    width: 100%;
    margin: 0 0 20px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}
.hero-food-index .banner-food-feature__photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.hero-food-index .banner-food-feature__icon { margin: 0 0 10px; }
.hero-food-index .banner-fixedBG__content__grid__button { margin-top: 12px; align-self: flex-start; }
@media (max-width: 1199.98px) {
    .hero-food-index .banner-food-split__content { padding: 52px 48px 62px; }
}
@media (max-width: 991.98px) {
    .hero-food-index .banner-food-split__content { padding: 32px 22px 42px; }
}
/* Final clamp: food card photo and CTA alignment */
.hero-food-index .banner-food-feature__photo {
    width: 100%;
    max-height: 260px;
    overflow: hidden;
    margin: 0 0 20px !important;
}
.hero-food-index .banner-food-feature__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-food-index .banner-fixedBG__content__grid__button,
.hero-food-index .banner-food-feature__body .banner-fixedBG__content__grid__button {
    margin-top: 24px !important;
    align-self: flex-start;
}
/* Final adjust: full-width toast image, card overlap, visible CTA */
.hero-food-index.banner-food-split {
    min-height: 900px;
}
.hero-food-index .banner-food-split__content {
    position: absolute;
    top: -30px;
    right: 5%;
    transform: none;
    width: 44%;
    max-width: 640px;
    padding: 60px 60px 80px;
    background: #c9a56b;
    box-shadow: 0 16px 32px rgba(0,0,0,0.18);
    z-index: 2;
}
.hero-food-index .banner-food-feature__photo {
    width: calc(100% + 120px);
    max-width: none;
    margin: -40px -60px 24px;
    max-height: none !important;
    overflow: visible;
}
.hero-food-index .banner-food-feature__photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-food-index .banner-fixedBG__content__grid__button,
.hero-food-index .banner-food-feature__body .banner-fixedBG__content__grid__button {
    margin-top: 28px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1199.98px) {
    .hero-food-index .banner-food-split__content {
        top: -20px;
        right: 4%;
        width: 48%;
        max-width: 600px;
        padding: 52px 50px 72px;
    }
    .hero-food-index .banner-food-feature__photo {
        width: calc(100% + 100px);
        margin: -32px -50px 22px;
    }
}
@media (max-width: 991.98px) {
    .hero-food-index .banner-food-split__content {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: none;
        padding: 32px 22px 42px;
        box-shadow: none;
    }
    .hero-food-index .banner-food-feature__photo {
        width: 100%;
        margin: 0 0 18px;
    }
}
/* === Food hero final layout reset === */
.hero-food-index.banner-food-split {
    position: relative !important;
    display: block !important;
    min-height: 840px !important;
    overflow: hidden !important;
}
.hero-food-index .banner-food-split__image {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    z-index: 1 !important;
}
.hero-food-index .banner-food-split__content {
    position: absolute !important;
    top: -40px !important;
    right: 6% !important;
    width: 46% !important;
    max-width: 680px !important;
    padding: 50px 52px 68px !important;
    background: #c9a56b !important;
    box-shadow: 0 16px 30px rgba(0,0,0,0.18) !important;
    z-index: 2 !important;
    transform: none !important;
    color: #23160e !important;
}
.hero-food-index .banner-food-feature__photo {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 22px !important;
    box-shadow: 0 10px 22px rgba(0,0,0,0.14) !important;
    overflow: hidden !important;
}
.hero-food-index .banner-food-feature__photo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
}
.hero-food-index .banner-food-feature__icon {
    display: flex !important;
    align-items: center !important;
    margin: 0 0 16px !important;
}
.hero-food-index .banner-food-feature__icon img {
    width: 58px !important;
    height: 58px !important;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2)) !important;
}
.hero-food-index .banner-fixedBG__content__grid__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 24px !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
}
.hero-food-index .banner-food-feature__title,
.hero-food-index .banner-food-feature__body,
.hero-food-index .banner-food-feature__text,
.hero-food-index .banner-food-split__content {
    color: #23160e !important;
}
.hero-food-index .banner-food-feature__text { line-height: 1.8 !important; }
@media (max-width: 1199.98px) {
    .hero-food-index .banner-food-split__content {
        top: -24px !important;
        right: 4% !important;
        width: 52% !important;
        max-width: 640px !important;
        padding: 44px 46px 60px !important;
    }
}
@media (max-width: 991.98px) {
    .hero-food-index.banner-food-split { min-height: auto !important; }
    .hero-food-index .banner-food-split__image { position: relative !important; min-height: 340px !important; }
    .hero-food-index .banner-food-split__content {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        padding: 32px 22px 42px !important;
        box-shadow: none !important;
    }
    .hero-food-index .banner-food-feature__photo { width: 100% !important; margin: 0 0 18px !important; }
}
/* === Food hero final cleanup === */
.hero-food-index.banner-food-split {
    position: relative !important;
    display: block !important;
    min-height: 900px !important;
    overflow: visible !important;
}
.hero-food-index .banner-food-split__image {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    z-index: 1 !important;
}
.hero-food-index .banner-food-split__content {
    position: absolute !important;
    top: -32px !important;
    right: 5% !important;
    width: 44% !important;
    max-width: 640px !important;
    padding: 56px 52px 70px !important;
    background: #c9a56b !important;
    box-shadow: 0 16px 32px rgba(0,0,0,0.18) !important;
    z-index: 2 !important;
    color: #23160e !important;
}
.hero-food-index .banner-food-feature__photo {
    width: calc(100% + 104px) !important;
    margin: -40px -52px 24px !important;
    max-width: none !important;
    box-shadow: 0 10px 22px rgba(0,0,0,0.14) !important;
}
.hero-food-index .banner-food-feature__photo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
}
.hero-food-index .banner-food-feature__icon { margin: 0 0 14px !important; }
.hero-food-index .banner-food-feature__icon img { width: 58px !important; height: 58px !important; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2)) !important; }
.hero-food-index .banner-fixedBG__content__grid__button { margin-top: 26px !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; padding-left: 32px !important; padding-right: 32px !important; }
.hero-food-index .banner-food-feature__title,
.hero-food-index .banner-food-feature__body,
.hero-food-index .banner-food-feature__text,
.hero-food-index .banner-food-split__content { color: #23160e !important; }
.hero-food-index .banner-food-feature__text { font-family: var(--font-sans) !important; font-size: 1.05rem !important; line-height: 1.8 !important; }
@media (max-width: 1199.98px) {
    .hero-food-index .banner-food-split__content {
        top: -24px !important;
        right: 4% !important;
        width: 52% !important;
        max-width: 600px !important;
        padding: 50px 48px 64px !important;
    }
    .hero-food-index .banner-food-feature__photo { width: calc(100% + 96px) !important; margin: -32px -48px 22px !important; }
}
@media (max-width: 991.98px) {
    .hero-food-index .banner-food-split__content {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        padding: 32px 22px 42px !important;
        box-shadow: none !important;
    }
    .hero-food-index .banner-food-feature__photo { width: 100% !important; margin: 0 0 18px !important; }
}
/* Reset styles for the interior section (#banner-fixedBG-6) */
#banner-fixedBG-6 {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}
#banner-fixedBG-6 .banner-fixedBG__content {
    background: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    animation: none !important;
}
#banner-fixedBG-6 .banner-fixedBG__content--image img,
#banner-fixedBG-6 .banner-fixedBG__content--image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-shadow: none !important;
}
#banner-fixedBG-6 .banner-fixedBG__content__grid {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}
#banner-fixedBG-6 .banner-fixedBG__content__grid--icon,
#banner-fixedBG-6 .banner-fixedBG__content__grid--title,
#banner-fixedBG-6 .banner-fixedBG__content__grid--text,
#banner-fixedBG-6 .banner-fixedBG__content__grid__button {
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}
#banner-fixedBG-6 .banner-fixedBG__content__grid__button .btn {
    background: transparent !important;
    color: inherit !important;
    border: none !important;
    box-shadow: none !important;
}
/* Strip styles for #banner-fixedBG-6 */
#banner-fixedBG-6, #banner-fixedBG-6 * {
    background: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    animation: none !important;
}
#banner-fixedBG-6 img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}
#banner-fixedBG-6 .btn {
    background: transparent !important;
    color: inherit !important;
    border: none !important;
    padding: 0 !important;
}
/* Header menu hover underline */
.nav-menu__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d9b97c;
    transition: width 0.3s ease;
}

.nav-menu__link:hover::after {
    width: 100%;
}

.nav-menu__link:hover {
    color: #d9b97c;
}

/* Menu Item - Has Megamenu */
.menu-item-has-megamenu > a {
    position: relative;
}

/* ============================================
   GLightbox overrides (full menu image sizing)
   ============================================ */
.glightbox-container .ginner-container,
.glightbox-container .gslide-media {
    max-width: 95vw !important;
    max-height: 90vh !important;
}

.glightbox-container .gslide-media {
    overflow: auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
}

.glightbox-container .gslide-image img {
    max-width: 95vw !important;
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
}

.glightbox-container .gslide-inner-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


