@charset "utf-8";
/*
    -------------------------------------------------------------------
        Theme Name: Salt and Pixel Italian
        Theme URI: https://demos.saltandpixelstudio.com/italian/
        Author: Andrea Masters
        Author URI: https://saltandpixelstudio.com/
        Description: Salt and Pixel Studio
        Tags: custom
        Version: 1.0
        Requires at least: 5.0
        Tested up to: 6.2
        Requires PHP: 7.3
    -------------------------------------------------------------------
*/

/* General Imports
-------------------------------------------------------------------*/
@import url('css/bootstrap.css');
@import url('css/aos.css');
@import url('wp-paginate.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet');


/* Root
-------------------------------------------------------------------*/
:root {
    --white: #f6f6f6;
    --black: #161300;
    --gold: #b7903c;
    --red: #790c0f;
    --green: #343616;
    --light-tan: #f7f3ec;
    --ff-default: 'Montserrat', sans-serif;
    --ff-heading: 'Cormorant Garamond', serif;
    --ff-fancy: 'Corinthia', cursive;
}

body{
    font-family: var(--ff-default);
    color: var(--black);
    font-size: 18px;
    font-weight:400;
    background:var(--white);
}

@media (max-width: 768px){
    html,
    body {
        overflow-x: hidden;
    }
}

img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Backgrounds
-------------------------------------------------------------------*/
.bg-black {
    background-color: var(--black) !important;
    color: var(--white);
}

.bg-grunge{
    background-color: var(--light-tan);
    background: url(images/bedge-grunge.png);
    background-repeat: repeat;
    background-size: contain;
}

.bg-green {
    background-color: var(--green) !important;
    color: var(--white);
}

/* General Stuff
-------------------------------------------------------------------*/
.py-largest{
    padding: 10rem 0;
}

/* Page Banner
-------------------------------------------------------------------*/
.page-banner{
    position:relative;
    min-height:520px;
    display:flex;
    align-items:center;
    background-color:#2a2a2a;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    overflow:hidden;
    border-bottom:5px solid Var(--gold);
}

.page-banner h2{
    color:var(--white);
    text-transform: uppercase;
}

 .page-banner p{
     color:var(--white);
    max-width: 40ch;
    margin:0 auto;
}

.page-banner-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.25) 0%,
            rgba(0,0,0,.58) 35%,
            rgba(0,0,0,.58) 65%,
            rgba(0,0,0,.25) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.72) 22%,
            rgba(0,0,0,.48) 65%,
            rgba(0,0,0,.22) 100%
        );
}

.page-banner .container,
.page-banner .row{
    position:relative;
    z-index:2;
}

.page-banner-title{
    margin:0;
    color:var(--white);
    font-size:clamp(3rem, 7vw, 6rem);
    line-height:.95;
    text-transform:uppercase;
}

.full-line{
    width:150px;
    height:auto;
    display:block;
    margin:0 auto;
}

.line{
    width:140px;
    height:auto;
    display:block;
    margin:22px 0;
}

/* Site Loader
-------------------------------------------------------------------*/
#site-loader {
    position: fixed;
    inset: 0;
    background-color: var(--black);
    background-repeat: repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#site-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader-inner {
    text-align: center;
    padding: 20px;
}

.site-loader-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 25px;
    animation: loaderFade 1.8s ease-in-out infinite;
}

.site-loader-line {
    width: 100px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.site-loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background-color: var(--white);
    animation: loaderSweep 1.2s ease-in-out infinite;
}

@keyframes loaderFade {
    0% {
        opacity: 0.65;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
    }
    100% {
        opacity: 0.65;
        transform: scale(1);
    }
}

@keyframes loaderSweep {
    0% {
        left: -40%;
    }
    100% {
        left: 100%;
    }
}

/* Header
-------------------------------------------------------------------*/
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0 0;
    z-index: 99;
}

.header-top {
    position: relative;
    z-index: 2;
}

.header-logo-wrap {
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.site-logo {
    display: inline-block;
}

.site-logo img {
    width: 170px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.main-navigation ul,
.main-navigation .menu,
.main-navigation .navbar-nav{
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-end;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--ff-default);
}

.main-navigation li{
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a, .main-navigation a:hover{
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .08em;
    transition: .3s ease;
    position: relative;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.btn-header{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 2px solid var(--red);
    background: var(--red);
    color: var(--white);
    letter-spacing: .08em;
    text-decoration: none;
    transition: .3s ease;
    flex-shrink: 0;
    border-radius: 0;
    font-size: 15px;
    margin-left:20px;
}

.btn-header:hover{
    background: var(--gold);
    border: 2px solid var(--gold);
    color: var(--white);
}

@media (max-width: 1024px){
    .main-navigation ul,
    .main-navigation .menu,
    .main-navigation .navbar-nav{
        gap: 25px;
    }
}

/* Dropdowns
-------------------------------------------------------------------*/
.main-navigation .menu-item-has-children{
    position: relative;
}

.main-navigation .menu-item-has-children > a{
    padding-right: 18px;
}

.main-navigation .menu-item-has-children > a::before{
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-52%);
    font-size: 11px;
    font-weight: 400;
    transition: .3s ease;
}

.main-navigation .menu-item-has-children:hover > a::before{
    color: var(--gold);
    transform: translateY(-52%) rotate(45deg);
}

.main-navigation .sub-menu{
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 240px;
    background: var(--black);
    border: 1px solid rgba(255,255,255,.08);
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s ease;
    z-index: 999;
    font-weight: 500;
}

.main-navigation .menu-item-has-children:hover > .sub-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li{
    width: 100%;
    padding: 6px 0;
}

.main-navigation .sub-menu a{
    display: block;
    width: 100%;
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: .08em;
    line-height: 1.4;
}

/* Remove Active Line From Dropdown Items
-------------------------------------------------------------------*/
.main-navigation .sub-menu a::after{
    content: none !important;
    display: none !important;
}

@media (max-width: 991px){
    .header-logo-wrap {
    position: absolute;
    left: 0px;
    margin-top: 70px;
}
    header .px-5{
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .btn-header{
        display: none !important;
    }

    .header-inner{
        position: relative;
    }
    
    .site-logo img{
        width: 170px;
        height: auto;
        display: block;
    }

    .mobile-menu-toggle {
        position: absolute;
        right: 0px;
        top: 35px;
        transform: translateY(-50%);
    }
}

/* Mobile Offcanvas
-------------------------------------------------------------------*/
.mobile-menu-toggle-icon{
    display:inline-flex;
    flex-direction:column;
    justify-content:center;
    gap:5px;
}

.mobile-menu-toggle-icon span{
    display:block;
    width:30px;
    height:3px;
    background:var(--gold);
    border-radius:999px;
    transition:.3s ease;
}

.mobile-menu-toggle{
    border:0;
    background:transparent;
}

.mobile-menu-toggle:hover .mobile-menu-toggle-icon span,
.mobile-menu-toggle:focus .mobile-menu-toggle-icon span{
    background:var(--white);
}

.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.68);
    z-index:9998;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .45s ease, visibility .45s ease;
}

.mobile-menu-panel{
    position:fixed;
    top:0;
    right:0;
    width:min(88vw, 420px);
    height:100vh;
    background:var(--black);
    color:var(--white);
    z-index:9999;
    overflow-y:auto;
    box-shadow:-12px 0 40px rgba(0,0,0,.35);
    transform:translateX(100%);
    visibility:hidden;
    transition:transform .55s ease, visibility .55s ease;
    will-change:transform;
}

.mobile-menu-inner{
    min-height:100%;
    padding:1.5rem;
    display:flex;
    flex-direction:column;
}

.mobile-menu-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:1rem;
}

.mobile-menu-logo{
    max-width:220px;
    height:auto;
    display:block;
}

.mobile-menu-close{
    background:transparent;
    border:0;
    color:var(--gold);
    font-size:2.75rem;
    line-height:1;
    padding:0;
    transition:.3s ease;
}

.mobile-menu-close:hover{
    color:var(--white);
}

.mobile-menu-navigation{
    margin-top:1rem;
}

.mobile-menu-list{
    list-style:none;
    margin:0;
    padding:0;
}

.mobile-menu-list li{
    margin:0;
    padding:0;
    border-bottom:1px solid rgba(255,255,255,.14);
}

.mobile-menu-list a{
    display:block;
    color:var(--white);
    text-decoration:none;
    text-transform:uppercase;
    font-size:1rem;
    font-weight:800;
    letter-spacing:.14em;
    line-height:1.2;
    padding:1.1rem 0;
    transition:.3s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list a:focus,
.mobile-menu-list .current-menu-item > a{
    color:var(--gold);
}

.mobile-menu-navigation .menu-item-has-children{
    position:relative;
}

.mobile-menu-navigation .menu-item-has-children > a{
    padding-right:3rem;
}

.mobile-menu-navigation .submenu-toggle{
    position:absolute;
    top:.85rem;
    right:0;
    width:2.5rem;
    height:2.5rem;
    border:0;
    background:transparent;
    color:var(--gold);
    font-size:1.7rem;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.mobile-menu-navigation .submenu-toggle::before{
    content:'+';
}

.mobile-menu-navigation .menu-item-has-children.is-open > .submenu-toggle::before{
    content:'×';
}

.mobile-menu-navigation .sub-menu{
    display:none;
    list-style:none;
    padding-left:1rem;
    margin:.25rem 0 1rem;
}

.mobile-menu-navigation .menu-item-has-children.is-open > .sub-menu{
    display:block;
}

.mobile-menu-navigation .sub-menu a{
    font-size:1rem;
    letter-spacing:.1em;
    font-weight:700;
    padding:.75rem 0;
}

.mobile-menu-cta{
    margin-top:2rem;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.75rem;
    border:2px solid var(--gold);
    color:var(--gold);
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:.16em;
    font-weight:800;
    padding:1rem;
    transition:.3s ease;
}

.mobile-menu-cta:hover,
.mobile-menu-cta:focus{
    background:var(--gold);
    color:var(--white);
}

.mobile-menu-arrow-wrap{
    text-align:center;
}

.mobile-menu-arrow-wrap img{
    width:60%;
    max-width:220px;
}

.mobile-menu-panel .footer-contact-stack{
    margin-top:1.75rem;
    padding-bottom:1.75rem;
    border-bottom:1px solid rgba(255,255,255,.14);
}

.mobile-menu-panel .footer-contact-stack span,
.mobile-menu-panel .footer-contact-stack a{
    color:var(--white);
    text-decoration:none;
    font-size:1rem;
    line-height:1.5;
}

.mobile-menu-panel .footer-contact-stack a:hover{
    color:var(--gold);
}

.mobile-menu-panel .footer-socials{
    margin-top:1.75rem;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:1.4rem;
}

.mobile-menu-panel .footer-socials a{
    color:var(--gold);
    font-size:1.45rem;
    text-decoration:none;
    transition:.3s ease;
}

.mobile-menu-panel .footer-socials a:hover,
.mobile-menu-panel .footer-socials a:focus{
    color:var(--white);
}

body.mobile-menu-open{
    overflow:hidden;
}

.mobile-menu-overlay.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.mobile-menu-panel.is-open{
    transform:translateX(0);
    visibility:visible;
}

.mobile-menu-overlay.is-closing{
    opacity:0;
    visibility:visible;
    pointer-events:none;
}

.mobile-menu-panel.is-closing{
    transform:translateX(100%);
    visibility:visible;
}

.mobile-menu-overlay[hidden],
.mobile-menu-panel[hidden]{
    display:block !important;
}

@media(prefers-reduced-motion:reduce){
    .mobile-menu-overlay,
    .mobile-menu-panel,
    .mobile-menu-toggle,
    .mobile-menu-close,
    .mobile-menu-list a,
    .mobile-menu-cta{
        transition:none !important;
    }
}

/* Headlines
-------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6{
    font-family: var(--ff-heading);
    font-weight: 500;
}

h2 {
    color: var(--black);
    font-size:2.5rem;
}

a{
    color: var(--white);
    text-decoration: none;
}

a:hover{
    color: var(--gold);
    text-decoration: none;
}

b, strong {
    font-weight:bold;
}

.fancy-text{
    font-size: 62px;
    font-family: var(--ff-fancy);
    color:var(--gold);
}

.text-gold{
    color: var(--gold);
}

.section-eyebrow{
    display:block;
    gap:18px;
    color:var(--gold);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .5rem;
    text-transform:uppercase;
    line-height:1;
    font-family:var(--ff-default);
}

.section-eyebrow-alt{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom:0px;
    color:var(--gold);
    font-size:.95rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    text-align:center;
    line-height:1;
}

.section-title{
    margin: 8px 0 24px 0;
    color: var(--black);
    font-size:clamp(2.6rem, 4vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -.02em;
}

.section-title-alt{
    margin: 8px 0;
    color: var(--white);
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -.02em;
}

.section-title-alt2{
    margin: 8px 0;
    color: var(--dark-blue);
    font-size:clamp(2.6rem, 4vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -.02em;
}

/* Buttons
-------------------------------------------------------------------*/
.btn svg, .custom-btn svg,
.custom-btn-alt svg,
.custom-btn-outline svg{
    margin-left: 8px;
}

.custom-btn,
.custom-btn-alt,
.custom-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self:flex-start;
    font-family: var(--ff-default);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 16px 28px;
    transition: .3s ease;
    border: 2px solid var(--gold);
}

/* Solid Button
-------------------------------------------------------------------*/
.custom-btn {
    background-color: var(--gold);
    color: var(--white);
}

.custom-btn:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--gold);
    text-decoration: none;
}

/* Solid Button Alt
-------------------------------------------------------------------*/
.custom-btn-alt {
    background-color: var(--gold);
    color: var(--white);
}

.custom-btn-alt:hover {
    background-color: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    text-decoration: none;
}

/* Outline Button
-------------------------------------------------------------------*/
.custom-btn-outline {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.custom-btn-outline:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    text-decoration: none;
}

/* Hero
-------------------------------------------------------------------*/
.home-hero{
    position: relative;
    min-height: 760px;
    padding-top: 185px;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.home-hero-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8,5,3,.92) 0%,
            rgba(8,5,3,.82) 24%,
            rgba(8,5,3,.58) 40%,
            rgba(8,5,3,.20) 58%,
            rgba(8,5,3,0) 74%
        ),
        linear-gradient(
            180deg,
            rgba(3,3,3,.72) 0%,
            rgba(3,3,3,.32) 18%,
            rgba(3,3,3,0) 40%
        );
    z-index: 1;
}

.home-hero-content{
    padding-left: 3rem;
    position:relative;
    z-index:1;
}

.home-hero-title{
    margin: 0;
    color: var(--white);
    font-family: var(--ff-heading);
    font-size: clamp(3rem, 5.5vw, 6.2rem);
    font-weight: 500;
    line-height: .98;
    letter-spacing: .01em;
}

.home-hero-title > span{
    display: block;
    white-space: normal;
}

.home-hero-title > span:first-child{
    margin-bottom: .35rem;
    color: var(--gold);
    font-family: var(--ff-default);
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.home-hero-title > span:nth-child(2){
    max-width: 18ch;
    color: var(--white);
    font-size: clamp(4rem, 6vw, 5rem);
    line-height: .95;
    letter-spacing: .02em;
}

.home-hero-title > span:nth-child(2) span{
    display: inline;
    margin: 0;
    color: var(--gold);
    font: inherit;
    letter-spacing: inherit;
    text-transform: none;
}

.hero-line{
    width: 140px;
    height: auto;
    display: block;
    margin: 22px 0 24px;
}
@media (max-width: 991px){
.home-hero-overlay {
    background:
    linear-gradient(
        90deg,
        rgba(8, 5, 3, .92) 0%,
        rgba(8, 5, 3, .82) 24%,
        rgba(8, 5, 3, .58) 50%,
        rgba(8, 5, 3, .20) 84%,
        rgba(8, 5, 3, 0) 94%),
    linear-gradient(
        180deg,
        rgba(3, 3, 3, .72) 0%,
        rgba(3, 3, 3, .32) 18%,
        rgba(3, 3, 3, 0) 40%);
}

.home-hero-text p {
    max-width: 30ch !important;
}
}

@media (max-width: 768px){
.home-hero {
    padding-top: 100px;
}

    .home-hero-overlay{
        background: linear-gradient(
            180deg,
            rgba(2,3,4,1) 0%,
            rgba(2,3,4,.50) 45%,
            rgba(2,3,4,.20) 50%,
            rgba(2,3,4,.50) 65%,
            rgba(2,3,4,1) 100%
        );
    }

.home-hero-title span:nth-child(2) {
    color: var(--white);
    font-size: clamp(3rem, 6vw, 6.5rem);
    line-height: .95;
    letter-spacing: .02em;
    text-transform: uppercase;
    max-width: 100%;
}

.home-hero-content{
    padding-left: .5rem;
}

.home-hero-text p {
    font-size: 1.15rem !important;
}

.home-hero-buttons{
    font-size: 12px;
}

.btn-hero {
    margin-right: 10px;
}
}

.home-hero-text p{
    color: var(--white);
    padding-bottom:20px;
    font-weight: 300;
    font-size: 1.5rem;
    max-width: 50ch;
}

.btn-hero{
    padding: 16px 28px;
    background: var(--red);
    border: 1px solid var(--red);
    color: var(--white);
    margin-right:20px;
    font-weight: 500;
}

.online-ordering{
    margin:0;
}

.btn-hero:hover{
    padding: 16px 28px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--white);
}

.btn-hero-outline{
    padding: 16px 28px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    margin-right:20px;
    font-weight: 500;
}

.btn-hero-outline:hover{
    padding: 16px 28px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--white);
}

/* Menu
-------------------------------------------------------------------*/
.food-menu-heading-wrap{
    position:relative;
}

.content-slider-wrap{
    position:relative;
}

.content-slider{
    overflow:hidden;
    padding:15px 15px;
    margin:-15px -15px;
}

.content-slider .swiper-slide{
    height:auto;
}

.content-slider .content-card{
    height:100%;
}

.content-slider-wrap{
    position:relative;
}

.content-slider-arrows{
    position:absolute;
    top:50%;
    left:0;
    right:0;
    z-index:5;
    display:flex;
    align-items:center;
    justify-content:space-between;
    pointer-events:none;
    transform:translateY(-50%);
}

.content-slider-prev,
.content-slider-next{
    width:44px;
    height:44px;
    border:none;
    background:transparent;
    color:var(--black);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
    pointer-events:auto;
}

.content-slider-prev:hover,
.content-slider-next:hover{
    color:var(--gold);
}

.content-slider-prev{
    transform:translateX(-60px);
}

.content-slider-next{
    transform:translateX(60px);
}

.content-card{
    overflow:hidden;
    height:100%;
    transition:.35s ease;
    box-shadow: 0 5px 15px rgba(45, 35, 25, .12);
    position:relative;
    text-align: center;
    background:var(--white);
}

.content-card-image{
    position:relative;
    overflow:hidden;
    aspect-ratio:1 / .6;
}

.content-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.content-card:hover .content-card-image img{
    transform:scale(1.06);
}

.content-card-content{
    padding:3rem;
}

.content-card-content h3{
    color: var(--black);
    letter-spacing: .08em;
    font-size: 1.4rem;
    margin: 0;
    font-family: var(--ff-default);
}

.content-card-text{
    color:var(--black);
    font-size:1rem;
    line-height:1.7;
    margin-bottom:0;
}

.content-card-text p{
    margin:0;
}

.content-card-price{
    color:var(--red);
    font-size:1.5rem;
    line-height:1;
    letter-spacing:-.03em;
}

a.content-card-btn{
    background:transparent;
    border:1px solid var(--gold);
    color:var(--gold);
    padding:8.5px 16px;
    text-transform:uppercase;
    text-decoration:none;
}

a.content-card-btn:hover{
    background:var(--teal);
    border:1px solid var(--teal);
    color:var(--white);
    text-decoration:none;
}

.content-card-meta{
    color:var(--gold);
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:.5rem;
}
@media (max-width:1024px){
    .food-card-content{
        text-align:center;
    }
    .content-card-image {
        aspect-ratio: auto;
    }
    .content-card-image img {
        height: 65%;
    }
}
@media (max-width:991px){

    .content-card-image{
        aspect-ratio:1.35 / 1;
    }
    
    .content-card-image img {
        height: 100%;
    }

    .content-card-content{
        padding:1.25rem;
    }

    .content-card-content h3 {
        font-size: 1rem;
    }

    .content-card-price{
        font-size:1.6rem;
    }

    .featured-menu-link{
        display: none;
    }
}

/* Reservations
-------------------------------------------------------------------*/

.reservation-section{
    padding:3rem 0;
    border-top:1px solid rgba(157,110,48,.35);
}


/* About
-------------------------------------------------------------------*/

.about-panel{
    min-height:520px;
    background-size:cover;
    background-repeat:no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    padding:5rem;
    overflow:hidden;
}

.about-panel-left{
    justify-content:flex-end;
    background-position:left center;
}

.about-panel-left .about-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(2,3,4,.05) 0%,
        rgba(2,3,4,.18) 28%,
        rgba(2,3,4,.72) 48%,
        rgba(2,3,4,.94) 68%,
        rgba(2,3,4,.98) 100%
    );
    z-index:1;
}

.about-panel-right .about-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(2,3,4,.96) 0%,
        rgba(2,3,4,.70) 28%,
        rgba(2,3,4,.32) 48%,
        rgba(2,3,4,.10) 70%,
        rgba(2,3,4,0) 100%
    );
    z-index:1;
}

.about-panel-right{
    justify-content:flex-start;
    background-position:right center;
    border-left:2px solid rgba(157,110,48,.55);
}

.about-content{
    position:relative;
    z-index:2;
    max-width:420px;
}

.about-kicker{
    color:var(--gold);
    font-family:var(--ff-heading);
    text-transform:uppercase;
    letter-spacing:.16em;
    font-size:1rem;
    margin-bottom:.5rem;
}

.about-content h2{
    color:var(--white);
    font-family:var(--ff-heading);
    font-size:clamp(2.6rem, 4vw, 4.2rem);
    line-height:1;
    margin:0;
    text-transform:uppercase;
}

.about-content p{
    color:var(--white);
    font-size:1.5rem;
    line-height:1.7;
    margin-bottom:2rem;
}

@media (max-width:1024px){
.about-panel-left {
    justify-content: flex-end;
    background-position: center;
}
}

/* Gallery */
#gallery-1 .gallery-item {
    margin-top: 0px !important;
}

ol.gallery-item, ul.gallery-item, dl.gallery-item {
    margin-bottom: 0 !important;
}

.gallery p{
    margin-bottom: 0 !important;
}

/* WordPress Galleries
-------------------------------------------------------------------*/
.gallery{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:1rem;
    margin: 0 1rem !important;
}

.gallery .gallery-item{
    float:none !important;
    width:auto !important;
    margin:0 !important;
    text-align:initial !important;
}

.gallery .gallery-icon a{
    overflow:hidden;
}

.gallery .gallery-icon{
    height:100%;
    margin:0;
}

.gallery .gallery-icon a{
    position:relative;
    display:block;
    height:100%;
    overflow:hidden;
    background:#111;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.gallery .gallery-icon a::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 30%,
        rgba(0,0,0,.62) 100%
    );
    opacity:0;
    transition:opacity .35s ease;
}

.gallery .gallery-icon a::after{
    content:"\f002";
    position:absolute;
    top:50%;
    left:50%;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    border:1px solid var(--red);
    border-radius:50%;
    background:var(--red);
    color:var(--white);
    font-family:"Font Awesome 6 Free";
    font-size:1.25rem;
    font-weight:900;
    line-height:1;
    opacity:0;
    transform:translate(-50%, -40%) scale(.8);
    transition:
        opacity .35s ease,
        transform .35s ease,
        background-color .25s ease;
}

.gallery img{
    display:block;
    width:100%;
    height:100%;
    aspect-ratio:3 / 4;
    object-fit:cover;
    border:0 !important;
    transition:
        transform .55s ease,
        filter .55s ease;
}

.gallery .gallery-icon a:hover,
.gallery .gallery-icon a:focus-visible{
    box-shadow:0 20px 45px rgba(0,0,0,.20);
}

.gallery .gallery-icon a:hover::before,
.gallery .gallery-icon a:hover::after,
.gallery .gallery-icon a:focus-visible::before,
.gallery .gallery-icon a:focus-visible::after{
    opacity:1;
}

.gallery .gallery-icon a:hover::after,
.gallery .gallery-icon a:focus-visible::after{
    transform:translate(-50%, -50%) scale(1);
}

.gallery .gallery-icon a:hover img,
.gallery .gallery-icon a:focus-visible img{
    transform:scale(1.07);
    filter:saturate(1.08) contrast(1.04);
}

.gallery .gallery-icon a:hover::after{
    background:#990e15;
}

.gallery .gallery-icon a:focus-visible{
    outline:2px solid #bb924f;
    outline-offset:4px;
}

.gallery > p,
.gallery > br{
    display:none;
}

@media (max-width:991.98px){

    .gallery{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:575.98px){

    .gallery{
        gap:.75rem;
    }

    .gallery .gallery-icon a::after{
        width:48px;
        height:48px;
        font-size:1rem;
    }
}

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

    .gallery .gallery-icon a,
    .gallery .gallery-icon a::before,
    .gallery .gallery-icon a::after,
    .gallery img{
        transition:none;
    }
}

/* Menu
-------------------------------------------------------------------*/
h2.sp-menu-child-heading{
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.sp-menu-dietary-line .sp-menu-dietary-badge{
    color: var(--gold);
}

.sp-menu-dietary-line{
    color: var(--white);
}

.page-id-225 .sp-menu-child-tab {
    min-width: 150px;
    padding: 1rem 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.page-id-225 .sp-menu-child-heading{
    display:none;
}

/* About Page
-------------------------------------------------------------------*/

.about-story-image-wrap{
    height:100%;
    min-height:650px;
}

.about-story-image{
    width:100%;
    height:100%;
    min-height:650px;
    object-fit:cover;
    display:block;
}

.about-story-content-col{
    display:flex;
    align-items:center;
    padding:6rem;
}

.about-story-text{
    line-height:1.8;
    margin-bottom:2rem;
}

.about-story-text p:last-child,
.pillar-text p:last-child,
.about-experience-text p:last-child{
    margin-bottom:0;
}

.pillar-card{
    height:100%;
    padding:0rem 2.5rem;
    text-align:center;
}

.pillar-icon{
    width:74px;
    height:74px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-label {
    line-height: 18px;
    font-size: 16px;
    font-weight: 600;
}

.pillar-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.pillar-card h3{
    color:var(--black);
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:1.75rem;
    margin:0;
}

.pillar-card .line{
    width:180px;
    margin:1rem auto 1.25rem;
}

.pillar-text{
    color:var(--black);
    line-height:1.7;
}

.about-experience-section{
    position:relative;
    padding:8rem 0;
    min-height:520px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
    border-bottom:1px solid rgba(157,110,48,.45);
}

.about-experience-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(2,3,4,.96) 0%,
        rgba(2,3,4,.82) 24%,
        rgba(2,3,4,.38) 48%,
        rgba(2,3,4,.08) 100%
    );
    z-index:1;
}

.about-experience-section .container{
    position:relative;
    z-index:2;
}

.about-experience-content{
    max-width:520px;
}

.about-experience-text{
    color:var(--white);
    line-height:1.8;
    margin-bottom:2rem;
}

@media(max-width:991px){
    .about-story-image-wrap,
    .about-story-image{
        min-height:420px;
    }

    .about-story-content{
        max-width:none;
        padding:0;
        text-align:center;
        margin:0 auto;
    }

    .about-story-content .line,
    .about-experience-content .line{
        margin-left:auto;
        margin-right:auto;
    }

    .about-experience-section{
        padding:6rem 0;
        text-align:center;
    }

    .about-experience-overlay{
        background:rgba(2,3,4,.72);
    }

    .about-experience-content{
        max-width:680px;
        margin:0 auto;
    }
}

/* Reservations */
.sp-reservation-quick-form .reservation-field select, .sp-reservation-quick-form .reservation-field input[type="text"], .sp-reservation-quick-form .reservation-field input[type="date"], .sp-reservation-quick-form .reservation-field .flatpickr-input, .sp-reservation-quick-form .reservation-field .flatpickr-input[readonly] {
    background: var(--white) !important;
    border: 1px solid rgba(157, 110, 48, .5);
    color: var(--black) !important;
}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
    color: rgba(57, 57, 57, 0.3) !important;
}

/* Single Location
-------------------------------------------------------------------*/

.location-hero{
    position:relative;
    padding-top:240px;
}

.location-hero h1{
    color:var(--white);
    font-size:clamp(3rem, 6vw, 6rem);
    text-transform:uppercase;
}

.location-hero-address{
    color:var(--white);
    font-size:1.25rem;
    line-height:1.6;
}

.location-hero-buttons{
    display:flex;
    justify-content:center;
    gap:1rem;
    flex-wrap:wrap;
}

.single-location-section{
    background:var(--black);
}

.location-details-card{
    height:auto;
}

.location-detail-item{
    margin-bottom:1.75rem;
}

.location-detail-item strong{
    display:block;
    color:var(--gold);
    font-family:var(--ff-heading);
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-bottom:.35rem;
}

.location-detail-item p{
    margin:0;
    color:var(--white);
    line-height:1.7;
}

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

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

.location-row{
    min-height:650px;
}

.location-details-card{
    height:100%;
}

.single-location-image-card{
    height:100%;
    min-height:650px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    border:1px solid rgba(157,110,48,.4);
}
@media(max-width:1024px){
.content-card-content{
    padding:2rem;
}
}
@media(max-width:991px){
    .location-row{
        min-height:auto;
    }

    .single-location-image-card{
        min-height:420px;
    }
}

.single-location-map{
    border:1px solid rgba(157,110,48,.4);
    overflow:hidden;
}

.single-location-map iframe{
    display:block;
    filter:grayscale(1) invert(.9);
}

@media(max-width:991px){
    .location-hero{
        padding-top:180px;
    }

    .location-hero-buttons{
        flex-direction:column;
        align-items:center;
    }
}


/* Contact Page
-------------------------------------------------------------------*/
.contact-page{
    overflow:hidden;
}

/* Contact Information
-------------------------------------------------------------------*/
.contact-info-section{
    border-bottom:1px solid color-mix(
        in srgb,
        var(--black) 8%,
        transparent
    );
}

.contact-info-item{
    position:relative;
    height:100%;
    padding:10px 24px;
}

.contact-info-section .col-lg-3:not(:last-child) .contact-info-item{
    border-right:1px solid color-mix(
        in srgb,
        var(--black) 12%,
        transparent
    );
}

.contact-info-item > svg,
.contact-info-item > i{
    color:var(--gold);
    font-size:2rem;
    margin-bottom:20px;
}

.contact-info-icon-outline path{
    fill:none;
    stroke:var(--gold);
    stroke-width:52;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.contact-info-title{
    margin:0 0 12px;
    color:var(--black);
    font-family:var(--ff-heading);
    font-size:1.2rem;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.contact-info-content{
    color:var(--black);
    font-size:.95rem;
    line-height:1.8;
}

.contact-info-content a{
    color:var(--black);
    text-decoration:none;
    transition:color .3s ease;
}

.contact-info-content a:hover{
    color:var(--gold);
}

.contact-main-image-wrap{
    min-height:100%;
}

.contact-main-image{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

@media (max-width:991.98px){

    .contact-main-image-wrap{
        min-height:560px;
    }
}

@media (max-width:767.98px){

    .contact-main-image-wrap{
        min-height:420px;
    }
}

/* Contact Form and Image
-------------------------------------------------------------------*/
.contact-main-section .about-story-image-wrap{
    width:100%;
    min-height:650px;
}

.contact-main-section .about-story-image{
    display:block;
    width:100%;
    height:100%;
    min-height:650px;
    object-fit:cover;
}

.contact-main-section .about-story-content{
    width:100%;
}

.contact-main-section .section-title{
    margin:8px 0 0;
    color:var(--black);
    font-size:clamp(2.6rem, 4vw, 4rem);
    line-height:1.05;
    letter-spacing:-.02em;
}

.contact-main-section .about-story-text{
    max-width:620px;
    color:var(--black);
    font-size:1rem;
    line-height:1.8;
}

.contact-main-section .about-story-text p:last-child{
    margin-bottom:0;
}

/* Contact Form 7
-------------------------------------------------------------------*/
.contact-main-section .wpcf7{
    width:100%;
}

.contact-main-section .wpcf7-form{
    width:100%;
}

.contact-main-section .form-label{
    display:block;
    margin-bottom:8px;
    color:var(--black);
    font-size:.82rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.contact-main-section .wpcf7-form-control-wrap{
    display:block;
    width:100%;
}

.form-control{
    display:block;
    width:100% !important;
    min-height:54px;
    padding:14px 16px;
    background:var(--white);
    border:1px solid color-mix(
        in srgb,
        var(--black) 16%,
        transparent
    );
    border-radius:0;
    color:var(--black);
    box-shadow:none;
    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}

.contact-main-section textarea.form-control{
    min-height:180px;
    resize:vertical;
}

.contact-main-section .form-control:focus{
    background:var(--white);
    border-color:var(--gold);
    color:var(--black);
    box-shadow:0 0 0 3px color-mix(
        in srgb,
        var(--gold) 14%,
        transparent
    );
}

.contact-main-section .form-control::placeholder{
    color:color-mix(
        in srgb,
        var(--black) 45%,
        transparent
    );
}

.contact-main-section .wpcf7-submit{
    width:auto;
    margin-top:8px;
}

.contact-main-section .wpcf7-spinner{
    margin:0 0 0 12px;
}

.contact-main-section .wpcf7-not-valid{
    border-color:var(--red);
}

.contact-main-section .wpcf7-not-valid-tip{
    margin-top:6px;
    color:var(--red);
    font-size:.85rem;
}

.contact-main-section .wpcf7-response-output{
    margin:24px 0 0 !important;
    padding:14px 18px !important;
    border:1px solid var(--gold) !important;
    color:var(--black);
}

/* Map
-------------------------------------------------------------------*/
.contact-map-section{
    position:relative;
    background:var(--white);
}

.contact-map-section iframe{
    display:block;
    width:100%;
    height:660px;
}

.contact-map-card{
    position:absolute;
    top:30%;
    left:clamp(24px, 7vw, 110px);
    z-index:2;
    width:min(360px, calc(100% - 48px));
    padding:45px;
    background:var(--white);
    color:var(--black);
    line-height:1.8;
    box-shadow:0 24px 70px color-mix(
        in srgb,
        var(--black) 18%,
        transparent
    );
    transform:translateY(-50%);
}

.contact-map-card > svg,
.contact-map-card > i{
    color:var(--gold);
    font-size:2rem;
    margin-bottom:20px;
}

.contact-map-card .section-title{
    margin:8px 0 0;
    color:var(--black);
    font-size:clamp(2.2rem, 3vw, 3rem);
    line-height:1.05;
}

.contact-map-card .btn-hero{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

/* Tablet
-------------------------------------------------------------------*/
@media (max-width:991.98px){

    .contact-info-section .col-lg-3:not(:last-child) .contact-info-item{
        border-right:0;
    }

    .contact-info-section .col-md-6:nth-child(odd) .contact-info-item{
        border-right:1px solid color-mix(
            in srgb,
            var(--black) 12%,
            transparent
        );
    }

    .contact-info-item{
        padding:24px;
    }

    .contact-main-section .about-story-image-wrap,
    .contact-main-section .about-story-image{
        min-height:560px;
    }
}

/* Mobile
-------------------------------------------------------------------*/
@media (max-width:767.98px){

    .contact-info-section .col-md-6:nth-child(odd) .contact-info-item{
        border-right:0;
    }

    .contact-info-section .col-md-6:not(:last-child) .contact-info-item{
        border-bottom:1px solid color-mix(
            in srgb,
            var(--black) 12%,
            transparent
        );
    }

    .contact-info-item{
        padding:28px 15px;
    }

    .contact-main-section .about-story-image-wrap,
    .contact-main-section .about-story-image{
        min-height:420px;
    }

    .contact-map-section{
        padding-bottom:40px;
    }

    .contact-map-section iframe{
        height:420px;
    }

    .contact-map-card{
        position:relative;
        top:auto;
        left:auto;
        width:calc(100% - 40px);
        margin:-70px auto 0;
        padding:35px 28px;
        transform:none;
    }
}

/* Footer
-------------------------------------------------------------------*/
.site-footer{
    position:relative;
    background-color:var(--black);
    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
    padding:28px 0;
    overflow:hidden;
    color:var(--white);
}

.site-footer .container{
    position:relative;
    z-index:2;
}

.site-footer .row{
    row-gap:3rem;
}

.footer-title{
    color:var(--gold);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .18em;
    font-family: var(--ff-default);
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-bottom:20px;
}

.footer-title-line{
    width:120px;
    max-width:100%;
    display:block;
    margin:0 auto 24px;
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer span,
.site-footer small{
    color:var(--white);
    font-size:1rem;
    line-height:1.7;
}

.site-footer a{
    text-decoration:none;
    transition:.3s ease;
}

.site-footer a:not(.custom-btn):hover,
.site-footer a:not(.custom-btn):focus{
    color:var(--gold);
}

.site-footer ul{
    list-style:none;
    margin:0;
    padding:0;
}

.site-footer li{
    margin-bottom:10px;
}

#menu-quick-links{
    list-style:none;
    padding:0;
    margin:0;

    display:grid;
    grid-template-columns:max-content max-content;
    column-gap:4rem;
    row-gap:.75rem;
}

#menu-quick-links li{
    margin:0;
    width:auto;
}

.site-footer a.custom-btn-outline{
    color:var(--gold);
}

.site-footer a.custom-btn-outline:hover{
    color:var(--white);
}

.site-footer .custom-logo,
.site-footer img{
    max-width:100%;
    height:auto;
    width:200px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:60px;
    padding-top:32px;
}

.footer-bottom p{
    margin:0;
    font-size:.95rem;
}

.footer-bottom small{
    display:block;
    margin-top:8px;
    opacity:.82;
}

.site-footer .line{
    width:140px;
    display:block;
    margin:0 auto 20px;
}

.footer-socials{
    display:flex;
    align-items:center;
    gap:.75rem;
}

.footer-socials a{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid var(--gold);
    border-radius:50%;

    color:var(--gold);
    font-size:1rem;

    text-decoration:none;
    transition:.3s ease;
}

.footer-socials a:hover{
    background:var(--gold);
    color:var(--white) !important;
    transform:translateY(-2px);
}

@media(max-width:1024px){
    .site-footer .col-lg-3{
        width:100%;
        text-align:center;
    }
    .site-footer .custom-logo, .site-footer img {
    max-width: 40%;
    height: auto;
}
#menu-quick-links {
    display: block;
}
.footer-socials {
    display: ruby;
    margin-top:20px;
}
}

@media(max-width:991px){

    .site-footer{
        text-align:center;
        padding:60px 0 24px;
    }

    .site-footer .col-lg-3{
        max-width:600px;
        margin:0 auto;
    }
    
    .site-footer .custom-logo,
    .site-footer img{
        max-width:70%;
        height:auto;
    }
    
    .footer-contact-stack{
        align-items:center;
        text-align:center;
    }

    .footer-contact-stack span{
        justify-content:center;
    }
    
    .footer-bottom{
        margin-top:40px;
        padding-top:24px;
    }

}

/* Mobile Bar */
.mobile-action-bar{
    position:fixed;
    right:0;
    bottom:0;
    left:0;
    z-index:9999;

    display:flex;
    align-items:stretch;

    min-height:70px;
    padding-bottom:env(safe-area-inset-bottom);

    background:var(--gold);
    box-shadow:0 -4px 16px rgba(0,0,0,.14);
}

.mobile-action-bar a{
    flex:1;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;

    padding:10px 4px;

    color:#fff;
    text-align:center;
    text-decoration:none;
}

.mobile-action-bar i{
    font-size:1.4rem;
    line-height:1;
}

.mobile-action-bar span{
    font-size:.75rem;
    font-weight:600;
    line-height:1;
}

.mobile-action-bar a:hover,
.mobile-action-bar a:focus{
    color:#fff;
    background:rgba(0,0,0,.1);
}

@media (max-width:767.98px){

    body{
        padding-bottom:70px;
    }

}

/* Back to Top
-------------------------------------------------------------------*/
.scrolltop {
    display: none;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    right: 1%;
    bottom: 0%;
    z-index: 1070;
}

@media screen and (max-width: 768px) {
    .scrolltop {
        right: 0%;
    }
}

@media screen and (max-width: 575px) {
    .scrolltop {
        display: none !important;
    }
}

.scroll {
    position: absolute;
    right: 0;
    bottom: 70px;
    background: var(--red);
    border-radius: 50%;
    text-align: center;
    margin: 0 0 0 0;
    cursor: pointer;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    width: 40px;
    height: 40px;
    color: #FFF;
    padding-top: 8px;
}

.scroll:hover {
    background: var(--gold);
}

.scroll .fas {
    font-size: 20px;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
}

@media (max-width: 1024px){
    .tablet-full-width{
        width:100%;
    }
    .tablet-two{
        width:50%;
    }
    .tablet-third{
        width:33.3333%;
    }
    .tablet-fourth{
        width:25%;
    }
    .catering-section .section-eyebrow-alt{
        margin-top: 3rem;
    }
    .catering-section .section-eyebrow-alt, .catering-section h2, .catering-section p {
        display: block;
        text-align: center;
    }
    .catering-cta p{
        text-align: left;
    }

    .page-banner-content{
        padding-top: 5rem;
    }
    .about-story-content-col {
        padding: 6rem 1rem;
}
}

@media (max-width: 991px){
    .sp-reservation-progress span{
    padding: .5rem !important;
}
.page-banner-title {
    font-size: 2.5rem;
}
.page-banner h2 {
    font-size: 1.75rem;
}

h3, .h3 {
    font-size: 2rem;
}
    .sp-catering-jump-legend {
        background: var(--white);
        color: var(--black);
    }
    .sp-catering-elegant-item-header {
        display: block;
}
.sp-catering-item-price-list{
    margin:1rem 0;
}
}