/**
 * GlobalBobTooma Header styles.
 * Extracted from header.php for cacheable delivery.
 */
/* ==========================================================================
       VARIABLES
       ========================================================================== */
    :root {
        --hdr-h: 92px;
        --hdr-bg: #ead7be;
        --hdr-text: #573a36;
        --hdr-text-hover: #3e2825;
        --hdr-white: #ffffff;
        --hdr-max-w: 1320px;
        --hdr-pad: 48px;
        --hdr-gap-nav: 30px;
        --hdr-gap-actions: 22px;
        --hdr-font-nav: 'Josefin Sans', 'DM Sans', system-ui, sans-serif;
        --hdr-font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
        --hdr-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
        overflow-x: clip;
    }

    .gb-header,
    .gb-header *,
    .gb-drawer,
    .gb-drawer * {
        box-sizing: border-box;
    }

    /* ==========================================================================
       SKIP LINK (Accessibility)
       ========================================================================== */
    .gb-skip-link {
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--hdr-text);
        color: #fff;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 700;
        z-index: 99999;
        text-decoration: none;
        border-radius: 0 0 6px 6px;
        transition: top 0.2s ease;
    }
    .gb-skip-link:focus {
        top: 0;
    }

    /* ==========================================================================
       BASE HEADER
       ========================================================================== */
    .gb-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9990;
        height: var(--hdr-h);
        background: var(--hdr-bg);
        transition: height var(--hdr-transition), background var(--hdr-transition), box-shadow var(--hdr-transition), transform var(--hdr-transition);
    }
    .gb-header.is-scrolled {
        box-shadow: 0 2px 16px rgba(87, 58, 54, 0.12);
    }

    .gb-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        width: 92%;
        max-width: var(--hdr-max-w);
        padding: 0 var(--hdr-pad);
        margin: 0 auto;
        position: relative;
    }
    @media (min-width: 1024px) {
        .gb-header__inner {
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(150px, auto) minmax(0, 0.92fr);
            gap: 18px;
        }
    }

    /* ==========================================================================
       LOGO â€” Centered
       ========================================================================== */
    .gb-header__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        z-index: 10;
        flex-shrink: 0;
    }
    @media (min-width: 1024px) {
        .gb-header__logo {
            position: static;
            transform: none;
            grid-column: 2;
            justify-self: center;
        }
    }
    .gb-header__logo img,
    .gb-header__logo .custom-logo-link img {
        max-height: 74px;
        max-width: 100%;
        width: auto;
        display: block;
        object-fit: contain;
        transition: max-height var(--hdr-transition);
    }
    .gb-header__logo .custom-logo-link {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }

    /* Text Fallback Logo */
    .gb-logo-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        padding: 8px 20px;
        background: var(--hdr-white);
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 20px rgba(87, 58, 54, 0.1);
    }
    .gb-logo-text__pre {
        font-family: var(--hdr-font-nav);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.35em;
        color: var(--hdr-text);
        text-transform: uppercase;
    }
    .gb-logo-text__brand {
        font-family: var(--hdr-font-serif);
        font-size: 26px;
        font-weight: 700;
        color: var(--hdr-text);
        letter-spacing: 0.04em;
        line-height: 1.1;
    }
    .gb-logo-text__tagline {
        font-family: var(--hdr-font-nav);
        font-size: 7px;
        letter-spacing: 0.2em;
        color: rgba(87, 58, 54, 0.65);
        text-transform: uppercase;
        margin-top: 2px;
    }

    /* ==========================================================================
       NAVIGATION â€” Desktop (Left Side)
       ========================================================================== */
    .gb-header__nav--desktop {
        display: none;
    }
    @media (min-width: 1024px) {
        .gb-header__nav--desktop {
            display: block;
            grid-column: 1;
            flex-shrink: 0;
            justify-self: start;
            min-width: 0;
        }
    }

    .gb-nav-menu {
        display: flex;
        gap: var(--hdr-gap-nav);
        list-style: none;
        margin: 0;
        padding: 0;
        min-width: 0;
    }
    .gb-nav-menu .menu-item {
        position: relative;
    }
    .gb-nav-menu .menu-item > a {
        font-family: var(--hdr-font-nav);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--hdr-text);
        padding: 8px 0;
        position: relative;
        transition: color 0.3s ease, opacity 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        white-space: nowrap;
    }
    .gb-nav-menu .menu-item > a::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--hdr-text);
        transition: width 0.3s ease;
    }
    .gb-nav-menu .menu-item > a:hover {
        color: var(--hdr-text-hover);
    }
    .gb-nav-menu .menu-item > a:hover::after,
    .gb-nav-menu .menu-item.current-menu-item > a::after {
        width: 100%;
    }
    .gb-nav-menu .menu-item.current-menu-item > a {
        color: var(--hdr-text-hover);
        font-weight: 700;
    }

    /* Dropdown arrow for items with children */
    .gb-nav-menu .menu-item-has-children > a::before {
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid currentColor;
        margin-left: 3px;
        order: 1;
        transition: transform 0.2s ease;
    }

    /* Dropdown Sub-Menu */
    .gb-nav-menu .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: var(--hdr-white);
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 30px rgba(87, 58, 54, 0.12);
        list-style: none;
        margin: 0;
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all 0.25s ease;
        z-index: 100;
    }
    .gb-nav-menu .menu-item:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .gb-nav-menu .sub-menu .menu-item > a {
        display: block;
        padding: 10px 20px;
        font-size: 13px;
        font-weight: 500;
        color: var(--hdr-text);
        letter-spacing: 0.04em;
        text-transform: none;
    }
    .gb-nav-menu .sub-menu .menu-item > a::after {
        display: none;
    }
    .gb-nav-menu .sub-menu .menu-item > a:hover {
        color: var(--hdr-text-hover);
        background: rgba(234, 215, 190, 0.35);
    }

    /* ==========================================================================
       ACTIONS â€” Desktop (Phone + CTA Icon)
       ========================================================================== */
    .gb-header__actions--desktop {
        display: none;
        align-items: center;
        gap: var(--hdr-gap-actions);
        flex-shrink: 0;
    }
    @media (min-width: 1024px) {
        .gb-header__actions--desktop {
            display: flex;
            grid-column: 3;
            justify-self: end;
        }
    }

    /* Phone Number */
    .gb-header__phone {
        font-family: var(--hdr-font-nav);
        font-size: 15px;
        font-weight: 600;
        color: var(--hdr-text);
        text-decoration: none;
        letter-spacing: 0.03em;
        transition: color 0.2s ease;
        white-space: nowrap;
    }
    .gb-header__phone:hover {
        color: var(--hdr-text-hover);
    }

    /* CTA Icon Button (Calendar Square) */
    .gb-header__cta-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        background: var(--hdr-text);
        color: var(--hdr-white);
        border-radius: 4px;
        text-decoration: none;
        transition: background 0.3s ease, transform 0.2s ease;
    }
    .gb-header__cta-icon:hover {
        background: var(--hdr-text-hover);
        transform: translateY(-1px);
    }

    /* ==========================================================================
       HAMBURGER BUTTON (Mobile â‰¤1023px)
       ========================================================================== */
    .gb-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        z-index: 9995;
        -webkit-tap-highlight-color: transparent;
        position: relative;
    }
    @media (min-width: 1024px) {
        .gb-hamburger {
            display: none !important;
        }
    }
    .gb-hamburger__lines {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
    }
    .gb-hamburger__lines span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--hdr-text);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    /* Hamburger â†’ X animation */
    .gb-hamburger.is-active .gb-hamburger__lines span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .gb-hamburger.is-active .gb-hamburger__lines span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .gb-hamburger.is-active .gb-hamburger__lines span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* ==========================================================================
       MOBILE DRAWER
       ========================================================================== */
    .gb-drawer {
        position: fixed;
        inset: 0;
        z-index: 99999;
        visibility: hidden;
        pointer-events: none;
    }
    .gb-drawer.is-open {
        visibility: visible;
        pointer-events: auto;
    }
    .gb-drawer__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(87, 58, 54, 0.4);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .gb-drawer.is-open .gb-drawer__backdrop {
        opacity: 1;
    }
    .gb-drawer__panel {
        position: absolute;
        top: 10px;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        width: min(360px, calc(100vw - 20px));
        max-width: calc(100vw - 20px);
        background: var(--hdr-bg);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        box-shadow: -5px 0 30px rgba(87, 58, 54, 0.15);
        overflow: hidden;
        border-radius: 24px;
    }
    .gb-drawer.is-open .gb-drawer__panel {
        transform: translateX(0);
    }

    /* Drawer Header */
    .gb-drawer__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 18px 20px;
        border-bottom: 1px solid rgba(87, 58, 54, 0.12);
        flex-shrink: 0;
        min-width: 0;
    }
    .gb-drawer__logo,
    .gb-drawer__logo .custom-logo-link {
        min-width: 0;
        max-width: calc(100% - 56px);
        overflow: hidden;
    }
    .gb-drawer__logo img {
        max-height: 48px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
    .gb-drawer__logo-text {
        font-family: var(--hdr-font-serif);
        font-size: 20px;
        font-weight: 700;
        color: var(--hdr-text);
    }
    .gb-drawer__close {
        width: 44px;
        height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        color: var(--hdr-text);
        transition: color 0.2s ease;
    }
    .gb-drawer__close:hover {
        color: var(--hdr-text-hover);
    }

    /* Drawer Nav */
    .gb-drawer__nav {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0;
    }
    .gb-drawer__menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .gb-drawer__menu li {
        border-bottom: 1px solid rgba(87, 58, 54, 0.08);
    }
    .gb-drawer__menu li a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 15px 24px;
        font-family: var(--hdr-font-nav);
        font-size: 15px;
        font-weight: 600;
        color: var(--hdr-text);
        text-decoration: none;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        overflow-wrap: anywhere;
        transition: color 0.2s ease, background 0.2s ease;
    }
    .gb-drawer__menu li a:hover {
        color: var(--hdr-text-hover);
        background: rgba(87, 58, 54, 0.06);
    }
    /* Submenu toggle */
    .gb-drawer__menu .sub-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: none;
        background: rgba(87, 58, 54, 0.04);
    }
    .gb-drawer__menu .sub-menu.is-open {
        display: block;
    }
    .gb-drawer__menu .sub-menu li a {
        padding-left: 40px;
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        color: rgba(87, 58, 54, 0.8);
    }

    /* Drawer Footer */
    .gb-drawer__footer {
        padding: 18px 24px;
        border-top: 1px solid rgba(87, 58, 54, 0.12);
        flex-shrink: 0;
        min-width: 0;
    }
    .gb-drawer__phone {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 44px;
        font-family: var(--hdr-font-nav);
        font-size: 15px;
        font-weight: 600;
        color: var(--hdr-text);
        text-decoration: none;
        margin-bottom: 12px;
        overflow-wrap: anywhere;
    }
    .gb-drawer__phone svg {
        color: var(--hdr-text);
        flex-shrink: 0;
    }
    .gb-drawer__cta {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 48px;
        padding: 14px;
        background: var(--hdr-text);
        color: var(--hdr-white) !important;
        font-family: var(--hdr-font-nav);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
        border-radius: 4px;
        margin-bottom: 14px;
        transition: background 0.2s ease;
    }
    .gb-drawer__cta:hover {
        background: var(--hdr-text-hover);
    }
    .gb-drawer__social {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    .gb-drawer__social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(87, 58, 54, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--hdr-text);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.2s ease;
    }
    .gb-drawer__social a:hover {
        background: var(--hdr-text);
        color: var(--hdr-white);
    }

    /* ==========================================================================
       RESPONSIVE BREAKPOINTS
       ========================================================================== */

    /* â”€â”€ Ultra Wide (1920px+) â”€â”€ */
    @media (min-width: 1920px) {
        :root {
            --hdr-h: 96px;
            --hdr-max-w: 1440px;
            --hdr-pad: 26px;
            --hdr-gap-nav: 28px;
            --hdr-gap-actions: 28px;
        }
        .gb-header__inner {
            width: 88%;
        }
        .gb-nav-menu .menu-item > a {
            font-size: 14px;
        }
        .gb-header__phone {
            font-size: 16px;
        }
        .gb-header__logo img,
        .gb-header__logo .custom-logo-link img {
            max-height: 78px;
        }
    }

    /* â”€â”€ Large Monitors (1400â€“1919px) â”€â”€ */
    @media (min-width: 1400px) and (max-width: 1919px) {
        :root {
            --hdr-h: 94px;
            --hdr-max-w: 1380px;
            --hdr-pad: 24px;
            --hdr-gap-nav: 24px;
            --hdr-gap-actions: 26px;
        }
        .gb-header__inner {
            width: 90%;
        }
        .gb-nav-menu .menu-item > a {
            font-size: 13.5px;
        }
        .gb-header__logo img,
        .gb-header__logo .custom-logo-link img {
            max-height: 72px;
        }
    }

    /* â”€â”€ Desktop/Laptop (1024â€“1399px) â”€â”€ */
    @media (min-width: 1024px) and (max-width: 1399px) {
        :root {
            --hdr-h: 86px;
            --hdr-max-w: 1200px;
            --hdr-pad: 20px;
            --hdr-gap-nav: 18px;
            --hdr-gap-actions: 16px;
        }
        .gb-header__inner {
            width: 94%;
        }
        .gb-nav-menu .menu-item > a {
            font-size: 12px;
            letter-spacing: 0.08em;
        }
        .gb-header__phone {
            font-size: 14px;
        }
        .gb-header__logo img,
        .gb-header__logo .custom-logo-link img {
            max-height: 64px;
        }
    }

    /* â”€â”€ Tablet (768â€“1023px) â”€â”€ */
    @media (min-width: 768px) and (max-width: 1023px) {
        :root {
            --hdr-h: 76px;
            --hdr-pad: 0px;
        }
        .gb-header__inner {
            width: 92%;
            max-width: none;
            padding: 0;
        }
        .gb-header__logo {
            left: 50%;
            transform: translateX(-50%);
        }
        .gb-header__logo img,
        .gb-header__logo .custom-logo-link img {
            max-height: 72px;
        }
    }

    /* â”€â”€ Mobile (â‰¤767px) â”€â”€ */
    @media (max-width: 767px) {
        :root {
            --hdr-h: 68px;
            --hdr-pad: 0px;
        }
        .gb-header__inner {
            width: 100%;
            max-width: none;
            padding: 0 18px;
        }
        .gb-header__logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        .gb-header__logo img,
        .gb-header__logo .custom-logo-link img {
            max-height: 60px;
        }
        .gb-logo-text {
            padding: 5px 14px;
        }
        .gb-logo-text__brand {
            font-size: 20px;
        }
    }

    /* â”€â”€ Extra Small (â‰¤380px) â”€â”€ */
    @media (max-width: 380px) {
        :root {
            --hdr-h: 64px;
        }
        .gb-header__inner {
            padding: 0 14px;
        }
        .gb-header__logo img,
        .gb-header__logo .custom-logo-link img {
            max-height: 52px;
        }
    }

    /* ==========================================================================
       BODY PADDING & SCROLL LOCK
       ========================================================================== */
    body {
        padding-top: var(--hdr-h);
    }
    body.gb-drawer-open {
        overflow: hidden !important;
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
    }
    /* Front page hero overlap â€” allow hero to slide under header */
    body.home {
        padding-top: 0;
    }

    /* ==========================================================================
       GLOBAL CTA COLOR OVERRIDE â€” #573a36 palette
       This ensures all CTA buttons across the site use the unified palette.
       ========================================================================== */
    .elementor-widget a.elementor-button,
    .elementor-widget .elementor-button,
    .gb-cta-btn,
    .ms-cta__btn--pri,
    .gb-reservation__submit,
    .gb-blog-grid__cta-btn {
        background-color: #573a36 !important;
        border-color: #573a36 !important;
        color: #fff !important;
        transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    }
    .elementor-widget a.elementor-button:hover,
    .elementor-widget .elementor-button:hover,
    .gb-cta-btn:hover,
    .ms-cta__btn--pri:hover,
    .gb-reservation__submit:hover,
    .gb-blog-grid__cta-btn:hover {
        background-color: #3e2825 !important;
        border-color: #3e2825 !important;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(87, 58, 54, 0.25);
    }
    /* Outline/Secondary CTA variant */
    .ms-cta__btn--sec {
        background-color: transparent !important;
        border: 1px solid #573a36 !important;
        color: #573a36 !important;
    }
    .ms-cta__btn--sec:hover {
        background-color: #573a36 !important;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(87, 58, 54, 0.25);
    }

    /* Accessibility â€” reduced motion */
    @media (prefers-reduced-motion: reduce) {
        .gb-header,
        .gb-drawer__panel,
        .gb-drawer__backdrop,
        .gb-hamburger__lines span {
        transition: none !important;
        }
    }

    /* ==========================================================================
       PREMIUM DUAL-NATURE HEADER
       Home top: transparent over cinematic hero.
       Home scrolled + inner pages: compact floating restaurant bar.
       ========================================================================== */
    .gb-header {
        background: transparent;
        padding: 10px 0;
    }
    .gb-header__inner {
        border: 1px solid rgba(87, 58, 54, 0.12);
        background: rgba(234, 215, 190, 0.94);
        border-radius: 999px;
        box-shadow: 0 18px 45px rgba(30, 18, 16, 0.08);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        transition: width var(--hdr-transition), height var(--hdr-transition), background var(--hdr-transition), border-color var(--hdr-transition), border-radius var(--hdr-transition), box-shadow var(--hdr-transition);
    }
    body.home .gb-header:not(.is-scrolled) {
        padding-top: 18px;
    }
    body.home .gb-header:not(.is-scrolled) .gb-header__inner {
        background: rgba(10, 8, 7, 0.1);
        border-color: rgba(255, 255, 255, 0.18);
        box-shadow: none;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    body.home .gb-header:not(.is-scrolled) .gb-nav-menu .menu-item > a,
    body.home .gb-header:not(.is-scrolled) .gb-header__phone,
    body.home .gb-header:not(.is-scrolled) .gb-hamburger__lines span {
        color: #fff;
    }
    body.home .gb-header:not(.is-scrolled) .gb-nav-menu .menu-item > a::after {
        background: #ead7be;
    }
    body.home .gb-header:not(.is-scrolled) .gb-header__cta-icon {
        background: #ead7be;
        color: #573a36;
    }
    body.home .gb-header:not(.is-scrolled) .gb-logo-text {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: none;
    }
    body.home .gb-header:not(.is-scrolled) .gb-logo-text__pre,
    body.home .gb-header:not(.is-scrolled) .gb-logo-text__brand,
    body.home .gb-header:not(.is-scrolled) .gb-logo-text__tagline {
        color: #fff;
    }
    .gb-header.is-scrolled,
    body:not(.home) .gb-header {
        height: 78px;
    }
    .gb-header.is-scrolled .gb-header__inner,
    body:not(.home) .gb-header__inner {
        width: min(94%, var(--hdr-max-w));
        border-radius: 999px;
        box-shadow: 0 16px 50px rgba(30, 18, 16, 0.14);
    }
    .gb-header.is-scrolled .gb-header__logo img,
    .gb-header.is-scrolled .gb-header__logo .custom-logo-link img,
    body:not(.home) .gb-header__logo img,
    body:not(.home) .gb-header__logo .custom-logo-link img {
        max-height: 54px;
    }
    .gb-mobile-reserve {
        position: fixed;
        left: 50%;
        right: auto;
        bottom: max(14px, env(safe-area-inset-bottom));
        transform: translateX(-50%);
        width: min(72vw, 280px);
        z-index: 9988;
        display: none;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 13px 18px 12px;
        background: #573a36;
        color: #fff;
        border: 1px solid rgba(234, 215, 190, 0.45);
        border-radius: 999px;
        box-shadow: 0 18px 45px rgba(30, 18, 16, 0.24);
        font-family: var(--hdr-font-nav);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        text-decoration: none;
    }
    .gb-mobile-reserve:hover,
    .gb-mobile-reserve:focus {
        color: #fff;
        background: #3e2825;
    }
    body.gb-drawer-open .gb-mobile-reserve {
        display: none !important;
    }

    @media (max-width: 1023px) {
        .gb-header,
        .gb-header.is-scrolled,
        body:not(.home) .gb-header {
            height: var(--hdr-h);
            padding: 8px 0;
        }
        .gb-header__inner,
        .gb-header.is-scrolled .gb-header__inner,
        body:not(.home) .gb-header__inner {
            width: calc(100% - 24px);
            border-radius: 999px;
            padding: 0 18px;
        }
        .gb-mobile-reserve {
            display: flex;
        }
        body {
            padding-bottom: 74px;
        }
    }

    @media (max-width: 1280px) {
        .gb-header__nav--desktop,
        .gb-header__actions--desktop {
            display: none !important;
        }
        .gb-hamburger {
            display: flex !important;
        }
        .gb-header__inner {
            display: flex;
            justify-content: flex-end;
        }
        .gb-header__logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            max-width: min(210px, calc(100vw - 128px));
            overflow: hidden;
        }
        .gb-header__logo img,
        .gb-header__logo .custom-logo-link img {
            max-height: 50px;
        }
    }

    @media (min-width: 1281px) {
        .gb-hamburger {
            display: none !important;
        }
    }

    @media (max-width: 380px) {
        .gb-header__logo {
            max-width: min(170px, calc(100vw - 112px));
        }
        .gb-mobile-reserve {
            width: min(74vw, 252px);
            font-size: 11px;
            letter-spacing: 0.12em;
        }
    }
