@font-face {
    font-family: 'ingram_monoregular';
    src:
        url('fonts/ingram-mono-regular-webfont.woff2') format('woff2'),
        url('fonts/ingram-mono-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #101010;
    font-family: 'ingram_monoregular';
    letter-spacing: 1px;
    line-height: 1.2;
    overflow-x: hidden;
}

#container {
    width: 100%;
}

.overlay-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    display: none;
}

.overlay-hero img {
    width: 100%;
    height 100vh;
    object-fit: contain;
    opacity: 0.5;
}

/* =========================
   SCROLL SNAP
========================= */
.mt-stack-spacer {
    position: relative;
    height: 100vh;
}

.mt-snap-point {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    pointer-events: none;
}

/* =========================
   SHARED TYPOGRAPHY
========================= */
.site-header,
.nav-link,
.mt-menu-btn,
button,
.mimi-panel-title,
.mimi-panel-body,
.hero-text,
.hero-text-2,
.hours-inner,
.mt-menu-close,
.mt-rule,
.mt-line,
.mt-desc,
.mt-footer,
.mt-cat,
.mt-subcat,
.mt-cat-btn,
.mt-drawer-arrow,
.mt-mobile-link,
.mt-mobile-close,
.mt-mobile-address {
    font-size: 14px;
}

.mt-mobile-link {
    display: inline-block !important;
}

.site-header,
.nav-link,
.mt-menu-btn,
.nav-left a,
.nav-right a,
.footer-left a,
.footer-center a,
.footer-right a,
.mimi-panel-title,
.mt-line,
.mt-cat,
.mt-subcat,
.mt-cat-btn,
.mt-mobile-link,
.mt-mobile-close,
.mt-mobile-address,
.hours-inner a {
    text-transform: uppercase;
}

.mt-mobile-link:hover,
.mt-mobile-link:visited,
.mt-mobile-link:active,
.mt-mobile-link:focus {
    color: #fff;
    border-bottom: 1px dashed #fff;
}

.mt-mobile-hours span {
    text-transform: none;
}

.mt-mobile-link:last-child {
    border-bottom: 0;
}

a:visited {
    color: #fff;
}

/* =========================
   HEADER / FOOTER
========================= */
.site-header,
#site-footer {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 60;
    background: transparent;
    pointer-events: auto;
    /*    mix-blend-mode: difference;*/
    color: #fff;
}

.site-header {
    top: 0;
    letter-spacing: .05em;
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.0));
    height: 200px;
}

#site-footer {
    bottom: 0;
}

.nav-inner,
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.nav-right,
.nav-left {
    align-self: flex-start;
    display: flex;
}

.footer-left,
.footer-center,
.footer-right {
    align-self: flex-end;
}

.footer-left {
    padding: 0;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

/* =========================
   LINKS / BUTTONS
========================= */
.nav-link {
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 18px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link:hover {
    mix-blend-mode: normal;
    color: #fff;
}

.nav-left a,
.nav-right a,
.footer-left a,
.footer-center a,
.footer-right a {
    color: inherit;
    text-decoration: none;
    letter-spacing: .05em;
    font-size: 14px;
}

.mt-menu-btn,
button {
    /*    appearance: none;*/
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.mt-menu-btn {
    display: block !important;
    width: 100%;
    letter-spacing: .05em;
    padding: 24px;
    align-self: flex-start;
}

/* =========================
   HERO
========================= */
.hero-blend-layer {
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
    isolation: isolate;
    background: transparent;
}

#hero {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    min-width: 240px;
    transform: scale(1);
    transform-origin: center;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    pointer-events: auto;
    transform: scale(1) translateY(4%);
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    mix-blend-mode: normal;
    opacity: 0.95;
}

.hero-text,
.hero-text-2,
.mimi-center-panel {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: difference;
    color: #fff;
    text-shadow: none;
}

.hero-text {
    top: 65%;
    left: 54%;
    opacity: 0;
    transition: opacity 800ms ease;
}

.hero-text-2 {
    top: 34%;
    left: 25%;
    opacity: 0;
    transition: opacity 800ms ease;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

/* =========================
   INITIAL REVEAL
========================= */
.mimi-center-panel,
.site-header,
#site-footer {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 800ms ease, transform 800ms ease;
}

.page-loaded .hero-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.page-loaded .hero-text-2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.page-loaded .mimi-center-panel {
    opacity: 1;
    transform: translateY(-50%);
    transition-delay: 1.3s;
}

.page-loaded .site-header,
.page-loaded #site-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.8s;
}

/* =========================
   STACK SCROLL
========================= */
.mt-stack {
    position: relative;
}

.mt-stack-stage {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    background: #fff;
}

.mt-stack-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: clip-path;
}

.mt-stack-layer.mt-a {
    z-index: 2;
    clip-path: inset(0 0 0 0);
}

.mt-stack-layer.mt-b {
    z-index: 1;
    clip-path: inset(100% 0 0 0);
}

.mt-stack-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 55%,
            rgba(0, 0, 0, 0.25) 85%,
            rgba(0, 0, 0, 0.45) 100%);
}

/* =========================
   LEFT PANEL TEXT
========================= */
.mimi-center-panel {
    top: 58%;
    left: 24px;
    transform: translateY(-50%);
    width: min(520px, 42vw);
    color: #fff;
}

.mimi-panel-title {
    font-weight: 100;
    letter-spacing: 0;
    line-height: 1.2;
}

.mimi-panel-body {
    /*    margin-top: 6px;*/
    font-weight: 100;
    line-height: 1.2;
    letter-spacing: 0;
    opacity: .9;
}

/* =========================
   RESERVE BUTTON
========================= */
.footer-right .reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.reserve-btn {
    /*    font-size: 0.5px;*/
}

.reserve-btn span {
    display: inline-block !important;
    font-size: 14px;
    transform: translateY(0);
    animation: reserveWave 3s ease-in-out infinite;
    will-change: transform;
}

.footer-right .reserve-btn span:nth-child(1) {
    animation-delay: .05s;
}

.footer-right .reserve-btn span:nth-child(2) {
    animation-delay: .10s;
}

.footer-right .reserve-btn span:nth-child(3) {
    animation-delay: .15s;
}

.footer-right .reserve-btn span:nth-child(4) {
    animation-delay: .20s;
}

.footer-right .reserve-btn span:nth-child(5) {
    animation-delay: .25s;
}

.footer-right .reserve-btn span:nth-child(6) {
    animation-delay: .30s;
}

.footer-right .reserve-btn span:nth-child(7) {
    animation-delay: .35s;
}

.footer-right .reserve-btn span:nth-child(8) {
    animation-delay: .40s;
}

.footer-right .reserve-btn span:nth-child(9) {
    animation-delay: .45s;
}

.footer-right .reserve-btn span:nth-child(10) {
    animation-delay: .50s;
}

.footer-right .reserve-btn span:nth-child(11) {
    animation-delay: .55s;
}

.footer-right .reserve-btn span:nth-child(12) {
    animation-delay: .60s;
}

.footer-right .reserve-btn span:nth-child(13) {
    animation-delay: .65s;
}

.footer-right .reserve-btn span:nth-child(14) {
    animation-delay: .70s;
}

.footer-right .reserve-btn span:nth-child(15) {
    animation-delay: .75s;
}

@keyframes reserveWave {

    0%,
    94%,
    100% {
        transform: translateY(0);
    }

    96% {
        transform: translateY(-3px);
    }

    98% {
        transform: translateY(0);
    }
}

/* =========================
   LOCATION & HOURS
========================= */
.hours-acc {
    justify-items: end;
    align-items: end;
}

.hours-acc > button,
.hours-btn {
    display: inline-block;
    width: max-content;
    font-size: 14px;
}

.hours-content {
    width: max-content;
    justify-self: end;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-2px);
    pointer-events: none;
    transition:
        max-height 420ms cubic-bezier(.22, 1, .36, 1),
        opacity 180ms ease,
        transform 180ms ease;
}

.hours-acc.is-open .hours-content {
    max-height: 260px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hours-inner {
    justify-self: end;
    letter-spacing: .02em;
    padding: 0 24px 24px;
}

.hours-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 14px;
    align-items: center;
}

.hours-row span:last-child {
    text-align: right;
    text-transform: none;
    letter-spacing: 0;
    opacity: .9;
}

/* =========================
   MENU DRAWER
========================= */
.mt-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    z-index: 9998;
}

.mt-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    /*    padding: 18px;*/
    overflow-y: auto;
    z-index: 9999;
    transform: translateX(calc(100% + 170px));
    transition: transform .5s cubic-bezier(.22, 1, .36, 1);
    font-family: 'ingram_monoregular';
}

.mt-menu-close span:first-child {
    top: 0;
}

.mt-menu-close span:last-child {
    top: 0;
}

.mt-menu-drawer.is-open {
    transform: translateX(0);
}

body.mt-menu-lock {
    overflow: hidden;
}

.mt-receipt {
    position: relative;
    padding: 0 20px 40px 20px;
    background: #e4dfd2;
    color: #111;
    font-family: 'ingram_monoregular';
}

.mt-receipt-head {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.mt-menu-close {
    position: relative;
    width: 26px;
    height: 34px;
    line-height: 1;
    /*    padding: 6px;*/
}

.mt-menu-close span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
}

.mt-menu-close span:first-child {
    top: 24px;
    transform: rotate(45deg);
    width: 100%;
    left: 10%;
}

.mt-menu-close span:last-child {
    top: 24px;
    transform: rotate(-45deg);
    width: 100%;
    left: 10%;
}

.mt-rule {
    opacity: .75;
    letter-spacing: .03em;
    white-space: nowrap;
    overflow: hidden;
}

.mt-item {
    padding: 18px 0;
}

#sec-drinks .mt-item {
    padding: 3px 0;
}

.mt-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    letter-spacing: .02em;
}

.mt-desc {
    letter-spacing: 0;
    text-transform: none;
    opacity: .85;
}

.mt-footer {
    margin-top: 64px;
    padding-top: 24px;
    line-height: 1.35;
    opacity: .85;
}

.mt-section {
    scroll-margin-top: 30px;
}

.mt-cat {
    position: sticky;
    top: 90px;
    z-index: 2;
    background: #e4dfd2;
    padding: 64px 0 16px;
    margin-bottom: 18px;
    letter-spacing: .08em;
    border-bottom: 1px dashed rgba(0, 0, 0, .8);
}

#sec-drinks .mt-line,
#sec-drinks .mt-line span {
    text-transform: none !important;
}

.mt-subcat {
    padding: 64px 0 18px;
    margin-bottom: 24px;
    border-bottom: 1px dashed #111;
}

.mt-section .mt-subcat:not(.mt-subcat ~ .mt-subcat) {
    padding-top: 0 !important;
}

.receipt-ascii {
    font-size: 7px;
    letter-spacing: -0.5px;
}

/* =========================
   DRAWER TOP NAV
========================= */
.mt-drawer-top {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    /*    gap: 12px;*/
    padding: 18px 0 0px;
    background: #e4dfd2;
}

.mt-drawer-close {
    display: flex;
    justify-content: flex-end;
}

.mt-drawer-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.mt-drawer-nav::-webkit-scrollbar {
    display: none;
}

.mt-drawer-arrows {
    display: flex;
    justify-content: space-between;
    /*    padding-top: 6px;*/
    position: relative;
    top: -6px;
    pointer-events: none;
    font-size: 16px;
}

.mt-drawer-arrow {
    opacity: .65;
    transition: opacity .2s ease;
}

.mt-drawer-arrow:hover {
    opacity: 1;
}

.mt-drawer-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.mt-cat-btn {
    position: relative;
    padding: 0;
    letter-spacing: .05em;
    white-space: nowrap;
}

.mt-cat-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.mt-cat-btn:hover::after,
.mt-cat-btn.is-active::after {
    transform: scaleX(1);
}

.mt-cat-sep {
    opacity: .6;
    flex: 0 0 auto;
}

/* =========================
   MOBILE MENU
========================= */
.mt-burger {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.mt-burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform .22s ease, top .22s ease, opacity .22s ease;
}

.mt-burger span:nth-child(1) {
    top: 0px;
}

.mt-burger span:nth-child(2) {
    top: 6px;
}

.mt-burger span:nth-child(3) {
    top: 12px;
}

.mt-burger.is-open span:first-child {
    top: 9px;
}

.mt-burger.is-open span:last-child {
    top: 10px;
    opacity: .7;
}

.mt-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .18);
    z-index: 9998;
}

.mt-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 200px;
    height: auto;
    overflow: hidden;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    background: #5b3725;
    color: #fff;
}

.mt-mobile-drawer.is-open {
    transform: translateY(0);
}

.mt-mobile-inner {
    padding: 18px 14px 0px;
    display: flex;
    flex-direction: column;
}

.mt-mobile-close {
    align-self: flex-end;
    position: relative;
    width: 32px;
    height: 12px;
    padding: 0 0 12px;
}

.mt-mobile-close span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
}

.mt-mobile-close span:first-child {
    top: 6px;
    transform: rotate(-45deg);
    width: 80%;
    left: 10%;

}

.mt-mobile-close span:last-child {
    top: 6px;
    transform: rotate(45deg);
    width: 80%;
    left: 10%;
}

.mt-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mt-mobile-link {
    padding: 20px;
    text-align: left;
    color: inherit;
    text-decoration: none;
    display: flex;
    align-self: flex-start;
    width: 100%;
}

.mt-mobile-hours {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition:
        max-height .45s cubic-bezier(.22, 1, .36, 1),
        opacity .25s ease,
        transform .25s ease;
}

.mt-mobile-hours.is-open {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
}

.mt-mobile-hours .hours-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 2px 0;
    font-size: 12px;
}

.mt-mobile-hours .hours-row:first-child {
    margin-top: 12px;
}

.mt-mobile-hours .hours-row span:last-child {
    text-align: right;
}

.mt-mobile-address {
    margin-top: 16px;
}

#typed-text {
    display: inline-block;
    line-height: 1.2;
}

.cursor {
    display: inline;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}


.hero-scroll {
    /*        text-align: center;*/
    color: white;
    position: fixed;
    bottom: 0;
    /*        width: 100%;*/
    left: 0;
    padding: 20px;
    z-index: 9999;
    font-size: 14px;
    animation: scroll 2s linear infinite;
    bottom: 0;
  left: calc(50% - 30px);
  width: 30px;
}

.hero-scroll-v {
    transform: rotate(90deg);
    font-size: 16px;
    line-height: 10px;
}

    @keyframes scroll {
        0% {
            opacity: 1;
            transform: translateY(-5px);
        }

        50% {
            opacity: 0.3;
            transform: translateY(0px);
        }

        100% {
            opacity: 1;
            transform: translateY(-5px);
        }
    }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .main-navigation,
    #site-footer {
        padding: 10px 14px;
    }

    .site-header {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-logo {
        width: 100%;
        min-width: 0;
        transform: translateY(3%);
        transition: none !important;
        will-change: auto;
    }

    .hero-scroll {
        /*        text-align: center;*/
        color: white;
        position: fixed;
        bottom: 0;
        /*        width: 100%;*/
        left: 0;
        padding: 23px 20px;
        z-index: 9999;
        font-size: 12px;
        animation: scroll 2s linear infinite;
        width: auto;
    }

    .hero-scroll-v {
        transform: rotate(90deg);
        font-size: 20px;
        line-height: 10px;
    }



    .hero-text,
    .hero-text-2,
    .mimi-panel-title,
    .mimi-panel-body,
    .mt-menu-btn,
    .mt-menu-close,
    .mt-rule,
    .mt-line,
    .mt-desc,
    .mt-footer,
    .mt-cat,
    .mt-subcat,
    .mt-cat-btn,
    .mt-drawer-arrow,
    .mt-mobile-link,
    .mt-mobile-close,
    .mt-mobile-hours .hours-row,
    .mt-mobile-address,
    .reserve-btn span {
        font-size: 12px;
    }

    .mimi-panel-title,
    .mimi-panel-body {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .mt-drawer-arrow {
        font-size: 14px;
    }

    .mt-mobile-link {
        border-bottom: 1px dashed #fff;
    }

    .hero-text {
        /*        left: 25%;*/
        top: 72%;
        width: 100%;
        text-align: center;
        font-size: 12px;
        display: inline-block;
        left: 0;
        line-height: 1;
        font-weight: 100;
    }

    .hero-text-2 {
        top: 22.5%;
        /*        left: 20px;*/
        width: 100%;
        text-align: center;
        font-size: 12px;
        line-height: 1;
        font-weight: 100;
        left: 0;
        display: inline-block;
    }

    .mimi-center-panel {
        /*         display: none;*/
        padding: 20px 20px 20px 50px;
        bottom: 0;
        left: 0;
        top: auto;
        right: 0;
        transform: none !important;
        width: 100%;
        align-content: flex-end;
        text-align: right;
        /*        mix-blend-mode: difference;*/
        line-height: 1.2;
    }

    .mimi-panel-body {
        margin-top: 0;
    }

    p {
        margin-bottom: 0;
    }

    .mt-burger {
        display: block;
    }

    .nav-inner {
        display: none;
    }

    .footer-left,
    .footer-center {
        display: none;
    }

    .footer-right {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    #mtMenu {
        width: 100%;
        padding: 0;
    }

    .mt-receipt {
        padding: 0 14px 14px;
    }

    .mt-drawer-top {
        top: 0;
        padding-top: 0;
    }

    .mt-drawer-nav {
        gap: 8px;
        padding: 12px 0;
    }

    .mt-cat {
        top: 48px;
        padding: 60px 0 8px;
        margin-bottom: 18px;
    }

    .mt-subcat {
        padding: 60px 0 12px;
    }

    .mt-item {
        padding: 18px 0;
    }

    .mt-footer {
        margin-top: 0;
    }

    .hours-inner {
        width: min(320px, calc(100vw - 24px));
    }

    #site-footer {
        padding: 0;
        mix-blend-mode: normal;
    }

    .footer-right {
        width: 100%;
        display: none;
    }

    .reserve-btn {
        width: 100%;
        padding: 12px 12px;
        background: white;
        color: black;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reserve-btn:hover {
        color: #fff;
    }
}

@media (max-width: 900px) {
    .mt-stack-layer {
        background-position: center center;
    }
}
