﻿@font-face {
    font-family: 'Manrope';
    src: url('../Fonts/Manrope/Manrope-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'Manrope-Bold';
    src: url('../Fonts/Manrope/Manrope-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'Manrope-Medium';
    src: url('../Fonts/Manrope/Manrope-Medium.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'Manrope-SemiBold';
    src: url('../Fonts/Manrope/Manrope-SemiBold.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'Fraunces-Regular';
    src: url('../Fonts/Fraunces/Fraunces_72pt-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}
.floatingcart {
    position: fixed;
    Right: 15px;
    top: 300px;
    z-index: 1021;
    /*border-radius: 50%;*/
    background: #8F1A1F;
    /* background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);*/
    padding: 10px;
    border: 2px solid #fff;
    scale: 0.9;
}

.cart-item-number {
    background: #fff;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    color: #000;
    display: block;
    position: absolute;
    top: -12px !important;
    right: -10px !important;
    font-weight: bold;
    font-size: 14px;
}
a:hover .cart-item-number {
    color: #000;
}
/* ============ RESET ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --header-h: 150px;
    --header-h-mobile: 64px;
    --overlap-h: var(--header-h);
    --red: #a40000;
    --red-dark: #6e0001;
    --gold-dark: #df6c11;
    --ink: #201414;
    --ink-soft: #6b5f5f;
    --cream: #fff;
    /*--cream: #FBF4E9;*/
    --cream-alt: #F3E9D8;
    --cream-2: #F3E9D8;
    --border: #e7ddce;
    --font-head: "Fraunces-Regular", Georgia, serif;
    --font-head: "Fraunces-Regular", serif;
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body-bold: "Manrope-Bold";
    --radius: 14px;
    --ink: #1c1410;
    --char: #221815;
    --tomato: #C1272D;
    --tomato-deep: #8F1A1F;
    --basil: #4C6B45;
    --gold: #D9A441;
    --line: rgba(28,20,16,0.12);
    --shadow: 0 20px 50px -25px rgba(28,20,16,0.45);
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin-bottom: 0px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.6rem;
}

    .eyebrow.center {
        text-align: center;
    }

.section-title {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

    .section-title.center {
        text-align: center;
    }

/* ============ BUTTONS ============ */
.btn {
   
}
.custombtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    color: #fff !important;
}
.btn--sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.82rem;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--tomato);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--tomato);
    transition: transform .15s ease, background .15s ease;
}

    .btn--primary:hover {
        background: var(--tomato-deep);
        transform: translateY(-1px);
    }

.btn--outline {
    background: transparent !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.6);
}

    .btn--outline:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-3px);
    }

.btn--outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.7);
}

    .btn--outline-light:hover {
        background: #fff;
        color: var(--red-dark);
    }

.btn--dark {
    background: var(--ink);
    color: #fff;
}

    .btn--dark:hover {
        background: var(--red-dark);
        transform: translateY(-3px);
    }

.btn--outline-dark {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border);
}

    .btn--outline-dark:hover {
        background: var(--ink);
        color: #fff;
        border-color: var(--ink);
        transform: translateY(-3px);
    }

/* ============ TOP BAR ============ */
.topbar {
    background: var(--char);
    color: #EFE6DA;
    font-size: 13.5px;
}

    .topbar .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 40px;
        /*max-width: 1280px;*/
        margin: 0 auto;
        padding: 0;
    }

    .topbar .contact {
        display: flex;
        gap: 22px;
        opacity: 0.9;
    }

    .topbar .socials {
        display: flex;
        gap: 14px;
        align-items: center;
    }

        .topbar .socials a {
            width: 26px;
            height: 26px;
            border: 1px solid rgba(239,230,218,0.35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

/* ============ HEADER ============ */
.site-header {
    position: relative;
    z-index: 100;
    
    display: flex;
    align-items: center;
    background: transparent;
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, min-height 0.3s ease;
}

.site-header.is-scrolled {
   /* background: #ffffff;
    box-shadow: 0 2px 18px -6px rgba(32, 20, 20, 0.15);*/
}

.site-header__inner {
    /*max-width: 1280px;*/
    margin: 0 auto;
    /* padding: 0.85rem 5vw;*/
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 !important; 
}

.site-header__inner {
    width: 100%;
    transition: padding 0.3s ease;
}

.site-header.is-scrolled .site-header__inner {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

.site-header .brand__logo {
    transition: width 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled .brand__logo {
    /*width: 37px !important;
    height: 34px !important;*/
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-right: auto;
}

.brand__logo {
    /*width: 42px;
    height: 42px;*/
    object-fit: contain;
}

.brand__logo {
    /*width: 56px;
    height: 52px;*/
}

.brand__logo--desktop {
    display: block;
}

.brand__logo--mobile {
    display: none;
}

.brand__text {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.3s ease;
}

    .brand__text em {
        font-style: italic;
        color: var(--red);
    }

.site-header.is-scrolled .brand__text {
    color: var(--ink);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

    .nav__list > li > a {
        font-size: 1rem;
        font-weight: 600;
        color: #000;
        transition: color 0.3s ease;
        padding: 0.4rem 0;
        position: relative;
    }

        .nav__list > li > a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: var(--red);
            transition: width 0.25s ease;
        }

        .nav__list > li > a:hover::after,
        .nav__list > li > a.active::after {
            width: 100%;
        }

        .nav__list > li > a:hover,
        .nav__list > li > a.active {
            color: var(--red);
        }

.site-header.is-scrolled .nav__list > li > a {
    color: var(--ink);
}

.site-header.is-scrolled .nav__list > li > a:hover,
.site-header.is-scrolled .nav__list > li > a.active {
    color: var(--red);
}

.has-dropdown {
    position: relative;
}

.customdropdown {
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 190px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.has-dropdown:hover .customdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.customdropdown li a {
    display: block;
    padding: 0.55rem 0.8rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

    .customdropdown li a:hover {
        background: var(--cream-alt);
        color: var(--red);
    }

.header__cta {
    flex-shrink: 0;
}

/*.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 2.5px;
        background: #ffffff;
        transition: background 0.3s ease, transform 0.25s ease, opacity 0.25s ease;
        border-radius: 2px;
        transition: all 0.25s ease;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }*/
.nav-toggle {
    display: none;
    position: relative;
    z-index: 1002; /* stay above .nav and .nav-backdrop */
    width: 22px;
    height: 23px;
    background: transparent;
    border: none;
    cursor: pointer;
    /*display: inline-flex;*/
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    color: #fff; /* <-- explicit, so currentColor below actually resolves */
}

    .nav-toggle span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: currentColor;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

.site-header.is-scrolled .nav-toggle span {
    background: var(--ink);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 90;
}

    .back-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--red-dark);
        color: #fff;
    }

@media (max-width: 1299px) {
    #siteHeader, .topbar {
        padding: 5px 10px !important;
    }
}
    @media (max-width: 991px) {
        .nav-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(15,8,8,0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            z-index: 98;
        }

            .nav-backdrop.is-open {
                opacity: 1;
                visibility: visible;
            }

        body.nav-scroll-lock {
            overflow: hidden;
        }

        .nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(320px, 82vw);
            height: 100vh;
            background: #fff;
            padding: 6rem 2rem 2rem;
            box-shadow: -12px 0 30px rgba(0,0,0,0.15);
            transition: right 0.3s ease;
            z-index: 99;
            overflow-y: auto;
        }

            .nav.is-open {
                right: 0;
            }

        .nav__list {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.1rem;
        }

        .has-dropdown {
            width: 100%;
        }

        .customdropdown {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            display: none;
            padding-left: 0.8rem;
            margin-top: 0.5rem;
        }

        .has-dropdown.is-open .dropdown {
            display: block;
        }

        .nav-toggle {
            display: flex;
        }

        .header__cta {
            display: none;
        }

        /* Mobile header: never transparent, always solid white like the scrolled state */
        .site-header {
            box-shadow: 0 2px 18px -6px rgba(32, 20, 20, 0.15);
        }

            .site-header .brand__text {
                color: var(--ink);
            }

            .site-header .nav__list > li > a {
                color: var(--ink);
            }

                .site-header .nav__list > li > a:hover,
                .site-header .nav__list > li > a.active {
                    color: var(--red);
                }

            .site-header .nav-toggle span {
                background: var(--ink);
            }

        /* Mobile logo swap */
        .brand__logo--desktop {
            display: none;
        }

        .brand__logo--mobile {
            display: block;
            width: 175px;
            /*height: 100px;*/
            object-fit: contain;
        }

        .site-header {
            min-height: var(--header-h-mobile);
        }
    }

    @media (max-width: 720px) {
        .topbar__inner {
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .topbar__inner {
            flex-direction: column;
            /* text-align: left; */
            align-items: self-start;
        }
        .nav {
            /*top: 87px;*/
        }
        .topbar .wrap {
            align-items: flex-start;
            text-align: left;
            height: auto;
            flex-direction: column;
            gap: 5px;
        }
        .topbar .contact {
            flex-direction: column;
            gap: 5px;
        }
    }

    @media (max-width: 480px) {
       
    }

    @media (max-width: 1199px) {
        .site-header__inner {
            gap: 1rem;
        }
    }

    @media (max-width: 424px) {
       
    }

    .dropdownbtn {
        display: inline-block;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        text-decoration: none;
        vertical-align: middle;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        background-color: transparent;
        border: 1px solid transparent;
        padding: .375rem .75rem;
        font-size: 1rem;
        border-radius: .25rem;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

/* ============================================================
   HERO SLIDER  (_HomePageSlider.cshtml)
   ============================================================ */
/*.hero {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--char);
    color: #fff;*/
    /* pull the transparent header on top of the hero */
   
    /*padding-bottom: 90px;*/ /* room for the ticker */
/*}*/

    /* ---- slides ---- */
    /*.hero .heroSwiper {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero .swiper-slide {
        overflow: hidden;
    }

    .hero .hero__media {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center;
        transform: scale(1);
        transition: transform 8s linear;
        will-change: transform;
    }

    .hero .swiper-slide-active .hero__media {
        transform: scale(1.09);
    }*/

/* ---- scrim ---- */
/*.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(20,12,8,0.92) 0%, rgba(20,12,8,0.78) 34%, rgba(20,12,8,0.42) 62%, rgba(20,12,8,0.20) 100%), linear-gradient(180deg, rgba(20,12,8,0.55) 0%, rgba(20,12,8,0) 40%, rgba(20,12,8,0.55) 100%);
}*/

/* ---- copy ---- */
/*.hero__container {
    position: relative;
    z-index: 3;
    flex: 1 1 auto;
    min-width: 0;
}

.hero__content {
    max-width: 620px;
    padding: 2rem 0;
}

.hero__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

.hero__eyebrow-line {
    display: inline-block;
    width: 34px;
    height: 2px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 0.9rem;
    margin-bottom: 3px;
}

.hero__title {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 5.2vw, 4.6rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

    .hero__title em {
        font-style: italic;
        color: var(--gold);
    }

.hero__desc {
    max-width: 470px;
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.86);
    margin-bottom: 2.1rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}*/

/* red pill CTA (matches the design) */
/*.hero__btn--primary {
    background: var(--tomato);
    color: #fff;
    box-shadow: 0 12px 28px -12px rgba(193,39,45,0.85);
}

    .hero__btn--primary:hover {
        background: var(--tomato-deep);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 18px 34px -14px rgba(193,39,45,0.9);
    }*/

/* ---- open today card ---- */
/*.hero__hours {
    position: absolute;
    right: 0;
    bottom: 140px;
    z-index: 3;
    background: var(--tomato);
    color: #fff;
    padding: 1.1rem 1.6rem;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 18px 40px -20px rgba(0,0,0,0.7);
    min-width: 230px;
}

.hero__hours-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.hero__hours-time {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.92);
    margin: 0;
    line-height: 1.3;
}*/

/* ---- arrows ---- */
/*.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.45);
    background: rgba(20,12,8,0.28);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

    .hero__arrow:hover {
        background: var(--tomato);
        border-color: var(--tomato);
        transform: translateY(-50%) scale(1.06);
    }

.hero__arrow--prev {
    left: 22px;
}

.hero__arrow--next {
    right: 22px;
}

.hero__arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}*/

/* ---- dots ---- */
/*.hero .hero__dots,
.hero .hero__dots.swiper-pagination-bullets {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 110px;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: auto;
    transform: none;
}

    .hero .hero__dots .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        margin: 0 !important;
        border-radius: 50%;
        background: rgba(255,255,255,0.45);
        opacity: 1;
        transition: width 0.25s ease, background 0.25s ease;
    }

    .hero .hero__dots .swiper-pagination-bullet-active {
        width: 30px;
        border-radius: 50px;
        background: var(--gold);
    }*/

/* ---- ticker ---- */
/*.hero__ticker {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background: #1a0f0c;
    border-top: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    padding: 0.85rem 0;
}

.hero__ticker-track {
    display: flex;
    width: max-content;
    animation: heroTicker 38s linear infinite;
}

.hero__ticker-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .hero__ticker-list li {
        display: flex;
        align-items: center;
        font-size: 0.74rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.85);
        white-space: nowrap;
        padding: 0 2.2rem;
    }

        .hero__ticker-list li::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--tomato);
            margin-right: 1.1rem;
            flex-shrink: 0;
        }

.hero__ticker:hover .hero__ticker-track {
    animation-play-state: paused;
}

@keyframes heroTicker {
    from {
        transform: translate3d(0,0,0);
    }

    to {
        transform: translate3d(-33.3333%,0,0);
    }
}*/

/* ---- responsive ---- */
/*@media (max-width: 991px) {
    .hero {
        min-height: 90vh;
        margin-top: 0;
        padding-top: 3rem;
        padding-bottom: 84px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__overlay {
        background: linear-gradient(90deg, rgba(20,12,8,0.9) 0%, rgba(20,12,8,0.72) 55%, rgba(20,12,8,0.45) 100%), linear-gradient(180deg, rgba(20,12,8,0.35) 0%, rgba(20,12,8,0) 45%, rgba(20,12,8,0.6) 100%);
    }

    .hero__hours {
        bottom: 120px;
        min-width: 200px;
        padding: 0.9rem 1.2rem;
    }

    .hero__arrow {
        width: 40px;
        height: 40px;
    }

    .hero__arrow--prev {
        left: 12px;
    }

    .hero__arrow--next {
        right: 12px;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 88vh;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
    }

    .hero__container {
        flex: 0 0 auto;
        width: 100%;
    }

    .hero__hours {
        position: static;
        z-index: 3;
        align-self: flex-start;
        margin: 0 0 0 calc(var(--bs-gutter-x, 1.5rem) * 0.5);
        border-radius: 4px;
    }

    .hero .hero__dots,
    .hero .hero__dots.swiper-pagination-bullets {
        bottom: 96px;
    }

    .hero__arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2.4rem;
    }

    .hero__desc {
        font-size: 0.95rem;
    }

    .hero__actions .custombtn {
        flex: 1 1 auto;
        justify-content: center;
    }

    .hero__ticker-list li {
        padding: 0 1.3rem;
        font-size: 0.68rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__ticker-track {
        animation: none;
    }

    .hero .swiper-slide-active .hero__media {
        transform: none;
    }
}*/
.wrap {
   /* max-width: 1180px;*/
    margin: 0 auto;
    padding: 0 10px;
}
.cta-btn {
    background: var(--tomato);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--tomato);
    transition: transform .15s ease, background .15s ease;
}

    .cta-btn:hover {
        background: var(--tomato-deep);
        transform: translateY(-1px);
        
    }
.menubtn, .onlinebtn {
    color: #fff !important;
    transform: translateY(-1px);
}
/* ============================================================
   End : HERO SLIDER  (_HomePageSlider.cshtml)
   ============================================================ */
/* ===== Intro ===== */
.intro {
    padding: 80px 0 70px;
    text-align: center;
}

    .intro .eyebrow {
        justify-content: center;
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 16px;
    }

    .intro h2 {
        font-size: clamp(30px,4vw,44px);
        max-width: 760px;
        margin: 0 auto 22px;
    }

    .intro p {
        max-width: 680px;
        margin: 0 auto;
        color: #4a3e35;
        font-size: 16.5px;
    }
/* ===== Feature cards ===== */
.features {
    padding: 0 0 80px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

@media(max-width:900px) {
    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:560px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.fcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 26px;
    transition: transform .2s ease, box-shadow .2s ease;
    /* Make all card content align consistently */
    display: flex;
    flex-direction: column;
}

    .fcard:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

    .fcard .icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--cream-2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .fcard h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .fcard p {
        font-size: 14.5px;
        color: #5a4c41;
        margin-bottom: 18px;
    }

    .fcard a {
        font-weight: 700;
        font-size: 13.5px;
        color: var(--tomato-deep);
        border-bottom: 1px solid var(--tomato-deep);
        padding-bottom: 2px;
        /* Push link to the same bottom position */
        margin-top: auto;
        align-self: flex-start;
    }


/* ===== Menu showcase ===== */
.menu-section {
    background: var(--char);
    color: var(--cream-2);
    padding: 80px 0;
}

.menu-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

    .menu-head h2 {
        color: #fff;
        font-size: clamp(30px,4vw,42px);
        max-width: 520px;
    }

    .menu-head .eyebrow {
        color: var(--gold);
    }

    .menu-head p {
        color: #c9beae;
        max-width: 380px;
        font-size: 15px;
    }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

@media(max-width:900px) {
    .menu-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

.mcard {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow);
}

    .mcard img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .mcard:hover img {
        transform: scale(1.08);
    }

    .mcard .tag {
        position: absolute;
        top: 16px;
        left: 16px;
        background: var(--tomato);
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 999px;
    }

    .mcard .cap {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 22px 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    }

        .mcard .cap h3 {
            color: #fff;
            font-size: 19px;
            margin-bottom: 4px;
        }

        .mcard .cap p {
            color: #dcd2c3;
            font-size: 13px;
        }

/* ===== Story / split ===== */
.story {
    padding: 80px 50px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media(max-width:860px) {
    .story {
        grid-template-columns: 1fr;
    }
}

.story-media {
    position: relative;
}

    .story-media img {
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .story-media .badge {
        position: absolute;
        bottom: -24px;
        left: -24px;
        background: var(--tomato);
        color: #fff;
        padding: 20px 24px;
        border-radius: 16px;
        box-shadow: var(--shadow);
    }

@media(max-width:500px) {
    .story-media .badge {
        left: 8px;
        bottom: -18px;
        padding: 14px 18px;
    }
}

.story-media .badge .num {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.story-media .badge .lab {
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.9;
}

.story h2 {
    font-size: clamp(28px,3.6vw,38px);
    margin: 16px 0 18px;
}

.story p {
    color: #4a3e35;
    margin-bottom: 16px;
    font-size: 15.5px;
}

.story ul {
    list-style: none;
    margin-top: 22px;
    display: grid;
    gap: 12px;
    padding: 0;
}

    .story ul li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        font-size: 14.5px;
        color: #3c322b;
    }

        .story ul li::before {
            content: "✓";
            color: var(--basil);
            font-weight: 800;
            margin-top: 1px;
        }
@media(max-width:768px) {
    .story .wrap {
        grid-template-columns: 1fr !important;
    }
    .story-media img {
        text-align: center;
        /*margin: 0 auto;*/
        width: 100%;
        max-height: 500px;
    }
}

/* ===== Testimonial ===== */
.testimonial-section {
    background: var(--cream-2);
}
.testimonial {
    background: var(--cream-2);
    padding: 80px 0;
    text-align: center;
}

    .testimonial .quote-mark {
        font-family: var(--font-head);
        font-size: 80px;
        color: var(--tomato);
        line-height: 0.5;
        margin-bottom: 10px;
    }

    .testimonial blockquote {
       /* font-family: 'Fraunces',serif;*/
        font-family: var(--font-head);
        font-size: clamp(20px,2.6vw,28px);
        max-width: 760px;
        margin: 0 auto 24px;
        font-weight: 500;
        line-height: 1.4;
    }

    .testimonial .who {
        font-weight: 700;
        font-size: 14px;
        color: var(--tomato-deep);
    }

        .testimonial .who span {
            color: var(--tomato-deep);
        }

/* ===== Footer / CTA + info ===== */
.cta-band {
    background: var(--tomato);
    color: #fff;
    padding: 50px 0 40px;
}

    .cta-band .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .cta-band h3 {
        font-size: 26px;
        max-width: 440px;
    }

    .cta-band .btn-white {
        background: #fff;
        color: var(--tomato-deep);
        font-weight: 800;
        padding: 14px 26px;
        border-radius: 999px;
    }

footer {
    background: var(--ink);
    color: #c9beae;
    padding: 80px 0 0;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media(max-width:576px) {
    .cta-band .wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
@media(max-width:860px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:520px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

footer h4 {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

footer .fbrand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

footer p {
    font-size: 14px;
    line-height: 1.7;
}

footer ul {
    list-style: none;
    display: grid;
    gap: 11px;
}

    footer ul a {
        font-size: 14px;
    }

        footer ul a:hover {
            color: #fff;
        }
#logoutButton {
    background: none;
    color: inherit;
    border: 0;
    font-size: 14px;
}
#logoutButton:hover {
    color:#fff;
}
.bottom-bar {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #9c8f7f;
    flex-wrap: wrap;
    gap: 10px;
}

footer a:hover {
    color: #fff;
}
@media(max-width:1199px) {
    .intro {
        padding: 60px 0 70px;
    }
    .features {
        padding: 0 0 60px;
    }
    .menu-section {
        padding: 60px 0;
    }
    .story {
        padding: 60px 50px;
    }
    .testimonial {
        padding-bottom: 50px;
    }
    footer {
        padding: 60px 0 0;
    }
    .foot-grid {
        padding-bottom: 30px;
    }
}
@media(max-width:1199px) {
    .intro {
        padding: 60px 0 70px;
    }

    .features {
        padding: 0 0 60px;
    }

    .menu-section {
        padding: 60px 0;
    }

    .story {
        padding: 60px 50px;
        padding-bottom: 40px;
    }

    .testimonial {
        padding-bottom: 50px;
    }

    footer {
        padding: 60px 0 0;
    }

    .foot-grid {
        padding-bottom: 30px;
    }
}
@media(max-width:576px) {
    .intro {
        padding: 60px 0 70px;
    }

    .features {
        padding: 0 0 60px;
    }

    .menu-section {
        padding: 60px 0;
    }

    .story {
        padding: 60px 0;
        padding-bottom: 40px;
    }

    .testimonial {
        padding-bottom: 50px;
    }

    footer {
        padding: 60px 0 0;
    }

    .foot-grid {
        padding-bottom: 30px;
    }
}

.headeraddress:hover {
    color: #fff;
}