:root {
            --chocolate: #4B2E1E;
            --caramel: #CDA676;
            --milk-white: #FAF6F2;
            --light-caramel: #E8D4B9;
            --dark-brown: #3A2418;
            --gold: #D4AF37;
            --shadow-sm: 0 2px 8px rgba(75, 46, 30, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 30px rgba(75, 46, 30, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 20px 60px rgba(75, 46, 30, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
            --shadow-glow: 0 0 40px rgba(205, 166, 118, 0.15);
            --glass-bg: rgba(250, 246, 242, 0.65);
            --glass-border: rgba(205, 166, 118, 0.18);
            --transition-premium: cubic-bezier(0.23, 1, 0.32, 1);
            --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #E8C874 50%, #D4AF37 100%);
            --gradient-divider: linear-gradient(90deg, transparent, rgba(205, 166, 118, 0.4), var(--caramel), rgba(205, 166, 118, 0.4), transparent);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--milk-white);
            color: var(--chocolate);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-image:
                radial-gradient(circle at 12% 18%, rgba(236, 198, 210, 0.14) 0%, transparent 28%),
                radial-gradient(circle at 88% 78%, rgba(186, 218, 188, 0.12) 0%, transparent 30%),
                radial-gradient(circle at 50% 50%, rgba(205, 166, 118, 0.06) 0%, transparent 52%);
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: transparent;
            color: var(--milk-white);
            position: fixed;
            width: 100%;
            height: 100px;
            z-index: 1000;
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
            transition: all 0.5s var(--transition-premium);
        }

        header.scrolled {
            background-color: rgba(58, 36, 24, 0.92);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(205, 166, 118, 0.1);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        /* Меню строго по центру шапки, логотип слева, язык справа */
        .header-container > nav {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--caramel);
            display: flex;
            flex-direction: column;
            line-height: 1;
            position: relative;
            bottom: 25px;

        }

        .logo::after {
            display: none;
            content: '';
        }

        .logo span {
            font-size: 12px;
            letter-spacing: 4px;
            margin-top: 3px;
            color: var(--milk-white);
            text-transform: uppercase;
        }

        .logo img.logo-img {
            display: block;
            height: 150px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
            -webkit-filter: brightness(0) invert(1);
        }

        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
            position: relative;
            bottom: 25px;
        }

        nav li {
            margin-left: 40px;
            position: relative;
        }

        nav a {
            color: var(--milk-white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            padding: 5px 0;
        }

        nav a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--caramel);
            transition: width 0.3s;
        }

        nav a:hover::before {
            width: 100%;
        }

        .cart-icon {
            position: relative;
            cursor: pointer;
            color: var(--milk-white);
            font-size: 24px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }

        .cart-icon img.cart-img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            display: inline-block;
            margin-right: 8px;
            vertical-align: middle;
            filter: brightness(0) invert(1);
        }

        .cart-icon:hover {
            color: var(--caramel);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--caramel);
            color: var(--milk-white);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .cart-count.pop {
            animation: pop 0.3s ease;
        }

        .lang-select {
            background: rgba(255, 255, 255, 0.06);
            color: var(--milk-white);
            border: 1.5px solid rgba(255, 255, 255, 0.45);
            border-radius: 24px;
            padding: 6px 14px;
            font-size: 0.9rem;
            margin-left: 18px;
            outline: none;
            height: 36px;
            line-height: 36px;
            position: relative;
            bottom: 25px;
            /* выравнивание по навигации */
            backdrop-filter: blur(4px);
            transition: border-color 0.2s, background 0.2s;
        }

        .lang-select:hover {
            border-color: var(--caramel);
            background: rgba(255, 255, 255, 0.1);
        }

        .lang-select option {
            background-color: #FAF6F2;
            color: var(--chocolate);
        }

        .lang-select option:checked {
            background-color: var(--caramel);
            color: var(--milk-white);
        }

        #langSelect {
            display: none !important;
        }

        .lang-switch {
            position: relative;
            display: inline-block;
            margin-left: 18px;
            bottom: 25px;
            /* выравнивание по навигации (логотип 150px растягивает контейнер) */
        }

        .lang-switch-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            height: 38px;
            padding: 0 14px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--milk-white);
            border: 1.5px solid rgba(255, 255, 255, 0.45);
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: border-color 0.25s ease, background 0.25s ease;
        }

        .lang-switch-btn:hover,
        .lang-switch.open .lang-switch-btn {
            border-color: var(--caramel);
            background: rgba(205, 166, 118, 0.14);
        }

        .lang-switch-chevron {
            width: 13px;
            height: 13px;
            transition: transform 0.25s ease;
        }

        .lang-switch.open .lang-switch-chevron {
            transform: rotate(180deg);
        }

        .lang-switch-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 120px;
            list-style: none;
            margin: 0;
            padding: 6px;
            background: var(--milk-white);
            border: 1px solid rgba(205, 166, 118, 0.35);
            border-radius: 14px;
            box-shadow: 0 14px 34px rgba(43, 29, 21, 0.28);
            opacity: 0;
            transform: translateY(-6px) scale(0.98);
            transform-origin: top right;
            pointer-events: none;
            transition: opacity 0.18s ease, transform 0.18s ease;
            z-index: 1600;
        }

        .lang-switch.open .lang-switch-menu {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        .lang-switch-menu li {
            display: flex;
            align-items: center;
            min-height: 42px;
            padding: 0 14px;
            border-radius: 9px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: var(--chocolate);
            cursor: pointer;
            transition: background 0.15s ease, color 0.15s ease;
        }

        .lang-switch-menu li:hover {
            background: rgba(205, 166, 118, 0.18);
        }

        .lang-switch-menu li[aria-selected="true"] {
            background: var(--caramel);
            color: var(--milk-white);
        }

        @media (prefers-reduced-motion: reduce) {

            .lang-switch-menu,
            .lang-switch-chevron {
                transition: none;
            }
        }

        @media (max-width: 768px) {
            .lang-switch {
                margin-left: auto;
                margin-right: 10px;
                bottom: auto;
            }

            .lang-switch-btn {
                height: 32px;
                padding: 0 12px;
                font-size: 0.8rem;
            }
        }

        .mobile-nav .lang-select {
            width: 100%;
            margin-bottom: 15px;
            position: static;
            bottom: auto;
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .cart-modal {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100vh;
            background-color: var(--milk-white);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 2000;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .cart-modal.active {
            right: 0;
        }

        .cart-header {
            padding: 20px;
            border-bottom: 1px solid var(--light-caramel);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-header h3 {
            margin: 0;
            color: var(--chocolate);
        }

        .close-cart {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--chocolate);
            transition: color 0.3s;
        }

        .close-cart:hover {
            color: var(--caramel);
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .cart-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--light-caramel);
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--chocolate);
        }

        .cart-item-price {
            color: var(--caramel);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .cart-item-controls {
            display: flex;
            align-items: center;
        }

        .quantity-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid var(--caramel);
            background: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--caramel);
            transition: all 0.3s;
        }

        .quantity-btn:hover {
            background-color: var(--caramel);
            color: var(--milk-white);
        }

        .quantity-display {
            margin: 0 10px;
            font-weight: 600;
            min-width: 20px;
            text-align: center;
        }

        .remove-item {
            margin-left: auto;
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            font-size: 18px;
            transition: color 0.3s;
        }

        .remove-item:hover {
            color: var(--chocolate);
        }

        .cart-footer {
            padding: 20px;
            border-top: 1px solid var(--light-caramel);
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--chocolate);
        }

        .cart-actions {
            display: flex;
            gap: 10px;
        }

        .clear-cart {
            flex: 1;
            background: none;
            border: 1px solid var(--chocolate);
            color: var(--chocolate);
            padding: 12px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .clear-cart:hover {
            background-color: var(--chocolate);
            color: var(--milk-white);
        }

        .checkout-btn {
            flex: 2;
            background: linear-gradient(135deg, var(--caramel), var(--gold));
            color: var(--milk-white);
            border: none;
            padding: 12px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(205, 166, 118, 0.4);
        }

        .empty-cart {
            text-align: center;
            padding: 40px 20px;
            color: #999;
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: var(--caramel);
            color: var(--milk-white);
            padding: 15px 20px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 3000;
            transform: translateX(150%);
            transition: transform 0.3s ease;
        }

        .notification.active {
            transform: translateX(0);
        }

        .keks-preloader {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0f0c0a;
            z-index: 10000;
            transition: opacity 0.6s ease, visibility 0.6s;
        }

        .keks-inner {
            text-align: center;
            color: rgba(250, 246, 242, 0.95);
        }

        .keks-brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: 72px;
            letter-spacing: 2px;
            margin: 0 0 6px;
            color: rgba(220, 220, 220, 0.95);
            font-weight: 700;
        }

        .keks-sub {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: rgba(220, 220, 220, 0.55);
            margin-bottom: 18px;
            letter-spacing: 4px;
        }

        .keks-dots {
            display: flex;
            gap: 10px;
            justify-content: center;
            align-items: center;
        }

        .keks-dots .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--caramel);
            opacity: 0.95;
            transform: translateY(0);
            animation: dot-pulse 1.2s infinite ease-in-out;
        }

        .keks-dots .dot:nth-child(1) {
            animation-delay: 0s;
        }

        .keks-dots .dot:nth-child(2) {
            animation-delay: 0.12s;
        }

        .keks-dots .dot:nth-child(3) {
            animation-delay: 0.24s;
        }

        @keyframes dot-pulse {
            0% {
                transform: translateY(0);
                opacity: 0.9;
            }

            50% {
                transform: translateY(-6px);
                opacity: 1;
            }

            100% {
                transform: translateY(0);
                opacity: 0.9;
            }
        }

        .keks-preloader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--milk-white);
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
            width: 30px;
            height: 30px;
            position: relative;
        }

        /* Нижняя таб-панель (мобильная навигация) */
        .bottom-nav {
            display: none;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            height: 64px;
            background: rgba(43, 29, 21, 0.96);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(205, 166, 118, 0.18);
            z-index: 900;
            padding-bottom: env(safe-area-inset-bottom, 0px);
        }

        .bottom-nav-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.5);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            white-space: nowrap;
            transition: color 0.2s ease;
            -webkit-tap-highlight-color: transparent;
        }

        .bottom-nav-item .bn-icon {
            width: 24px;
            height: 24px;
        }

        .bottom-nav-item.active {
            color: var(--caramel);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: var(--dark-brown);
            z-index: 1002;
            transition: right 0.4s ease;
            padding: 80px 30px 30px;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav li {
            margin-bottom: 20px;
        }

        .mobile-nav a {
            color: var(--milk-white);
            text-decoration: none;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }

        .mobile-nav a span.nav-icon {
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
        }

        .mobile-nav a span {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .mobile-nav a:hover {
            color: var(--caramel);
            padding-left: 10px;
        }

        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--milk-white);
            font-size: 28px;
            cursor: pointer;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
        }

        .overlay.active {
            display: block;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gradient-divider);
            z-index: 5;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(205, 166, 118, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(205, 166, 118, 0.2) 0%, transparent 50%),
                linear-gradient(135deg, var(--chocolate) 0%, var(--dark-brown) 100%);
            z-index: -3;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            pointer-events: none;
            filter: saturate(0.9) brightness(0.7);
        }


        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(10, 6, 4, 0.35), rgba(10, 6, 4, 0.45));
            z-index: -1;
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            text-align: center;
            color: var(--milk-white);
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2.8rem, 8vw, 5.5rem);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.5s;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
            position: relative;
            letter-spacing: 0.04em;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 2px;
            background: var(--gradient-gold);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }

        .hero p {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.8s;
            letter-spacing: 0.06em;
            font-weight: 300;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--caramel), var(--gold));
            color: var(--milk-white);
            padding: 16px 44px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 0.04em;
            transition: all 0.5s var(--transition-premium);
            border: none;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 1.1s;
            box-shadow: 0 6px 20px rgba(205, 166, 118, 0.35), 0 2px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
            transition: all 0.7s var(--transition-premium);
        }

        .btn::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent, rgba(255, 255, 255, 0.1));
            border-radius: 50px;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover::after {
            opacity: 1;
        }

        .btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 35px rgba(205, 166, 118, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
        }

        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-career-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: none;
            backdrop-filter: blur(10px);
        }

        .hero-career-btn:hover {
            background: rgba(255, 255, 255, 0.16);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background: var(--gradient-divider);
            opacity: 0.5;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title h2 {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            display: inline-block;
            position: relative;
            margin-bottom: 20px;
            letter-spacing: 0.02em;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background: var(--gradient-gold);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }

        .section-title p {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.15rem;
            color: #888;
            letter-spacing: 0.02em;
            line-height: 1.7;
        }

        .about {
            background-color: var(--milk-white);
            overflow: hidden;
        }

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

        .about-text {
            padding-right: 20px;
        }

        .about-text h3 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .about-text h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--caramel);
            bottom: -10px;
            left: 0;
        }

        .about-text p {
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .timeline {
            display: flex;
            flex-direction: column;
            margin-top: 40px;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 30px;
        }

        .timeline-year {
            font-weight: bold;
            color: var(--caramel);
            min-width: 80px;
            margin-right: 20px;
            font-size: 1.1rem;
        }

        .timeline-content {
            flex: 1;
        }

        .about-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg), var(--shadow-glow);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.7s var(--transition-premium);
        }

        .about-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            border: 1px solid rgba(205, 166, 118, 0.15);
            pointer-events: none;
        }

        .about-image:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 50px rgba(205, 166, 118, 0.12);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s var(--transition-premium);
        }

        .about-image:hover img {
            transform: scale(1.04);
        }

        .menu {
            background: linear-gradient(135deg, var(--light-caramel) 0%, var(--milk-white) 100%);
            position: relative;
            overflow: hidden;
        }

        .menu::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(205, 166, 118, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .menu-categories {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .category-btn {
            background: none;
            border: 2px solid var(--caramel);
            padding: 12px 30px;
            margin: 0 10px 10px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--chocolate);
            cursor: pointer;
            transition: all 0.4s;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .category-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--caramel), transparent);
            transition: all 0.6s;
            z-index: -1;
        }

        .category-btn.active,
        .category-btn:hover {
            color: var(--milk-white);
            background: var(--caramel);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(205, 166, 118, 0.4);
        }

        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .menu-item {
            background: var(--glass-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.5s var(--transition-premium);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            border: 1px solid var(--glass-border);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .menu-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .menu-item:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: var(--shadow-lg), 0 0 30px rgba(205, 166, 118, 0.1);
            border-color: rgba(205, 166, 118, 0.3);
        }

        .menu-item-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .menu-item-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.3));
        }

        .menu-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s var(--transition-premium);
        }

        .menu-item:hover .menu-item-image img {
            transform: scale(1.08);
        }

        .menu-item-content {
            padding: 20px;
        }

        .menu-item-title {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            align-items: center;
        }

        .menu-item-title h3 {
            font-size: 1.4rem;
        }

        .menu-item-price {
            color: var(--caramel);
            font-weight: 600;
            font-size: 1.3rem;
        }

        .menu-item p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .menu-item-order {
            display: inline-block;
            background: var(--caramel);
            color: var(--milk-white);
            padding: 8px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 2px solid var(--caramel);
            cursor: pointer;
        }

        .menu-item-order:hover {
            background: transparent;
            color: var(--caramel);
        }

        .gallery {
            background-color: var(--milk-white);
            position: relative;
            overflow: hidden;
        }

        .gallery::before {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(205, 166, 118, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .gallery-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            z-index: 1;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--glass-border);
        }

        .gallery-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            width: 100%;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            flex: 0 0 100%;
            height: 600px;
            cursor: pointer;
            background-color: #eee;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            transition: transform 0.8s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 52px;
            height: 52px;
            background: rgba(250, 246, 242, 0.85);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(205, 166, 118, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.4s var(--transition-premium);
            box-shadow: var(--shadow-md);
            color: var(--chocolate);
            font-size: 18px;
        }

        .gallery-nav-btn:hover {
            background: var(--caramel);
            color: white;
            box-shadow: 0 6px 18px rgba(205, 166, 118, 0.3);
        }

        .gallery-prev {
            left: 20px;
        }

        .gallery-next {
            right: 20px;
        }

        .gallery-pagination {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 25px;
        }

        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #E8D4B9;
            cursor: pointer;
            transition: all 0.3s;
        }

        .gallery-dot.active {
            background: var(--caramel);
            transform: scale(1.3);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(75, 46, 30, 0.8));
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 15px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h4 {
            color: var(--milk-white);
            font-size: 1.1rem;
        }

        .reviews {
            background: linear-gradient(135deg, var(--light-caramel) 0%, var(--milk-white) 100%);
            position: relative;
        }

        .reviews-slider {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .reviews-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .review {
            min-width: 100%;
            padding: 40px 35px;
            background: var(--glass-bg);
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            text-align: center;
            border: 1px solid var(--glass-border);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            position: relative;
        }

        .review::before {
            content: '\201C';
            position: absolute;
            top: 15px;
            left: 25px;
            font-size: 4rem;
            font-family: 'Cormorant Garamond', serif;
            color: rgba(205, 166, 118, 0.15);
            line-height: 1;
        }

        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .review-author {
            font-weight: 600;
            color: var(--caramel);
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--light-caramel);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: var(--caramel);
            transform: scale(1.2);
        }

        .location {
            background: linear-gradient(135deg, var(--chocolate) 0%, var(--dark-brown) 100%);
            color: var(--milk-white);
            position: relative;
            overflow: hidden;
        }

        .location::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(205, 166, 118, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .location .section-title h2 {
            color: var(--milk-white);
        }

        .location .section-title h2::after {
            background: linear-gradient(90deg, transparent, var(--caramel), transparent);
        }

        .location .section-title p {
            color: var(--milk-white) !important;
            opacity: 0.95;
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .location-info h3 {
            font-size: 2.2rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .location-info h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--caramel);
            bottom: -10px;
            left: 0;
        }

        .location-details {
            margin-bottom: 40px;
        }

        .branch-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(205, 166, 118, 0.18);
            border-radius: 16px;
            padding: 22px 24px 4px;
            margin-bottom: 22px;
        }

        .branch-card .branch-badge {
            margin-bottom: 18px;
        }

        .branch-card .location-detail:last-child {
            margin-bottom: 6px;
        }

        @media (max-width: 768px) {
            .branch-card {
                padding: 16px 16px 2px;
                border-radius: 14px;
                margin-bottom: 16px;
            }

            .branch-card .branch-badge {
                margin-bottom: 14px;
                padding: 5px 14px;
                font-size: 0.85rem;
            }

            .branch-card .location-detail {
                flex-direction: row;
                align-items: flex-start;
                margin-bottom: 16px;
            }

            .branch-card .location-detail img.location-icon {
                width: 28px;
                height: 28px;
                margin-right: 14px;
                margin-top: 2px;
            }

            .branch-card .location-detail h4 {
                font-size: 1.05rem;
                margin-bottom: 3px;
            }

            .branch-card .location-detail p {
                font-size: 0.92rem;
            }
        }

        .location-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .location-detail i {
            color: var(--caramel);
            margin-right: 20px;
            font-size: 1.5rem;
            margin-top: 3px;
        }

        .location-detail img.location-icon {
            width: 36px;
            height: 36px;
            margin-right: 20px;
            margin-top: 3px;
            object-fit: contain;
            display: inline-block;
        }

        .location-detail h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .branch-badge {
            display: inline-block;
            background: linear-gradient(90deg, #D4A574, #F4C430);
            color: #FFFFFF;
            padding: 6px 18px;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 700;
            white-space: nowrap;
            box-shadow: 0 2px 10px rgba(244, 196, 48, 0.4);
            margin-bottom: 8px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .location-detail a {
            color: var(--milk-white);
            text-decoration: none;
            transition: color 0.3s;
        }

        .location-detail a:hover {
            color: var(--caramel);
        }

        .location-map {
            height: 450px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        #map {
            width: 100%;
            height: 100%;
        }

        .site-footer {
            background: linear-gradient(135deg, var(--chocolate) 0%, var(--dark-brown) 100%);
            color: rgba(255, 255, 255, 0.7);
            padding: 42px 20px 28px;
            position: relative;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(205, 166, 118, 0.45), transparent);
        }

        .footer-top {
            max-width: 1100px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        .footer-brand-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--milk-white);
            letter-spacing: 0.5px;
        }

        .footer-brand-sub {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.95rem;
            font-style: italic;
            color: var(--caramel);
            letter-spacing: 1.5px;
        }

        .footer-ig {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: var(--milk-white);
            text-decoration: none;
            font-size: 0.92rem;
            padding: 9px 20px;
            border: 1px solid rgba(205, 166, 118, 0.35);
            border-radius: 30px;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .footer-ig:hover {
            background: rgba(205, 166, 118, 0.14);
            border-color: var(--caramel);
        }

        .footer-ig-icon {
            width: 18px;
            height: 18px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .footer-bottom {
            max-width: 1100px;
            margin: 0 auto;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 0.86rem;
        }

        .footer-bottom p {
            margin: 0;
        }

        .footer-credit {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--caramel);
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .footer-credit:hover {
            opacity: 0.8;
        }

        .footer-credit-icon {
            height: 15px;
            width: 15px;
            filter: sepia(1) saturate(5) hue-rotate(-15deg) brightness(0.85);
        }

        @media (max-width: 768px) {
            .site-footer {
                padding: 34px 18px 24px;
            }

            .footer-top,
            .footer-bottom {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }

            .footer-brand {
                align-items: center;
            }
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            33% {
                transform: translate(30px, -50px) rotate(120deg);
            }

            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }

            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }

        @keyframes pop {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.3);
            }

            100% {
                transform: scale(1);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.9s var(--transition-premium), transform 0.9s var(--transition-premium);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Premium scroll reveal */
        .premium-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s var(--transition-premium), transform 0.8s var(--transition-premium);
        }

        .premium-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered children animation */
        .premium-reveal.revealed .timeline-item,
        .premium-reveal.revealed .location-detail {
            opacity: 0;
            animation: staggerFadeIn 0.6s var(--transition-premium) forwards;
        }

        .premium-reveal.revealed .timeline-item:nth-child(1),
        .premium-reveal.revealed .location-detail:nth-child(1) {
            animation-delay: 0.1s;
        }

        .premium-reveal.revealed .timeline-item:nth-child(2),
        .premium-reveal.revealed .location-detail:nth-child(2) {
            animation-delay: 0.2s;
        }

        .premium-reveal.revealed .location-detail:nth-child(3) {
            animation-delay: 0.3s;
        }

        .premium-reveal.revealed .location-detail:nth-child(4) {
            animation-delay: 0.4s;
        }

        .premium-reveal.revealed .location-detail:nth-child(5) {
            animation-delay: 0.5s;
        }

        .premium-reveal.revealed .location-detail:nth-child(6) {
            animation-delay: 0.6s;
        }

        @keyframes staggerFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Лёгкие весенние частицы в hero */
        .hero-particles {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }

        .hero-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            animation: floatParticle linear infinite;
        }

        .hero-particle--blossom {
            background: radial-gradient(circle, rgba(240, 200, 210, 0.75) 0%, rgba(240, 200, 210, 0.2) 45%, transparent 70%);
        }

        .hero-particle--leaf {
            background: radial-gradient(circle, rgba(170, 210, 175, 0.65) 0%, rgba(170, 210, 175, 0.2) 45%, transparent 70%);
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) translateX(0) scale(0);
                opacity: 0;
            }

            10% {
                opacity: 1;
                scale: 1;
            }

            90% {
                opacity: 0.55;
            }

            100% {
                transform: translateY(-10vh) translateX(28px) scale(0.45);
                opacity: 0;
            }
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90vh;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .modal-content img {
            width: 100%;
            height: auto;
            display: block;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            border: none;
            color: var(--milk-white);
            font-size: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .close-modal:hover {
            background: var(--caramel);
        }

        @media (max-width: 1200px) {

            .about-content,
            .location-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-text {
                padding-right: 0;
            }
        }

        @media (max-width: 768px) {
            header {
                height: 70px;
            }

            .header-container {
                position: relative;
                height: 70px;
            }

            nav ul {
                display: none;
            }

            .logo {
                position: static;
                bottom: auto;
            }

            .logo img.logo-img {
                height: 76px;
            }

            .lang-select {
                position: static;
                bottom: auto;
                margin-left: auto;
                margin-right: 10px;
                padding: 4px 9px;
                font-size: 0.75rem;
                height: 28px;
                line-height: 28px;
            }

            .mobile-menu-btn {
                display: none;
                position: static;
                align-items: center;
                justify-content: center;
                width: 44px;
                height: 44px;
                font-size: 22px;
                background: rgba(255, 255, 255, 0.04);
                border: 1px solid rgba(255, 255, 255, 0.06);
                border-radius: 8px;
                backdrop-filter: blur(4px);
                transition: background 0.2s, transform 0.15s;
                flex-shrink: 0;
            }

            .mobile-menu-btn:active {
                transform: scale(0.95);
            }

            .section-title p {
                font-size: 1.1rem;
            }

            .menu-items {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 10px;
            }

            .gallery-item {
                height: 350px;
            }

            .gallery-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .cart-modal {
                width: 100%;
                right: -100%;
            }

            .cart-icon {
                margin-left: 20px;
            }

            html,
            body {
                overflow-x: hidden;
            }

            .mobile-nav {
                right: -100%;
                width: 80%;
                max-width: 300px;
                padding: 80px 30px 30px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            .mobile-nav.active {
                right: 0;
            }

            .bottom-nav {
                display: flex;
            }

            body {
                padding-bottom: 64px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                height: 100vh;
            }

            section {
                padding: 60px 0;
            }

            .menu-categories {
                flex-direction: column;
                align-items: center;
            }

            .category-btn {
                width: 200px;
                margin-bottom: 10px;
            }

            .location-detail {
                flex-direction: column;
                align-items: flex-start;
            }

            .location-detail i {
                margin-bottom: 10px;
            }
        }

        /* Весенний слой: лепестки и листья */
        .spring-float-layer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            overflow: hidden;
        }

        .spring-petal {
            position: absolute;
            font-size: 1.2em;
            font-family: Arial, sans-serif;
            animation: spring-drift linear infinite;
            -webkit-user-select: none;
            user-select: none;
            opacity: 0.72;
            filter: drop-shadow(0 4px 12px rgba(75, 46, 30, 0.12));
        }

        @keyframes spring-drift {
            0% {
                transform: translateY(-12vh) translateX(0) rotate(-12deg);
                opacity: 0;
            }

            12% {
                opacity: 0.7;
            }

            50% {
                transform: translateY(52vh) translateX(36px) rotate(8deg);
            }

            88% {
                opacity: 0.55;
            }

            100% {
                transform: translateY(112vh) translateX(-18px) rotate(18deg);
                opacity: 0;
            }
        }

        /* Editorial Caramel direction for the public home page
        body {
            background: #fbfaf8;
        }

        .hero {
            min-height: 760px;
            height: 100svh;
            margin: 0 18px;
            border-radius: 0 0 44px 44px;
        }

        .hero-overlay {
            background: linear-gradient(90deg, rgba(35, 20, 12, 0.72) 0%, rgba(35, 20, 12, 0.3) 58%, rgba(35, 20, 12, 0.12) 100%);
        }

        .hero-content {
            width: min(100% - 64px, 1500px);
            max-width: none;
            text-align: left;
        }

        .hero h1 {
            max-width: 1000px;
            margin-bottom: 18px;
            font-size: clamp(7rem, 15vw, 14rem);
            font-weight: 500;
            line-height: 0.72;
            letter-spacing: -0.075em;
            text-shadow: 0 10px 40px rgba(0, 0, 0, 0.24);
        }

        .hero h1::after {
            display: none;
        }

        .hero p {
            max-width: 560px;
            margin: 38px 0 34px;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.55rem, 2.3vw, 2.35rem);
            line-height: 1.15;
            letter-spacing: 0;
        }

        .hero .btn,
        .location .btn {
            padding: 18px 34px;
            border: 1px solid rgba(75, 46, 30, 0.14);
            border-radius: 999px;
            background: #f8f5ef;
            color: var(--chocolate);
            box-shadow: none;
        }

        .about,
        .reviews,
        .gallery,
        .location {
            padding: clamp(92px, 10vw, 160px) 0;
            background: #fbfaf8;
            color: var(--chocolate);
        }

        .about .container,
        .reviews .container,
        .gallery .container,
        .location .container {
            width: min(calc(100% - 64px), 1660px);
            max-width: none;
            padding: 0;
        }

        .section-title {
            max-width: 1180px;
            margin: 0 0 clamp(54px, 7vw, 100px);
            text-align: left;
        }

        .section-title h2,
        .location .section-title h2 {
            color: var(--chocolate);
            font-size: clamp(4.8rem, 9vw, 9.5rem);
            font-weight: 500;
            line-height: 0.82;
            letter-spacing: -0.055em;
        }

        .section-title h2::after,
        .location .section-title h2::after {
            width: 76px;
            height: 2px;
            margin: 28px 0 0;
            background: #d4ae61;
            transform: none;
        }

        .section-title p,
        .location .section-title p {
            max-width: 760px;
            margin: 24px 0 0;
            color: #756d67 !important;
            font-size: clamp(1rem, 1.45vw, 1.35rem);
            line-height: 1.55;
        }

        .about-content {
            grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
            gap: clamp(48px, 8vw, 130px);
            align-items: start;
        }

        .about-text {
            padding: 48px 0 0;
        }

        .about-text h3,
        .location-info h3 {
            font-size: clamp(2.6rem, 4vw, 4.6rem);
            font-weight: 500;
            line-height: 0.98;
            letter-spacing: -0.035em;
        }

        .about-image {
            min-height: 650px;
            border-radius: 40px;
            box-shadow: none;
            transform: none;
        }

        .about-image::after {
            border-radius: 40px;
            border-color: rgba(75, 46, 30, 0.08);
        }

        .about-image img {
            width: 100%;
            height: 650px;
            object-fit: cover;
        }

        .timeline-item,
        .review,
        .branch-card {
            border: 0;
            border-radius: 32px;
            background: #f0eae3;
            box-shadow: none;
            backdrop-filter: none;
        }

        .reviews-slider {
            max-width: 1180px;
            margin: 0;
        }

        .review {
            min-height: 390px;
            padding: clamp(56px, 7vw, 100px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
        }

        .review-text {
            max-width: 920px;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 3.5vw, 4rem);
            font-style: normal;
            line-height: 1.08;
        }

        .gallery-container {
            max-width: none;
            border: 0;
            border-radius: 42px;
            box-shadow: none;
        }

        .gallery-item {
            height: min(72vh, 820px);
        }

        .gallery-nav-btn {
            width: 64px;
            height: 64px;
            border-color: rgba(75, 46, 30, 0.14);
            background: rgba(251, 250, 248, 0.92);
            box-shadow: none;
        }

        .location::before,
        .gallery::before {
            display: none;
        }

        .location-content {
            grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
            gap: clamp(34px, 6vw, 90px);
            align-items: stretch;
        }

        .branch-card {
            padding: 30px;
        }

        .location-detail a {
            color: var(--chocolate);
        }

        .location-map {
            height: auto;
            min-height: 680px;
            border-radius: 40px;
            box-shadow: none;
        }

        .site-footer {
            margin: 0 18px 18px;
            padding: 64px clamp(24px, 5vw, 80px) 34px;
            border-radius: 42px;
            background: var(--chocolate);
        }

        .footer-top,
        .footer-bottom {
            max-width: 1500px;
        }

        .footer-brand-name {
            font-size: clamp(3.5rem, 7vw, 7rem);
            font-weight: 500;
            line-height: 0.8;
            letter-spacing: -0.05em;
        }

        @media (max-width: 900px) {
            .hero {
                min-height: 680px;
                margin: 0 8px;
                border-radius: 0 0 30px 30px;
            }

            .hero-content,
            .about .container,
            .reviews .container,
            .gallery .container,
            .location .container {
                width: min(calc(100% - 32px), 1660px);
            }

            .hero h1 {
                font-size: clamp(5.8rem, 27vw, 9rem);
            }

            .about-content,
            .location-content {
                grid-template-columns: 1fr;
            }

            .about-image,
            .about-image img,
            .location-map {
                min-height: 480px;
                height: 480px;
            }

            .site-footer {
                margin: 0 8px 8px;
                border-radius: 30px;
            }
        }

        @media (max-width: 600px) {
            .about,
            .reviews,
            .gallery,
            .location {
                padding: 78px 0;
            }

            .section-title h2,
            .location .section-title h2 {
                font-size: clamp(4rem, 20vw, 6rem);
            }

            .about-image,
            .about-image img,
            .location-map {
                min-height: 390px;
                height: 390px;
                border-radius: 28px;
            }

            .review {
                min-height: 360px;
                padding: 38px 26px;
                border-radius: 28px;
            }

            .gallery-container {
                border-radius: 28px;
            }

            .gallery-item {
                height: 470px;
            }
        }

        */

        .family-preview {
            padding: 130px 0 115px;
            background: #fff;
            overflow: hidden;
        }

        .family-preview-shell {
            width: min(calc(100% - 48px), 1660px);
            margin: 0 auto;
        }

        .family-preview-heading {
            position: relative;
            z-index: 2;
            max-width: 1420px;
            margin: 0 auto 48px;
            padding-left: clamp(0px, 5vw, 80px);
        }

        .family-preview-kicker {
            display: block;
            margin-bottom: 18px;
            color: #8f5e39;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .family-preview-heading h2 {
            max-width: 1200px;
            margin: 0;
            color: var(--chocolate);
            font-size: clamp(5.5rem, 9.7vw, 10.5rem);
            font-weight: 500;
            line-height: 0.76;
            letter-spacing: -0.06em;
        }

        .family-preview-heading h2 em {
            display: block;
            color: #dfc184;
            font-weight: 500;
            font-style: normal;
        }

        .family-preview-controls {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            margin-bottom: 24px;
        }

        .family-preview-controls button {
            width: 58px;
            height: 58px;
            border: 1px solid #dfcbbb;
            border-radius: 50%;
            background: #fff;
            color: var(--chocolate);
            font-size: 1.35rem;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
        }

        .family-preview-controls button:hover {
            background: var(--chocolate);
            color: #fff;
            transform: translateY(-3px);
        }

        .family-preview-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 410px;
            gap: 30px;
            align-items: start;
        }

        .family-preview-carousel {
            display: flex;
            gap: 26px;
            overflow-x: auto;
            padding: 0 0 22px;
            scroll-behavior: auto;
            scroll-snap-type: none;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .family-preview-carousel::-webkit-scrollbar {
            display: none;
        }

        .family-preview-card {
            flex: 0 0 410px;
            min-height: 420px;
            padding: 42px 48px;
            border-radius: 36px;
            scroll-snap-align: start;
        }

        .family-preview-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: #f2ebe4;
        }

        .family-preview-card:nth-child(2) {
            background: #f6f1ec;
        }

        .family-preview-card:nth-child(3) {
            background: #eee2d6;
        }

        .family-preview-card > span {
            color: #9e6d48;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.15em;
        }

        .family-preview-card h3 {
            margin: auto 0 0;
            color: var(--chocolate);
            font-size: clamp(2.2rem, 3vw, 3.5rem);
            font-weight: 500;
            line-height: 0.95;
        }

        .family-preview-quote {
            width: 410px;
            min-height: 420px;
            padding: 42px 48px;
            border-radius: 36px;
            display: flex;
            flex-direction: column;
            background: linear-gradient(145deg, #efd9a9, #dfbf7f);
            color: var(--chocolate);
        }

        .family-preview-quote-mark {
            font: 700 4.6rem/0.7 'Cormorant Garamond', serif;
        }

        .family-preview-quote p {
            max-width: 340px;
            margin: auto;
            text-align: center;
            font: 500 clamp(1.65rem, 2vw, 2.3rem)/1.14 'Cormorant Garamond', serif;
        }

        .family-preview-quote a {
            min-height: 60px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.88);
            color: var(--chocolate);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 600;
            transition: transform 0.25s ease, background 0.25s ease;
        }

        .family-preview-quote a:hover {
            background: #fff;
            transform: translateY(-3px);
        }

        @media (max-width: 1150px) {
            .family-preview-layout {
                grid-template-columns: minmax(0, 1fr) 340px;
            }

            .family-preview-card {
                flex-basis: 340px;
            }

            .family-preview-quote {
                width: 340px;
            }
        }

        @media (max-width: 900px) {
            .family-preview {
                padding: 96px 0 82px;
            }

            .family-preview-shell {
                width: min(calc(100% - 40px), 1660px);
            }

            .family-preview-heading {
                margin-bottom: 38px;
                padding-left: 0;
            }

            .family-preview-heading h2 {
                font-size: clamp(5rem, 15vw, 8rem);
                line-height: 0.78;
            }

            .family-preview-layout {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .family-preview-card,
            .family-preview-quote {
                width: 100%;
                flex-basis: 100%;
            }

            .family-preview-side {
                display: flex;
                flex-direction: column;
            }

            .family-preview-carousel {
                gap: 18px;
                padding-bottom: 0;
            }

            .family-preview-controls {
                order: 2;
                justify-content: center;
                margin: 20px 0 0;
            }
        }

        @media (max-width: 768px) {
            .family-preview {
                padding: 78px 0 70px;
            }

            .family-preview-shell {
                width: min(calc(100% - 32px), 1660px);
            }

            .family-preview-heading h2 {
                font-size: clamp(4.3rem, 21vw, 7rem);
                line-height: 0.76;
            }

            .family-preview-controls button {
                width: 50px;
                height: 50px;
            }

            .family-preview-carousel {
                margin-right: -16px;
                gap: 16px;
                padding-top: 0;
            }

            .family-preview-card {
                flex-basis: 100%;
                min-height: 390px;
                padding: 30px;
                border-radius: 28px;
            }

            .family-preview-quote {
                width: 100%;
                min-height: 390px;
                padding: 30px;
                border-radius: 28px;
            }
        }

        @media (max-width: 600px) {
            .family-preview {
                padding: 68px 0 62px;
            }

            .family-preview-shell {
                width: calc(100% - 28px);
            }

            .family-preview-heading {
                margin-bottom: 28px;
            }

            .family-preview-kicker {
                margin-bottom: 12px;
                font-size: 0.68rem;
                letter-spacing: 0.16em;
            }

            .family-preview-heading h2 {
                font-size: clamp(3.65rem, 18vw, 5.4rem);
                line-height: 0.8;
                letter-spacing: -0.055em;
            }

            .family-preview-carousel {
                margin-right: -14px;
                gap: 14px;
            }

            .family-preview-card {
                min-height: 330px;
                padding: 26px;
                border-radius: 26px;
            }

            .family-preview-card h3 {
                font-size: clamp(2.25rem, 11vw, 3.1rem);
            }

            .family-preview-quote {
                min-height: 350px;
                padding: 26px;
                border-radius: 26px;
            }

            .family-preview-quote-mark {
                font-size: 3.8rem;
            }

            .family-preview-quote p {
                font-size: clamp(1.55rem, 7.5vw, 2rem);
            }

            .family-preview-quote a {
                min-height: 54px;
            }
        }

        @media (max-width: 380px) {
            .family-preview-heading h2 {
                font-size: 3.35rem;
            }

            .family-preview-card {
                min-height: 300px;
                padding: 22px;
            }

            .family-preview-quote {
                min-height: 330px;
                padding: 22px;
            }
        }

        @media (max-width: 768px) {
            .hero-actions {
                width: min(100%, 230px);
                margin: 0 auto;
                flex-direction: column;
                gap: 9px;
            }

            .hero-actions .btn {
                width: 100%;
                padding: 13px 20px;
                text-align: center;
                font-size: 0.9rem;
            }

            .hero-career-btn {
                justify-content: center;
            }
        }
