*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}
/* =========================================================
   WAIMAUKU PIZZA
   REFERENCE STYLE HEADER
========================================================= */

:root {

    --wkp-bg: #f3f3f3;
    --wkp-black: #050505;

    --wkp-orange: #ff6817;
    --wkp-orange-dark: #ec5410;

    --wkp-line: rgba(0, 0, 0, .24);

}


/* =========================================================
   RESET
========================================================= */

.wkpRefHeader *,
.wkpRefHeader *::before,
.wkpRefHeader *::after {

    box-sizing: border-box;

}


/* =========================================================
   HEADER
========================================================= */

.wkpRefHeader {

position: relative;

left: 0;

top: 0;

width: 100%;

z-index: 9999;

background: #fefdfe;

font-family:
        Arial,
        Helvetica,
        sans-serif;

transition:
        transform .45s cubic-bezier(.16, 1, .3, 1),
        box-shadow .35s ease,
        background .35s ease;
}


/* scroll shadow */

.wkpRefHeader.is-scrolled {

    box-shadow:
        0 7px 22px rgba(0, 0, 0, .065);

}


.wkpRefHeader.is-hidden {

    transform: translateY(-110%);

}


/* =========================================================
   INNER
========================================================= */

.wkpRefHeader__inner {

    position: relative;

    width: calc(100% - 64px);

    max-width: 1535px;

    height: 81px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

}


/* dotted divider similar to reference */

.wkpRefHeader__inner::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 5px;

    height: 1px;

    background:

        repeating-linear-gradient(
            to right,
            rgba(0, 0, 0, .25) 0,
            rgba(0, 0, 0, .25) 4px,
            transparent 4px,
            transparent 10px
        );

}


/* =========================================================
   LEFT NAV
========================================================= */

.wkpRefHeader__nav {

display: flex;

align-items: center;

justify-content: flex-start;

gap: 60px;
}


.wkpRefHeader__link {

position: relative;

color: var(--wkp-black);

font-size: 17px;

line-height: 1;

font-weight: 800;

letter-spacing: -.35px;

text-decoration: none;

white-space: nowrap;

padding: 13px 0;

transition:
        color .3s ease,
        transform .3s cubic-bezier(.16, 1, .3, 1);
}


/* hover line */

.wkpRefHeader__link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 5px;

    width: 100%;
    height: 2px;

    background: var(--wkp-orange);

    transform: scaleX(0);

    transform-origin: right;

    transition:
        transform .42s cubic-bezier(.16, 1, .3, 1);

}


.wkpRefHeader__link:hover {

    color: var(--wkp-orange);

    transform: translateY(-2px);

}


.wkpRefHeader__link:hover::after {

    transform: scaleX(1);

    transform-origin: left;

}


/* =========================================================
   CENTER LOGO
========================================================= */

.wkpRefHeader__brand {

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -55%);

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

}


.wkpRefHeader__logo {

display: block;

width: auto;

height: 70px;

max-width: 155px;

object-fit: contain;

transition:
        transform .4s cubic-bezier(.16, 1, .3, 1);
}


.wkpRefHeader__brand:hover
.wkpRefHeader__logo {

    transform:
        scale(1.045)
        rotate(-1deg);

}


/* =========================================================
   RIGHT CTA
========================================================= */

.wkpRefHeader__right {

    grid-column: 3;

    display: flex;

    justify-content: flex-end;

    align-items: center;

}


.wkpRefHeader__order {

    position: relative;

    width: 218px;
    height: 51px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: var(--wkp-orange);

    color: #000;

    border: 1.5px solid #000;

    text-decoration: none;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: -.25px;

    white-space: nowrap;

    transition:
        color .35s ease,
        transform .3s ease;

}


/* animated dark hover */

.wkpRefHeader__order::before {

    content: "";

    position: absolute;

    inset: 0;

    background: #000;

    transform: translateY(102%);

    transition:
        transform .45s cubic-bezier(.16, 1, .3, 1);

}


.wkpRefHeader__order span {

    position: relative;

    z-index: 2;

    transition:
        color .35s ease;

}


.wkpRefHeader__order:hover::before {

    transform: translateY(0);

}


.wkpRefHeader__order:hover span {

    color: #fff;

}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.wkpRefHeader__toggle {

    display: none;

    width: 50px;
    height: 50px;

    background: var(--wkp-orange);

    border: 1.5px solid #000;

    padding: 0;

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 7px;

}


.wkpRefHeader__toggle span {

    display: block;

    width: 22px;
    height: 2px;

    background: #000;

    transition:
        transform .35s ease,
        width .35s ease;

}


.wkpRefHeader__toggle span:last-child {

    width: 15px;

}


.wkpRefHeader__toggle:hover span:last-child {

    width: 22px;

}


/* =========================================================
   DESKTOP INTRO
========================================================= */

.wkpRefHeader__link,
.wkpRefHeader__brand,
.wkpRefHeader__order {

    opacity: 0;

    animation:
        wkpRefIntro
        .7s
        cubic-bezier(.16, 1, .3, 1)
        forwards;

}


.wkpRefHeader__link:nth-child(1) {

    animation-delay: .05s;

}


.wkpRefHeader__link:nth-child(2) {

    animation-delay: .10s;

}


.wkpRefHeader__link:nth-child(3) {

    animation-delay: .15s;

}


.wkpRefHeader__link:nth-child(4) {

    animation-delay: .20s;

}


.wkpRefHeader__brand {

    animation-delay: .18s;

}


.wkpRefHeader__order {

    animation-delay: .25s;

}


@keyframes wkpRefIntro {

    from {

        opacity: 0;

        transform: translateY(-10px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* brand has its own transform */

.wkpRefHeader__brand {

    animation-name: wkpLogoIntro;

}


@keyframes wkpLogoIntro {

    from {

        opacity: 0;

        transform:
            translate(-50%, -70%);

    }

    to {

        opacity: 1;

        transform:
            translate(-50%, -55%);

    }

}


/* =========================================================
   MOBILE MENU
========================================================= */

.wkpRefMobile {

    display: none;

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1350px) {

    .wkpRefHeader__inner {

        width: calc(100% - 40px);

    }


    .wkpRefHeader__nav {

        gap: 18px;

    }


    .wkpRefHeader__link {

        font-size: 16px;

    }


    .wkpRefHeader__order {

        width: 185px;

        font-size: 16px;

    }


    .wkpRefHeader__logo {

        max-width: 135px;

        height: 45px;

    }

}


/* =========================================================
   SMALL LAPTOP
========================================================= */

@media (max-width: 1080px) {

    .wkpRefHeader__nav {

        gap: 14px;

    }


    .wkpRefHeader__link {

        font-size: 14px;

    }


    .wkpRefHeader__order {

        width: 160px;

        height: 47px;

        font-size: 14px;

    }

}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 900px) {

    .wkpRefHeader__inner {

        width: calc(100% - 28px);

        height: 73px;

        display: flex;

        align-items: center;

        justify-content: space-between;

    }


    .wkpRefHeader__inner::after {

        bottom: 2px;

    }


    /* desktop nav hidden */

    .wkpRefHeader__nav,
    .wkpRefHeader__right {

        display: none;

    }


    /* logo left */

    .wkpRefHeader__brand {

        position: static;

        transform: none;

        animation: none;

        opacity: 1;

        justify-content: flex-start;

    }


    .wkpRefHeader__logo {

        height: 46px;

        max-width: 140px;

    }


    /* toggle right */

    .wkpRefHeader__toggle {

        display: flex;

    }


    /* =====================================================
       MOBILE MENU
    ===================================================== */

    .wkpRefMobile {

position: fixed;

inset: 0;

width: 100%;

height: 100dvh;

padding:
            14px
            20px
            22px;

background: var(--wkp-bg);

display: flex;

flex-direction: column;

z-index: 10000;

visibility: hidden;

opacity: 0;

transform: translateY(-100%);

transition:
            transform .62s cubic-bezier(.76, 0, .24, 1),
            opacity .35s ease,
            visibility .62s;

}


    .wkpRefMobile.is-open {

        visibility: visible;

        opacity: 1;

        transform: translateY(0);

    }


    /* TOP */

    .wkpRefMobile__top {

        min-height: 60px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        position: relative;

    }


    .wkpRefMobile__top::after {

        content: "";

        position: absolute;

        left: 0;
        right: 0;
        bottom: -8px;

        height: 1px;

        background:

            repeating-linear-gradient(
                to right,
                rgba(0, 0, 0, .25) 0,
                rgba(0, 0, 0, .25) 4px,
                transparent 4px,
                transparent 10px
            );

    }


    .wkpRefMobile__brand {

        width: 135px;

        display: flex;

        align-items: center;

    }


    .wkpRefMobile__brand img {

width: 100%;

max-height: 70px;

object-fit: contain;

}


    /* CLOSE */

    .wkpRefMobile__close {

        position: relative;

        width: 50px;
        height: 50px;

        padding: 0;

        background: var(--wkp-orange);

        border: 1.5px solid #000;

        cursor: pointer;

    }


    .wkpRefMobile__close span {

        position: absolute;

        left: 50%;
        top: 50%;

        width: 23px;
        height: 2px;

        background: #000;

    }


    .wkpRefMobile__close span:first-child {

        transform:
            translate(-50%, -50%)
            rotate(45deg);

    }


    .wkpRefMobile__close span:last-child {

        transform:
            translate(-50%, -50%)
            rotate(-45deg);

    }


    /* LINKS */

    .wkpRefMobile__nav {

        margin: auto 0;

        display: flex;

        flex-direction: column;

    }


    .wkpRefMobile__link {

        position: relative;

        display: block;

        padding: 14px 0;

        color: #000;

        text-decoration: none;

        overflow: hidden;

        opacity: 0;

        transform: translateY(24px);

        transition:
            opacity .45s ease,
            transform .55s cubic-bezier(.16, 1, .3, 1);

    }


    .wkpRefMobile__link::after {

        content: "";

        position: absolute;

        left: 0;
        bottom: 0;

        width: 100%;
        height: 1px;

        background:

            repeating-linear-gradient(
                to right,
                rgba(0, 0, 0, .22) 0,
                rgba(0, 0, 0, .22) 4px,
                transparent 4px,
                transparent 10px
            );

    }


    .wkpRefMobile__link span {

        font-size: clamp(34px, 10vw, 54px);

        line-height: .95;

        font-weight: 900;

        letter-spacing: -1.6px;

        transition:
            color .3s ease,
            padding-left .35s ease;

    }


    .wkpRefMobile__link:hover span {

        color: var(--wkp-orange);

        padding-left: 10px;

    }


    .wkpRefMobile.is-open
    .wkpRefMobile__link {

        opacity: 1;

        transform: translateY(0);

    }


    .wkpRefMobile.is-open
    .wkpRefMobile__link:nth-child(1) {

        transition-delay: .18s;

    }


    .wkpRefMobile.is-open
    .wkpRefMobile__link:nth-child(2) {

        transition-delay: .24s;

    }


    .wkpRefMobile.is-open
    .wkpRefMobile__link:nth-child(3) {

        transition-delay: .30s;

    }


    .wkpRefMobile.is-open
    .wkpRefMobile__link:nth-child(4) {

        transition-delay: .36s;

    }


    /* MOBILE ORDER */

    .wkpRefMobile__order {

        min-height: 58px;

        display: flex;

        align-items: center;

        justify-content: center;

        background: var(--wkp-orange);

        border: 1.5px solid #000;

        color: #000;

        text-decoration: none;

        font-size: 17px;

        font-weight: 900;

        letter-spacing: -.25px;

        transition:
            background .3s ease,
            color .3s ease;

    }


    .wkpRefMobile__order:hover {

        background: #000;

        color: #fff;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .wkpRefHeader__inner {

        width: calc(100% - 20px);

        height: 68px;

    }


    .wkpRefHeader__logo {

max-width: 125px;

height: 57px;

}


    .wkpRefHeader__toggle,
    .wkpRefMobile__close {

        width: 46px;
        height: 46px;

    }


    .wkpRefMobile {

        padding-left: 14px;
        padding-right: 14px;

    }


    .wkpRefMobile__brand {

        width: 120px;

    }


    .wkpRefMobile__link {

padding: 20px 0;

text-align: center;

}


    .wkpRefMobile__link span {

        font-size: 39px;

    }


    .wkpRefMobile__order {

        min-height: 54px;

        font-size: 15px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .wkpRefHeader *,
    .wkpRefMobile * {

        animation: none !important;

        transition-duration: .01ms !important;

    }

}
/* =========================================================
   HERO SECTION - WAIMAUKU PIZZA
========================================================= */

:root {
    --wai-green: #18784d;
    --wai-white: #efefef;
    --wai-black: #050505;
    --wai-orange: #ff6f1d;
    --wai-orange-dark: #ea5f12;
    --wai-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.waiHeroMatters,
.waiHeroMatters * {
    box-sizing: border-box;
}

.waiHeroMatters {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--wai-green);
    overflow: hidden;
    padding: 70px 28px 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
}

.waiHeroMatters__wrap {
    width: min(100%, 1380px);
    min-height: calc(100vh - 56px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* =========================================================
   HEADING
========================================================= */

.waiHeroMatters__headingBox {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 12px;
}

.waiHeroMatters__title {
    margin: 0;
    font-family: "Anton", sans-serif;
    font-size: clamp(72px, 13vw, 220px);
    line-height: .88;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: var(--wai-white);
    font-weight: 800;
}

/* =========================================================
   VISUAL ZONE
========================================================= */

.waiHeroMatters__visualZone {
    position: relative;
    flex: 1;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waiHeroMatters__stack {
    position: relative;
    width: min(100%, 760px);
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.waiHeroMatters__card {
    position: absolute;
    width: 250px;
    background: #fff;
    padding: 6px;
    box-shadow: var(--wai-shadow);
    transition: transform .45s ease, box-shadow .45s ease;
    will-change: transform;
}

.waiHeroMatters__cardImg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.waiHeroMatters__card--left {
    left: 70px;
    bottom: 15px;
    height: 315px;
    transform: rotate(-10deg);
    z-index: 1;
}

.waiHeroMatters__card--center {
    width: 260px;
    height: 420px;
    z-index: 3;
    transform: rotate(0deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.waiHeroMatters__card--right {
    right: 70px;
    bottom: 15px;
    height: 315px;
    transform: rotate(7deg);
    z-index: 2;
}

.waiHeroMatters__card:hover {
    box-shadow: 0 26px 46px rgba(0, 0, 0, 0.24);
}

.waiHeroMatters__card:hover.waiHeroMatters__card--left {
    transform: rotate(-8deg) translateY(-6px);
}

.waiHeroMatters__card:hover.waiHeroMatters__card--center {
    transform: translateY(-8px);
}

.waiHeroMatters__card:hover.waiHeroMatters__card--right {
    transform: rotate(5deg) translateY(-6px);
}

/* =========================================================
   CENTER CTA
========================================================= */

.waiHeroMatters__eatNow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 100%;
    background: var(--wai-orange);
    color: var(--wai-black);
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    text-transform: uppercase;
    transition: background .3s ease, color .3s ease;
}

.waiHeroMatters__eatNow:hover {
    background: var(--wai-black);
    color: #fff;
}

/* =========================================================
   DOODLES
========================================================= */

.waiHeroMatters__leftArrow,
.waiHeroMatters__rightScribble {
    position: absolute;
    color: #111;
    z-index: 1;
    pointer-events: none;
}

.waiHeroMatters__leftArrow {
    left: 95px;
    top: 50%;
    width: clamp(180px, 20vw, 300px);
    transform: translateY(20px);
    z-index: 4;
}

.waiHeroMatters__leftArrow svg {
    width: 100%;
    height: auto;
    display: block;
}

.waiHeroMatters__rightScribble {
    right: 201px;
    top: 50%;
    width: clamp(110px, 13vw, 180px);
    transform: translateY(-10px);
    rotate: 196deg;
    z-index: 4;
}

.waiHeroMatters__rightScribble svg {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   BOTTOM TEXT
========================================================= */

.waiHeroMatters__bottomRow {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 18px;
}

.waiHeroMatters__info {
    max-width: 390px;
}

.waiHeroMatters__info p {
    margin: 0;
    color: var(--wai-white);
    font-family: "Space Mono", monospace;
    font-size: 14px;
    line-height: 1.32;
    text-transform: uppercase;
}

.waiHeroMatters__info--right {
    text-align: right;
}

/* =========================================================
   BOTTOM ORDER BUTTON
========================================================= */

.waiHeroMatters__bottomBtnWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.waiHeroMatters__bottomBtn {
    min-width: 240px;
    min-height: 58px;
    padding: 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wai-orange);
    color: var(--wai-black);
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    transition: transform .35s ease, background .35s ease, color .35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.waiHeroMatters__bottomBtn:hover {
    transform: translateY(-4px);
    background: var(--wai-black);
    color: #fff;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
    .waiHeroMatters {
        padding: 24px 20px 28px;
    }

    .waiHeroMatters__stack {
        width: min(100%, 670px);
        height: 390px;
    }

    .waiHeroMatters__card {
        width: 220px;
    }

    .waiHeroMatters__card--left,
    .waiHeroMatters__card--right {
        height: 280px;
    }

    .waiHeroMatters__card--left {
        left: 72px;
    }

    .waiHeroMatters__card--right {
        right: 72px;
    }

    .waiHeroMatters__card--center {
        width: 230px;
        height: 375px;
    }

    .waiHeroMatters__leftArrow {
        left: 0;
        width: 220px;
    }

    .waiHeroMatters__rightScribble {
        right: 10px;
        width: 130px;
    }
}

@media (max-width: 991px) {
    .waiHeroMatters {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 34px;
    }

    .waiHeroMatters__wrap {
        min-height: auto;
        gap: 26px;
    }

    .waiHeroMatters__headingBox {
        margin-bottom: 0;
    }

    .waiHeroMatters__visualZone {
        min-height: 360px;
    }

    .waiHeroMatters__stack {
        width: min(100%, 560px);
        height: 350px;
    }

    .waiHeroMatters__card {
        width: 180px;
    }

    .waiHeroMatters__card--left,
    .waiHeroMatters__card--right {
        height: 235px;
        bottom: 25px;
    }

    .waiHeroMatters__card--center {
        width: 195px;
        height: 330px;
    }

    .waiHeroMatters__card--left {
        left: 52px;
    }

    .waiHeroMatters__card--right {
        right: 52px;
    }

    .waiHeroMatters__leftArrow {
        width: 160px;
        top: 57%;
    }

    .waiHeroMatters__rightScribble {
        width: 95px;
        top: 54%;
    }

    .waiHeroMatters__bottomRow {
        gap: 16px;
    }

    .waiHeroMatters__info p {
        font-size: 12px;
    }

    .waiHeroMatters__bottomBtn {
        min-width: 220px;
        min-height: 54px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .waiHeroMatters {
        padding: 26px 14px 26px;
    }

    .waiHeroMatters__title {
        font-size: clamp(52px, 14vw, 92px);
    }

    .waiHeroMatters__visualZone {
        min-height: 315px;
    }

    .waiHeroMatters__stack {
        width: 100%;
        max-width: 420px;
        height: 300px;
    }

    .waiHeroMatters__card {
        width: 132px;
        padding: 4px;
    }

    .waiHeroMatters__card--left,
    .waiHeroMatters__card--right {
        height: 185px;
        bottom: 38px;
    }

    .waiHeroMatters__card--left {
        left: 12px;
        transform: rotate(-9deg);
    }

    .waiHeroMatters__card--right {
        right: 12px;
        transform: rotate(8deg);
    }

    .waiHeroMatters__card--center {
        width: 155px;
        height: 266px;
    }

    .waiHeroMatters__eatNow {
        min-height: 40px;
        font-size: 13px;
    }

    .waiHeroMatters__leftArrow {
        width: 120px;
        left: -6px;
        top: 52%;
        transform: translateY(0);
    }

    .waiHeroMatters__rightScribble {
        width: 75px;
        right: -6px;
        top: 52%;
    }

    .waiHeroMatters__bottomRow {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 6px;
        margin-bottom: 14px;
    }

    .waiHeroMatters__info,
    .waiHeroMatters__info--right {
        max-width: 100%;
        text-align: center;
    }

    .waiHeroMatters__info p {
        font-size: 11px;
        line-height: 1.45;
    }

    .waiHeroMatters__bottomBtn {
        width: 100%;
        max-width: 280px;
        min-height: 52px;
        font-size: 15px;
    }
}

@media (max-width: 479px) {
    .waiHeroMatters__visualZone {
        min-height: 280px;
    }

    .waiHeroMatters__stack {
        max-width: 330px;
        height: 250px;
    }

    .waiHeroMatters__card {
        width: 105px;
    }

    .waiHeroMatters__card--left,
    .waiHeroMatters__card--right {
        height: 148px;
        bottom: 42px;
    }

    .waiHeroMatters__card--center {
        width: 128px;
        height: 228px;
    }

    .waiHeroMatters__eatNow {
        min-height: 36px;
        font-size: 11px;
    }

    .waiHeroMatters__leftArrow {
        width: 90px;
        left: 60px;
        top: 91%;
        rotate: 344deg;
    }

    .waiHeroMatters__rightScribble {
        width: 58px;
        right: -10px;
        display: none;
    }

    .waiHeroMatters__info p {
        font-size: 11px;
    }

    .waiHeroMatters__bottomBtn {
        min-height: 48px;
        font-size: 14px;
        padding: 0 24px;
    }
}


:root{
    --wz-about-bg: #efefef;
    --wz-about-green: #17754d;
    --wz-about-orange: #ff6c1b;
    --wz-about-black: #111111;
    --wz-about-white: #ffffff;
}

.wzGarageAbout,
.wzGarageAbout *{
    box-sizing: border-box;
}

.wzGarageAbout{
    position: relative;
    width: 100%;
    background: var(--wz-about-bg);
    overflow: hidden;
    padding: 70px 24px 70px;
}

.wzGarageAbout__container{
    width: min(100%, 1320px);
    margin: 0 auto;
    position: relative;
    min-height: 760px;
}

/* =========================================================
   CONTENT
========================================================= */

.wzGarageAbout__content{
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.wzGarageAbout__flame{
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 3;
}

.wzGarageAbout__flame svg{
    width: 200px;
    height: 200px;
    display: block;
    animation: wzFlameFloat 2.8s ease-in-out infinite;
}

@keyframes wzFlameFloat{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-6px); }
}

.wzGarageAbout__title{
    margin: 0;
    text-align: center;
    color: var(--wz-about-green);
    font-family: "Anton", sans-serif;
    font-size: clamp(48px, 6.1vw, 92px);
    line-height: .92;
    letter-spacing: .01em;
    text-transform: uppercase;
    max-width: 950px;
}

.wzGarageAbout__plateWrap{
    margin-top: 42px;
    position: relative;
    z-index: 3;
}

.wzGarageAbout__plate{
    width: min(100%, 390px);
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 16px 22px rgba(0,0,0,.12));
    transition: transform .4s ease;
}

.wzGarageAbout__plate:hover{
    transform: translateY(-6px) scale(1.02);
}

.wzGarageAbout__copy{
    margin-top: 16px;
    max-width: 520px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.wzGarageAbout__stars{
    display: block;
    margin-bottom: 8px;
    color: var(--wz-about-black);
    font-family: "Space Mono", monospace;
    font-size: 18px;
    line-height: 1;
    letter-spacing: .04em;
}

.wzGarageAbout__copy p{
    margin: 0;
    color: var(--wz-about-black);
    font-family: "Space Mono", monospace;
    font-size: 12px;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: .03em;
}

/* =========================================================
   PIXEL HANDS
========================================================= */

.wzGarageAbout__hand{
    position: absolute;
    z-index: 2;
    width: clamp(120px, 14vw, 185px);
    transition:
        transform .9s cubic-bezier(.16,1,.3,1),
        opacity .65s ease;
    opacity: 0;
    will-change: transform;
}

.wzGarageAbout__hand svg{
    width: 100%;
    height: auto;
    display: block;
}

/* default hidden positions */

.wzGarageAbout__hand--left{
    left: -220px;
    top: 380px;
    transform: translateX(0);
}

.wzGarageAbout__hand--right{
    right: -220px;
    top: 378px;
    transform: translateX(0);
}

/* visible on scroll */

.wzGarageAbout.in-view .wzGarageAbout__hand--left{
    transform: translateX(240px);
    opacity: 1;
}

.wzGarageAbout.in-view .wzGarageAbout__hand--right{
    transform: translateX(-240px);
    opacity: 1;
}

/* =========================================================
   EXTRA SUBTLE BACKGROUND LINES
========================================================= */

.wzGarageAbout__container::before,
.wzGarageAbout__container::after{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.wzGarageAbout__container::before{
    background:
        linear-gradient(45deg,
            transparent calc(50% - 1px),
            rgba(0,0,0,.08) 50%,
            transparent calc(50% + 1px));
}

.wzGarageAbout__container::after{
    background:
        linear-gradient(-45deg,
            transparent calc(50% - 1px),
            rgba(0,0,0,.08) 50%,
            transparent calc(50% + 1px));
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px){

    .wzGarageAbout{
        padding: 60px 18px 60px;
    }

    .wzGarageAbout__container,
    .wzGarageAbout__content{
        min-height: 680px;
    }

    .wzGarageAbout__flame svg{
        width: 72px;
        height: 72px;
    }

    .wzGarageAbout__plate{
        width: min(100%, 320px);
    }

    .wzGarageAbout__hand--left{
        left: -170px;
        top: 350px;
    }

    .wzGarageAbout__hand--right{
        right: -170px;
        top: 350px;
    }

    .wzGarageAbout.in-view .wzGarageAbout__hand--left{
        transform: translateX(190px);
    }

    .wzGarageAbout.in-view .wzGarageAbout__hand--right{
        transform: translateX(-190px);
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px){

    .wzGarageAbout{
        padding: 48px 14px 50px;
    }

    .wzGarageAbout__container,
    .wzGarageAbout__content{
        min-height: auto;
    }

    .wzGarageAbout__flame{
        margin-bottom: 14px;
    }

    .wzGarageAbout__flame svg{
        width: 100px;
        height: 100px;
    }

    .wzGarageAbout__title{
        font-size: clamp(34px, 10.5vw, 54px);
        max-width: 100%;
    }

    .wzGarageAbout__plateWrap{
        margin-top: 30px;
    }

    .wzGarageAbout__plate{
        width: min(100%, 265px);
    }

    .wzGarageAbout__copy{
        margin-top: 12px;
        max-width: 100%;
    }

    .wzGarageAbout__copy p{
        font-size: 10px;
        line-height: 1.5;
    }

    .wzGarageAbout__stars{
        font-size: 16px;
    }

    .wzGarageAbout__hand{
        width: 110px;
        opacity: .95;
    }

    .wzGarageAbout__hand--left{
        left: -92px;
        top: 305px;
    }

    .wzGarageAbout__hand--right{
        right: -92px;
        top: 305px;
    }

    .wzGarageAbout.in-view .wzGarageAbout__hand--left{
        transform: translateX(88px);
    }

    .wzGarageAbout.in-view .wzGarageAbout__hand--right{
        transform: translateX(-88px);
    }

    .wzGarageAbout__container::before,
    .wzGarageAbout__container::after{
        opacity: .55;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 479px){

    .wzGarageAbout__title{
        font-size: 32px;
        line-height: .95;
    }

    .wzGarageAbout__plate{
        width: 235px;
    }

    .wzGarageAbout__hand{
        width: 84px;
    }

    .wzGarageAbout__hand--left{
        left: -68px;
        top: 275px;
    }

    .wzGarageAbout__hand--right{
        right: -68px;
        top: 275px;
    }

    .wzGarageAbout.in-view .wzGarageAbout__hand--left{
        transform: translateX(20px);
    }

    .wzGarageAbout.in-view .wzGarageAbout__hand--right{
        transform: translateX(-20px);
    }

    .wzGarageAbout__copy p{
        font-size: 9px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce){

    .wzGarageAbout__hand,
    .wzGarageAbout__plate,
    .wzGarageAbout__flame svg{
        transition: none !important;
        animation: none !important;
    }

}
.wzGarageAbout__flame{
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 18px;

    position: relative;
    z-index: 3;
}

.wzGarageAbout__flameSvg{
    width: 110px;
    height: auto;

    display: block;

    fill: #ff6d1a;

    animation:
        wzGaragePixelFloat
        2.8s
        ease-in-out
        infinite;

    transform-origin: center;
}

.wzGarageAbout__flameSvg path{
    fill: #ff6d1a;
}

@keyframes wzGaragePixelFloat{

    0%,
    100%{
        transform:
            translateY(0)
            rotate(0deg);
    }

    50%{
        transform:
            translateY(-7px)
            rotate(1deg);
    }

}
/* =========================================================
   ABOUT CENTER IMAGE
========================================================= */

.wzGarageAbout{
    position: relative;
    width: 100%;
    overflow: hidden;

    background: #efefef;

    padding: 70px 20px 75px;
}


.wzGarageAbout__container{
    position: relative;

    width: min(100%, 1500px);
    min-height: 780px;

    margin: 0 auto;
}


/* MAIN CONTENT CENTER */

.wzGarageAbout__content{
    position: relative;
    z-index: 3;

    width: 100%;
    min-height: 760px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    text-align: center;
}


/* =========================================================
   CENTER PIZZA
========================================================= */

.wzGarageAbout__plateWrap{
    position: relative;
    z-index: 4;

    width: 100%;

    margin: 44px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 900px;
}


.wzGarageAbout__plate{
    display: block;

    width: clamp(280px, 32vw, 490px);
    height: auto;

    margin: 0 auto;

    object-fit: contain;

    transform:
        translate3d(0, 0, 0)
        rotate(0deg);

    transform-origin: center center;

    will-change: transform;

    filter:
        drop-shadow(
            0 22px 25px
            rgba(0, 0, 0, .12)
        );
}


/* small hover scale only desktop */

@media (hover: hover){

    .wzGarageAbout__plate:hover{
        filter:
            drop-shadow(
                0 28px 32px
                rgba(0, 0, 0, .17)
            );
    }

}


/* =========================================================
   LEFT + RIGHT PIXEL HANDS
========================================================= */

.wzGarageAbout__hand{
    position: absolute;
    top: 50%;
    z-index: 5;
    width: clamp(125px, 13vw, 205px);
    pointer-events: none;
    opacity: 0;
    will-change:
        transform,
        opacity;
    transition:
        transform .8s cubic-bezier(.16, 1, .3, 1),
        opacity .45s ease;
}


.wzGarageAbout__hand svg{
    display: block;

    width: 100%;
    height: auto;
}


/* -------------------------
   LEFT HAND - OUTSIDE
------------------------- */

.wzGarageAbout__hand--left{
    left: clamp(10px, 5vw, 85px);

    transform:
        translate3d(-230px, 0, 0);
}


/* -------------------------
   RIGHT HAND - OUTSIDE
------------------------- */

.wzGarageAbout__hand--right{
    right: clamp(10px, 5vw, 85px);

    transform:
        translate3d(230px, 0, 0);
}


/* =========================================================
   SCROLL DOWN = HANDS COME INSIDE
========================================================= */

.wzGarageAbout.wzHandsInside
.wzGarageAbout__hand--left{

    opacity: 1;

    transform:
        translate3d(0, 0, 0);
}


.wzGarageAbout.wzHandsInside
.wzGarageAbout__hand--right{

    opacity: 1;

    transform:
        translate3d(0, 0, 0);
}


/* =========================================================
   OPTIONAL SMALL FLOAT AFTER ENTER
========================================================= */

.wzGarageAbout.wzHandsInside
.wzGarageAbout__hand--left svg{

    animation:
        wzLeftHandFloat
        2.6s
        ease-in-out
        infinite;
}


.wzGarageAbout.wzHandsInside
.wzGarageAbout__hand--right svg{

    animation:
        wzRightHandFloat
        2.8s
        ease-in-out
        infinite;
}


@keyframes wzLeftHandFloat{

    0%,
    100%{
        transform: translateX(0);
    }

    50%{
        transform: translateX(8px);
    }

}


@keyframes wzRightHandFloat{

    0%,
    100%{
        transform: translateX(0);
    }

    50%{
        transform: translateX(-8px);
    }

}


/* =========================================================
   ABOUT HEADING
========================================================= */

.wzGarageAbout__title{
    position: relative;
    z-index: 4;

    max-width: 1050px;

    margin: 0 auto;

    color: #17754d;

    text-align: center;

    font-family: "Anton", sans-serif;

    font-size:
        clamp(48px, 6vw, 96px);

    line-height: .91;

    letter-spacing: -.02em;

    text-transform: uppercase;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.wzGarageAbout__copy{
    position: relative;

    z-index: 4;

    width: min(100%, 570px);

    margin: 20px auto 0;

    text-align: center;
}


.wzGarageAbout__stars{
    display: block;

    margin-bottom: 8px;

    color: #111;

    font-family: "Space Mono", monospace;

    font-size: 16px;
}


.wzGarageAbout__copy p{
    margin: 0;
    color: #111;
    font-family: "Space Mono", monospace;
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: .01em;
    text-transform: uppercase;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px){

    .wzGarageAbout{
        padding:
            60px
            18px
            65px;
    }


    .wzGarageAbout__container{
        min-height: 690px;
    }


    .wzGarageAbout__content{
        min-height: 670px;
    }


    .wzGarageAbout__plate{
        width:
            clamp(
                270px,
                40vw,
                390px
            );
    }


    .wzGarageAbout__hand{
        width:
            clamp(
                110px,
                15vw,
                155px
            );

        top: 49%;
    }


    .wzGarageAbout__hand--left{
        left: 15px;

        transform:
            translate3d(
                -170px,
                0,
                0
            );
    }


    .wzGarageAbout__hand--right{
        right: 15px;

        transform:
            translate3d(
                170px,
                0,
                0
            );
    }


    .wzGarageAbout.wzHandsInside
    .wzGarageAbout__hand--left,
    .wzGarageAbout.wzHandsInside
    .wzGarageAbout__hand--right{

        transform:
            translate3d(
                0,
                0,
                0
            );
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px){

    .wzGarageAbout{
        padding:
            45px
            13px
            48px;
    }


    .wzGarageAbout__container{
        min-height: 600px;
    }


    .wzGarageAbout__content{
        min-height: 590px;
    }


    .wzGarageAbout__title{
        max-width: 540px;

        font-size:
            clamp(
                36px,
                10.5vw,
                58px
            );

        line-height: .92;
    }


    .wzGarageAbout__plateWrap{
        margin-top: 35px;
    }


    .wzGarageAbout__plate{
        width:
            clamp(
                230px,
                62vw,
                320px
            );
    }


    /* hands remain visible without covering pizza */

    .wzGarageAbout__hand{
        width:
            clamp(
                70px,
                18vw,
                105px
            );

        top: 52%;
    }


    .wzGarageAbout__hand--left{
        left: 0;

        transform:
            translate3d(
                -110px,
                0,
                0
            );
    }


    .wzGarageAbout__hand--right{
        right: 0;

        transform:
            translate3d(
                110px,
                0,
                0
            );
    }


    .wzGarageAbout.wzHandsInside
    .wzGarageAbout__hand--left{

transform:
            translate3d(
                -5px,
                0,
                0
            );

}


    .wzGarageAbout.wzHandsInside
    .wzGarageAbout__hand--right{

        transform:
            translate3d(
                5px,
                0,
                0
            );
    }


    .wzGarageAbout__copy{
        max-width: 420px;

        margin-top: 18px;
    }


    .wzGarageAbout__copy p{
        font-size: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px){

    .wzGarageAbout{
        padding:
            38px
            10px
            42px;
    }


    .wzGarageAbout__container{
        min-height: 530px;
    }


    .wzGarageAbout__content{
        min-height: 520px;
    }


    .wzGarageAbout__title{
        font-size:
            clamp(
                31px,
                10vw,
                43px
            );
    }


    .wzGarageAbout__plateWrap{
        margin-top: 28px;
    }


    .wzGarageAbout__plate{
        width:
            clamp(
                200px,
                65vw,
                265px
            );
    }


    .wzGarageAbout__hand{
        width: 72px;

        top: 53%;
    }


    .wzGarageAbout__hand--left{
        left: -6px;
    }


    .wzGarageAbout__hand--right{
        right: -6px;
    }


    .wzGarageAbout__copy p{
        font-size: 11px;
        line-height: 1.5;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px){

    .wzGarageAbout__plate{
        width: 205px;
    }


    .wzGarageAbout__hand{
        width: 61px;

        top: 54%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce){

    .wzGarageAbout__plate{
        transform: none !important;
    }


    .wzGarageAbout__hand,
    .wzGarageAbout__hand svg{

        transition: none !important;
        animation: none !important;
    }

}
/* =========================================================
   WAIMAUKU PIZZA
   EDITORIAL MENU SECTION
========================================================= */

:root{

    --wm-poster-bg: #fff3df;

    --wm-poster-black: #12100d;

    --wm-poster-orange: #ff641c;

    --wm-poster-yellow: #f4c847;

    --wm-poster-red: #cf281b;

    --wm-poster-cream: #fff9ed;

}


/* =========================================================
   RESET
========================================================= */

.waimMenuPoster,
.waimMenuPoster *{

    box-sizing: border-box;

}


/* =========================================================
   SECTION
========================================================= */

.waimMenuPoster{

position: relative;

width: 100%;

overflow: hidden;

background: #efefef;

padding:
        105px
        30px
        105px;

font-family: "Inter", sans-serif;
}


/* huge background word */

.waimMenuPoster__ghostText{

    position: absolute;

    top: -70px;
    right: -20px;

    z-index: 0;

    pointer-events: none;

    font-family: "Anton", sans-serif;

    font-size: clamp(
        250px,
        32vw,
        610px
    );

    line-height: .75;

    color: rgba(18,16,13,.035);

    text-transform: uppercase;

    user-select: none;

}


/* =========================================================
   CONTAINER
========================================================= */

.waimMenuPoster__container{

    position: relative;

    z-index: 2;

    width: min(100%, 1480px);

    margin: 0 auto;

}


/* =========================================================
   INTRO
========================================================= */

.waimMenuPoster__intro{

    max-width: 900px;

    margin-bottom: 85px;

}


.waimMenuPoster__eyebrow{

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--wm-poster-black);

    font-family:
        "Space Mono",
        monospace;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .10em;

    text-transform: uppercase;

}


.waimMenuPoster__eyebrow i{

    width: 35px;
    height: 3px;

    background:
        var(--wm-poster-orange);

    display: block;

}


/* main heading */

.waimMenuPoster__heading{

margin: 0;

color: var(--wm-poster-black);

font-family:
        "Anton",
        sans-serif;

font-size:
        clamp(
            76px,
            10.5vw,
            170px
        );

font-weight: 400;

line-height: .90;

letter-spacing: -.025em;

text-transform: uppercase;
}


.waimMenuPoster__heading span{

    color:
        var(--wm-poster-orange);

}


/* intro copy */

.waimMenuPoster__introCopy{

max-width: 500px;

margin:
        28px
        0
        0;

color:
        var(--wm-poster-black);

font-family:
        "Space Mono",
        monospace;

font-size: 14px;

line-height: 1.65;

text-transform: uppercase;
}


/* =========================================================
   MENU ITEM
========================================================= */

.waimMenuPoster__item{

    position: relative;

    padding:
        55px
        0
        70px;

    opacity: 0;

    transform:
        translateY(75px);

    transition:

        opacity .8s ease,

        transform
            .9s
            cubic-bezier(.16,1,.3,1);

}


.waimMenuPoster__item.is-visible{

    opacity: 1;

    transform:
        translateY(0);

}


/* number */

.waimMenuPoster__number{

    position: absolute;

    left: 0;
    top: 63px;

    font-family:
        "Space Mono",
        monospace;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .08em;

    color:
        var(--wm-poster-red);

}


/* =========================================================
   ITEM GRID
========================================================= */

.waimMenuPoster__itemMain{

    display: grid;

    grid-template-columns:
        minmax(350px, .85fr)
        minmax(420px, 1.15fr);

    align-items: center;

    gap:
        clamp(
            60px,
            9vw,
            150px
        );

    padding-left: 80px;

}


/* reversed category */

.waimMenuPoster__item--reverse
.waimMenuPoster__textSide{

    order: 2;

}


.waimMenuPoster__item--reverse
.waimMenuPoster__visual{

    order: 1;

}


/* =========================================================
   TEXT SIDE
========================================================= */

.waimMenuPoster__textSide{

    position: relative;

    z-index: 4;

}


.waimMenuPoster__miniLabel{

    display: inline-block;

    margin-bottom: 12px;

    color:
        var(--wm-poster-red);

    font-family:
        "Space Mono",
        monospace;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

}


/* category heading */

.waimMenuPoster__itemTitle{

    margin:
        0
        0
        22px;

    color:
        var(--wm-poster-black);

    font-family:
        "Anton",
        sans-serif;

    font-size:
        clamp(
            92px,
            12vw,
            195px
        );

    font-weight: 400;

    line-height: .80;

    letter-spacing: -.025em;

    text-transform: uppercase;

    transition:
        color .35s ease,
        letter-spacing .45s ease;

}


.waimMenuPoster__item:hover
.waimMenuPoster__itemTitle{

    color:
        var(--wm-poster-orange);

    letter-spacing: -.01em;

}


/* description */

.waimMenuPoster__description{

width: min(
        100%,
        465px
    );

margin:
        0
        0
        30px;

color:
        var(--wm-poster-black);

font-family:
        "Space Mono",
        monospace;

font-size: 14px;

line-height: 1.7;
}


/* =========================================================
   BUTTON
========================================================= */

.waimMenuPoster__button{

    position: relative;

    width: fit-content;

    min-width: 185px;
    min-height: 55px;

    padding:
        0
        20px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    overflow: hidden;

    background:
        var(--wm-poster-black);

    color: #fff;

    text-decoration: none;

    font-family:
        "Inter",
        sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .10em;

    text-transform: uppercase;

    will-change: transform;

}


.waimMenuPoster__button::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
        var(--wm-poster-orange);

    transform:
        translateY(103%);

    transition:
        transform
        .45s
        cubic-bezier(.16,1,.3,1);

}


.waimMenuPoster__button:hover::before{

    transform:
        translateY(0);

}


.waimMenuPoster__button span,
.waimMenuPoster__button i{

    position: relative;

    z-index: 2;

}


.waimMenuPoster__button i{

    font-size: 18px;

    transition:
        transform .35s ease;

}


.waimMenuPoster__button:hover i{

    transform:
        translate(
            4px,
            -4px
        );

}


/* =========================================================
   IMAGE AREA
========================================================= */

.waimMenuPoster__visual{

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* orange stamp */

.waimMenuPoster__stamp{

    position: absolute;

    right: 2%;
    top: 9%;

    z-index: 5;

    padding:
        10px
        16px;

    background:
        var(--wm-poster-yellow);

    color:
        var(--wm-poster-black);

    font-family:
        "Space Mono",
        monospace;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .08em;

    transform:
        rotate(6deg);

    text-transform: uppercase;

    transition:
        transform .4s ease;

}


.waimMenuPoster__item:hover
.waimMenuPoster__stamp{

    transform:
        rotate(-3deg)
        translateY(-5px);

}


/* IMAGE - NO CARD */

.waimMenuPoster__imageWrap{

    position: relative;

    width: min(
        100%,
        570px
    );

    height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: visible;

}


/* accent rectangle */

.waimMenuPoster__imageWrap::before{

    content: "";

    position: absolute;

    width: 78%;
    height: 76%;

    left: 9%;
    top: 12%;

    background:
        var(--wm-poster-orange);

    transform:
        rotate(-4deg);

    transition:
        transform .55s
        cubic-bezier(.16,1,.3,1);

}


/* yellow shape */

.waimMenuPoster__imageWrap::after{

content: "";

position: absolute;

width: 42%;

height: 45%;

right: 0;

bottom: 0;

background: #17754d;

transform:
        rotate(7deg);

transition:
        transform .55s
        cubic-bezier(.16,1,.3,1);
}


/* actual food */

.waimMenuPoster__image{

    position: relative;

    z-index: 3;

    width: min(
        92%,
        490px
    );

    height: 430px;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(
            0
            22px
            25px
            rgba(0,0,0,.18)
        );

    transform:
        rotate(0deg)
        translateY(0);

    transition:
        transform
        .65s
        cubic-bezier(.16,1,.3,1);

    will-change:
        transform;

}


/* hover movement */

.waimMenuPoster__item:hover
.waimMenuPoster__image{

    transform:
        rotate(4deg)
        translateY(-13px)
        scale(1.035);

}


.waimMenuPoster__item:hover
.waimMenuPoster__imageWrap::before{

    transform:
        rotate(2deg)
        scale(.98);

}


.waimMenuPoster__item:hover
.waimMenuPoster__imageWrap::after{

    transform:
        rotate(-4deg)
        translate(
            5px,
            -7px
        );

}


/* reversed image behavior */

.waimMenuPoster__item--reverse
.waimMenuPoster__imageWrap::before{

    background:
        var(--wm-poster-red);

    transform:
        rotate(4deg);

}


.waimMenuPoster__item--reverse
.waimMenuPoster__imageWrap::after{

left: 0;

right: auto;

background: #17754d;

transform:
        rotate(-7deg);
}


.waimMenuPoster__item--reverse
.waimMenuPoster__stamp{

    right: auto;
    left: 1%;

    transform:
        rotate(-7deg);

}


/* =========================================================
   SEPARATOR
========================================================= */

.waimMenuPoster__line{

    width: 100%;
    height: 2px;

    margin-top: 65px;

    background:
        var(--wm-poster-black);

    transform:
        scaleX(0);

    transform-origin:
        left center;

    transition:
        transform
        1.15s
        .15s
        cubic-bezier(.16,1,.3,1);

}


.waimMenuPoster__item.is-visible
.waimMenuPoster__line{

    transform:
        scaleX(1);

}


/* =========================================================
   LAPTOP
========================================================= */

@media(max-width: 1200px){

    .waimMenuPoster{

        padding:
            90px
            24px;

    }


    .waimMenuPoster__itemMain{

        gap: 55px;

        padding-left: 60px;

    }


    .waimMenuPoster__visual{

        min-height: 440px;

    }


    .waimMenuPoster__imageWrap{

        height: 420px;

    }


    .waimMenuPoster__image{

        width: 420px;

        height: 380px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width: 991px){

    .waimMenuPoster{

        padding:
            75px
            20px;

    }


    .waimMenuPoster__intro{

        margin-bottom: 50px;

    }


    .waimMenuPoster__heading{

        font-size:
            clamp(
                70px,
                15vw,
                120px
            );

    }


    .waimMenuPoster__item{

        padding:
            45px
            0
            55px;

    }


    .waimMenuPoster__number{

        position: static;

        margin-bottom: 18px;

    }


    .waimMenuPoster__itemMain{

        grid-template-columns:
            1fr;

        gap: 32px;

        padding-left: 0;

    }


    /* always text first on mobile/tablet */

    .waimMenuPoster__item--reverse
    .waimMenuPoster__textSide{

        order: 1;

    }


    .waimMenuPoster__item--reverse
    .waimMenuPoster__visual{

        order: 2;

    }


    .waimMenuPoster__itemTitle{

        font-size:
            clamp(
                90px,
                20vw,
                150px
            );

    }


    .waimMenuPoster__description{

        max-width: 600px;

    }


    .waimMenuPoster__visual{

        min-height: 420px;

    }


    .waimMenuPoster__imageWrap{

        width: min(
            100%,
            550px
        );

        height: 400px;

    }


    .waimMenuPoster__image{

        max-width: 440px;

        height: 360px;

    }


    .waimMenuPoster__line{

        margin-top: 45px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 767px){

    .waimMenuPoster{

        padding:
            60px
            14px
            65px;

    }


    .waimMenuPoster__ghostText{

        top: 0;

        font-size: 200px;

    }


    .waimMenuPoster__eyebrow{

flex-wrap: wrap;

gap: 8px;

font-size: 11px;

}


    .waimMenuPoster__heading{

        font-size:
            clamp(
                62px,
                20vw,
                98px
            );

    }


    .waimMenuPoster__introCopy{

font-size: 11px;

max-width: 390px;

}


    .waimMenuPoster__item{

        padding:
            38px
            0
            48px;

    }


    .waimMenuPoster__itemTitle{

        font-size:
            clamp(
                80px,
                25vw,
                125px
            );

        margin-bottom: 18px;

    }


    .waimMenuPoster__description{

font-size: 11px;

line-height: 1.65;

max-width: 95%;

}


    .waimMenuPoster__button{

        min-width: 175px;

        min-height: 52px;

    }


    .waimMenuPoster__visual{

        min-height: 350px;

    }


    .waimMenuPoster__imageWrap{

        width: 100%;

        max-width: 420px;

        height: 340px;

    }


    .waimMenuPoster__image{

        width: 88%;

        max-width: 350px;

        height: 310px;

    }


    .waimMenuPoster__stamp{

        font-size: 7px;

        padding:
            8px
            10px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width: 480px){

    .waimMenuPoster{

        padding-left: 11px;
        padding-right: 11px;

    }


    .waimMenuPoster__heading{

        font-size:
            clamp(
                56px,
                19vw,
                78px
            );

    }


    .waimMenuPoster__itemTitle{

        font-size:
            clamp(
                67px,
                24vw,
                98px
            );

    }


    .waimMenuPoster__visual{

        min-height: 290px;

    }


    .waimMenuPoster__imageWrap{

        height: 280px;

    }


    .waimMenuPoster__image{

        max-width: 285px;

        height: 260px;

    }


    .waimMenuPoster__description{

        max-width: 100%;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

    .waimMenuPoster__item,
    .waimMenuPoster__image,
    .waimMenuPoster__imageWrap::before,
    .waimMenuPoster__imageWrap::after,
    .waimMenuPoster__stamp,
    .waimMenuPoster__button,
    .waimMenuPoster__line{

        animation: none !important;

        transition: none !important;

    }

}
/* =========================================================
   WAIMAUKU PIZZA FOOTER
========================================================= */

:root{

    --waim-foot-bg: #fefdfe;

    --waim-foot-green: #18784d;

    --waim-foot-orange: #ff6818;

    --waim-foot-black: #151515;

    --waim-foot-grey: #d5d5d5;

}


/* =========================================================
   RESET
========================================================= */

.waimFooterLab,
.waimFooterLab *,
.waimFooterLab *::before,
.waimFooterLab *::after{

    box-sizing: border-box;

}


/* =========================================================
   MAIN FOOTER
========================================================= */

.waimFooterLab{

position: relative;

width: 100%;

background: #fefdfe;

color: #151515;

padding:

        clamp(55px, 6vw, 100px)

        clamp(18px, 5vw, 80px)

        25px;

overflow: hidden;

font-family:
        "Manrope",
        sans-serif;
}


/* =========================================================
   TOP
========================================================= */

.waimFooterLab__top{

    position: relative;

    width: min(100%, 1540px);

    margin: 0 auto;

    z-index: 3;

}


/* small metadata */

.waimFooterLab__topMeta{

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 17px;

    font-family:
        "Space Mono",
        monospace;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    border-bottom:
        1px dashed
        rgba(21,21,21,.28);

}


/* =========================================================
   BRAND ROW
========================================================= */

.waimFooterLab__brandRow{

    min-height: 250px;

    display: grid;

    grid-template-columns:
        190px
        1fr
        135px;

    align-items: center;

    gap: 35px;

    border-bottom:
        1px dashed
        rgba(21,21,21,.28);

}


/* LOGO */

.waimFooterLab__logoLink{

    display: inline-flex;

    align-items: center;

    width: fit-content;

}


.waimFooterLab__logo{

    display: block;

    width: min(100%, 170px);

    max-height: 110px;

    object-fit: contain;

    transition:
        transform .45s
        cubic-bezier(.16,1,.3,1);

}


.waimFooterLab__logoLink:hover
.waimFooterLab__logo{

    transform:
        rotate(-3deg)
        scale(1.05);

}


/* =========================================================
   HUGE BRAND NAME
========================================================= */

.waimFooterLab__bigName{

    display: flex;

    align-items: baseline;

    justify-content: center;

    flex-wrap: wrap;

    column-gap:
        clamp(15px, 2.5vw, 45px);

}


.waimFooterLab__bigWord{

    font-family:
        "Anton",
        sans-serif;

    font-size:
        clamp(
            70px,
            9.5vw,
            165px
        );

    font-weight: 400;

    line-height: .78;

    color: var(--waim-foot-black);

    text-transform: uppercase;

    letter-spacing: -.025em;

}


.waimFooterLab__bigWord--green{

    color: var(--waim-foot-green);

}


/* =========================================================
   PIZZA MARK
========================================================= */

.waimFooterLab__pizzaMark{

    width: 110px;
    height: 110px;

    background:
        var(--waim-foot-orange);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 6px;

    transform: rotate(5deg);

    transition:
        transform .45s
        cubic-bezier(.16,1,.3,1);

}


.waimFooterLab__pizzaMark:hover{

    transform:
        rotate(-5deg)
        scale(1.06);

}


.waimFooterLab__pizzaMark i{

    font-size: 34px;

    color: var(--waim-foot-black);

}


.waimFooterLab__pizzaMark span{

    font-family:
        "Space Mono",
        monospace;

    font-size: 8px;

    line-height: 1.1;

    font-weight: 700;

    text-align: center;

}


/* =========================================================
   MAIN GRID
========================================================= */

.waimFooterLab__main{

    position: relative;

    width: min(100%, 1540px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1.1fr
        .85fr;

    z-index: 3;

}


/* =========================================================
   BLOCKS
========================================================= */

.waimFooterLab__block,
.waimFooterLab__orderZone{

    min-height: 365px;

    padding:

        35px
        clamp(20px, 2.5vw, 40px);

    position: relative;

}


.waimFooterLab__block:first-child{

    padding-left: 0;

}


.waimFooterLab__block:not(:last-of-type){

    border-right:
        1px dashed
        rgba(21,21,21,.28);

}


/* number */

.waimFooterLab__index{

    position: absolute;

    right: 17px;
    top: 19px;

    font-family:
        "Space Mono",
        monospace;

    font-size: 9px;

    color:
        rgba(21,21,21,.46);

}


/* LABEL */

.waimFooterLab__label{

    margin:
        0
        0
        34px;

    font-family:
        "Space Mono",
        monospace;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .11em;

    color:
        var(--waim-foot-green);

}


/* =========================================================
   BLOCK TITLES
========================================================= */

.waimFooterLab__blockTitle{

margin:
        0
        0
        38px;

font-family:
        "Anton",
        sans-serif;

font-size:
        clamp(
            45px,
            4vw,
            72px
        );

font-weight: 400;

line-height: .95;

letter-spacing: -.015em;

color:
        var(--waim-foot-black);

text-transform: uppercase;

transition:
        color .35s ease,
        transform .4s
        cubic-bezier(.16,1,.3,1);
}


.waimFooterLab__block:hover
.waimFooterLab__blockTitle{

    color:
        var(--waim-foot-green);

    transform:
        translateX(5px);

}


/* =========================================================
   ADDRESS
========================================================= */

.waimFooterLab__details{

    display: flex;

    align-items: flex-start;

    gap: 12px;

}


.waimFooterLab__details i{

    font-size: 21px;

    color:
        var(--waim-foot-orange);

}


.waimFooterLab__details p{

    margin: 0;

    font-family:
        "Space Mono",
        monospace;

    font-size: 11px;

    line-height: 1.6;

    text-transform: uppercase;

}


/* =========================================================
   CONTACT
========================================================= */

.waimFooterLab__contactList{

    display: flex;

    flex-direction: column;

    gap: 13px;

}


.waimFooterLab__contactLink{

    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color:
        var(--waim-foot-black);

    text-decoration: none;

    font-family:
        "Space Mono",
        monospace;

    font-size: 10px;

    line-height: 1.4;

    transition:
        color .3s ease,
        transform .35s
        cubic-bezier(.16,1,.3,1);

}


.waimFooterLab__contactLink i{

    font-size: 18px;

    color:
        var(--waim-foot-orange);

}


.waimFooterLab__contactLink:hover{

    color:
        var(--waim-foot-green);

    transform:
        translateX(6px);

}


/* =========================================================
   HOURS WIDGET
========================================================= */

.waimFooterLab__hoursWidget{

    display: grid;

    grid-template-columns:
        24px
        1fr;

    gap: 12px;

    align-items: flex-start;

}


.waimFooterLab__hoursWidget > i{

    font-size: 20px;

    color:
        var(--waim-foot-orange);

}


/* widget safeguard */

.waimFooterLab #hoursWidget{

    width: 100%;

    color:
        var(--waim-foot-black);

    font-family:
        "Space Mono",
        monospace;

    font-size: 10px;

    line-height: 1.6;

}


/* =========================================================
   ORDER ZONE
========================================================= */

.waimFooterLab__orderZone{

display: flex;

flex-direction: column;

align-items: stretch;

justify-content: flex-start;

padding-right: 0;
}


.waimFooterLab__orderZone p{

margin:
        0
        0
        27px;

font-family:
        "Anton",
        sans-serif;

font-size:
        clamp(
            38px,
            3.5vw,
            63px
        );

line-height: .90;

text-transform: uppercase;
}


/* =========================================================
   ORDER BUTTON
========================================================= */

.waimFooterLab__orderBtn{

    position: relative;

    min-height: 68px;

    padding:
        0
        22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background:
        var(--waim-foot-orange);

    color:
        var(--waim-foot-black);

    text-decoration: none;

    overflow: hidden;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .07em;

    will-change: transform;

}


/* NO GRADIENT */

.waimFooterLab__orderBtn::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
        var(--waim-foot-green);

    transform:
        translateY(102%);

    transition:
        transform .5s
        cubic-bezier(.16,1,.3,1);

}


.waimFooterLab__orderBtn:hover::before{

    transform:
        translateY(0);

}


.waimFooterLab__orderBtn span,
.waimFooterLab__orderBtn i{

    position: relative;

    z-index: 2;

    transition:
        color .3s ease,
        transform .35s ease;

}


.waimFooterLab__orderBtn:hover{

    color: #fff;

}


.waimFooterLab__orderBtn i{

    font-size: 21px;

}


.waimFooterLab__orderBtn:hover i{

    transform:
        rotate(45deg);

}


/* =========================================================
   BOTTOM
========================================================= */

.waimFooterLab__bottom{

    position: relative;

    width: min(100%, 1540px);

    margin: 0 auto;

    padding:
        24px
        0
        0;

    border-top:
        1px dashed
        rgba(21,21,21,.28);

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 20px;

    z-index: 3;

    font-family:
        "Space Mono",
        monospace;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .06em;

    text-transform: uppercase;

}


/* middle text */

.waimFooterLab__footerMark{

    font-family:
        "Anton",
        sans-serif;

    font-size:
        clamp(
            18px,
            1.8vw,
            30px
        );

    font-weight: 400;

    letter-spacing: 0;

}


.waimFooterLab__orangeText{

    color:
        var(--waim-foot-orange);

}


/* back top */

.waimFooterLab__bottomRight{

    display: flex;

    justify-content: flex-end;

}


.waimFooterLab__bottomRight a{

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--waim-foot-black);

    text-decoration: none;

    transition:
        color .3s ease;

}


.waimFooterLab__bottomRight a:hover{

    color:
        var(--waim-foot-green);

}


.waimFooterLab__bottomRight i{

    font-size: 15px;

    transition:
        transform .3s ease;

}


.waimFooterLab__bottomRight a:hover i{

    transform:
        translateY(-4px);

}


/* =========================================================
   GHOST PIZZA TEXT
========================================================= */

.waimFooterLab__ghostText{

    position: absolute;

    left: 50%;
    bottom: -43px;

    transform:
        translateX(-50%);

    font-family:
        "Anton",
        sans-serif;

    font-size:
        clamp(
            180px,
            29vw,
            540px
        );

    line-height: .72;

    color:
        rgba(24,120,77,.035);

    pointer-events: none;

    user-select: none;

    z-index: 1;

}


/* =========================================================
   SCROLL INITIAL STATES
========================================================= */

.waimFooterLab__logoLink,
.waimFooterLab__bigWord,
.waimFooterLab__pizzaMark,
.waimFooterLab__block,
.waimFooterLab__orderZone{

    opacity: 0;

    transform:
        translateY(35px);

    transition:

        opacity .7s ease,
        transform .8s
        cubic-bezier(.16,1,.3,1);

}


/* VISIBLE */

.waimFooterLab.is-visible
.waimFooterLab__logoLink,

.waimFooterLab.is-visible
.waimFooterLab__bigWord,

.waimFooterLab.is-visible
.waimFooterLab__pizzaMark,

.waimFooterLab.is-visible
.waimFooterLab__block,

.waimFooterLab.is-visible
.waimFooterLab__orderZone{

    opacity: 1;

    transform:
        translateY(0);

}


/* delays */

.waimFooterLab.is-visible
.waimFooterLab__bigWord{

    transition-delay:
        .08s;

}


.waimFooterLab.is-visible
.waimFooterLab__pizzaMark{

    transition-delay:
        .15s;

}


.waimFooterLab.is-visible
.waimFooterLab__block:nth-child(1){

    transition-delay:
        .12s;

}


.waimFooterLab.is-visible
.waimFooterLab__block:nth-child(2){

    transition-delay:
        .19s;

}


.waimFooterLab.is-visible
.waimFooterLab__block:nth-child(3){

    transition-delay:
        .26s;

}


.waimFooterLab.is-visible
.waimFooterLab__orderZone{

    transition-delay:
        .33s;

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px){

    .waimFooterLab__brandRow{

        grid-template-columns:
            140px
            1fr
            100px;

        min-height: 210px;

    }


    .waimFooterLab__logo{

        max-width: 130px;

    }


    .waimFooterLab__pizzaMark{

        width: 90px;
        height: 90px;

    }


    .waimFooterLab__main{

        grid-template-columns:
            1fr
            1fr
            1fr;

    }


    .waimFooterLab__orderZone{

        grid-column:
            1 / -1;

        min-height: auto;

        padding:
            35px
            0;

        display: grid;

        grid-template-columns:
            1fr
            minmax(250px, 380px);

        align-items: center;

        gap: 30px;

        border-top:
            1px dashed
            rgba(21,21,21,.28);

    }


    .waimFooterLab__orderZone p{

        margin: 0;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px){

    .waimFooterLab{

        padding:

            55px
            20px
            22px;

    }


    .waimFooterLab__brandRow{

        min-height: auto;

        padding:
            38px
            0;

        grid-template-columns:
            105px
            1fr;

        gap: 20px;

    }


    .waimFooterLab__pizzaMark{

        display: none;

    }


    .waimFooterLab__logo{

        max-width: 100px;

    }


    .waimFooterLab__bigName{

        justify-content:
            flex-start;

        column-gap: 15px;

    }


    .waimFooterLab__bigWord{

        font-size:
            clamp(
                65px,
                12vw,
                100px
            );

    }


    .waimFooterLab__main{

        grid-template-columns:
            1fr
            1fr;

    }


    .waimFooterLab__block{

        min-height: 320px;

    }


    .waimFooterLab__block:nth-child(2){

        border-right: 0;

    }


    .waimFooterLab__block:nth-child(3){

        border-top:
            1px dashed
            rgba(21,21,21,.28);

    }


    .waimFooterLab__block--hours{

        grid-column:
            1 / -1;

        min-height: auto;

        padding-left: 0;

        border-right: 0 !important;

    }


    .waimFooterLab__orderZone{

        grid-template-columns:
            1fr
            300px;

    }


    .waimFooterLab__bottom{

        grid-template-columns:
            1fr
            1fr;

    }


    .waimFooterLab__footerMark{

        display: none;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px){

    .waimFooterLab{

        padding:

            45px
            14px
            20px;

    }


    .waimFooterLab__topMeta{

font-size: 9px;

gap: 14px;

}


    .waimFooterLab__brandRow{

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 27px;

    }


    .waimFooterLab__logo{

        width: auto;

        height: 65px;

        max-width: 145px;

    }


    .waimFooterLab__bigName{

        display: block;

    }


    .waimFooterLab__bigWord{

display: block;

font-size: clamp(
                74px,
                21vw,
                115px
            );

line-height: .90;
}


    /* BLOCKS STACK */

    .waimFooterLab__main{

        display: block;

    }


    .waimFooterLab__block{

        min-height: auto;

        padding:
            38px
            0
            42px;

        border-right:
            0 !important;

        border-top:
            1px dashed
            rgba(21,21,21,.28);

    }


    .waimFooterLab__index{

        right: 0;
        top: 24px;

    }


    .waimFooterLab__label{

        margin-bottom:
            24px;

    }


    .waimFooterLab__blockTitle{

        font-size:
            clamp(
                52px,
                16vw,
                80px
            );

        margin-bottom:
            28px;

    }


    .waimFooterLab__details p{

        font-size: 10px;

    }


    .waimFooterLab__contactLink{

        font-size: 9px;

    }


    .waimFooterLab__orderZone{

        display: block;

        padding:
            40px
            0;

    }


    .waimFooterLab__orderZone p{

        margin-bottom:
            25px;

        font-size:
            57px;

    }


    .waimFooterLab__orderBtn{

        width: 100%;

        min-height: 62px;

    }


    .waimFooterLab__bottom{

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }


    .waimFooterLab__bottomRight{

        justify-content:
            flex-start;

    }


    .waimFooterLab__ghostText{

        bottom: -15px;

        font-size: 220px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px){

    .waimFooterLab__bigWord{

font-size: 60px;

}


    .waimFooterLab__orderZone p{

        font-size: 49px;

    }


    .waimFooterLab__blockTitle{

        font-size: 52px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce){

    .waimFooterLab *,
    .waimFooterLab *::before,
    .waimFooterLab *::after{

        animation: none !important;

        transition: none !important;

    }

}
a.footer_main {
    color: #151515;
    text-decoration: none;
}
p.footer-copyright {
    color: white;
    font-family: 'Oswald';
}
.order-btn{

position:fixed;

bottom:30px;

right: 30px;

width:64px;

height:64px;

display:flex;

align-items:center;

justify-content:center;

padding:11px;

background:#fc6143;

color:#fff;

text-decoration:none;

border-radius:50%;

box-shadow:0 6px 15px rgba(0,0,0,0.3);

z-index:999;

animation:pulse 2s infinite;

overflow:hidden;

opacity:0;

visibility:hidden;

transform:translateY(30px);

transition:
    opacity .4s ease,
    transform .4s ease,
    visibility .4s ease,
    background .3s ease,
    box-shadow .3s ease;
}


.order-btn img{

  width:100%;
  height:100%;

  display:block;

  margin:0;
  padding:0;

  object-fit:contain;

  box-sizing:border-box;

  transition:transform .3s ease;
}


.order-btn:hover{

  background:#fc6143;

  transform:
    translateY(-4px)
    scale(1.06);

  box-shadow:
    0 10px 24px rgba(0,0,0,.35);
}


.order-btn:hover img{

  transform:scale(1.08);
}


.order-btn:active{

  transform:scale(.96);
}


/* =============================
   PULSE ANIMATION
============================= */

@keyframes pulse{

  0%{

    box-shadow:
      0 0 0 0 rgba(252,97,67,0.7),
      0 6px 15px rgba(0,0,0,0.3);

  }

  70%{

    box-shadow:
      0 0 0 20px rgba(252,97,67,0),
      0 6px 15px rgba(0,0,0,0.3);

  }

  100%{

    box-shadow:
      0 0 0 0 rgba(252,97,67,0),
      0 6px 15px rgba(0,0,0,0.3);

  }

}


/* =============================
   TABLET
============================= */

@media(max-width:768px){

  .order-btn{

bottom:22px;

right: 22px;

width:58px;

height:58px;

padding:10px;

}

}


/* =============================
   MOBILE
============================= */

@media(max-width:600px){

  .order-btn{

bottom:20px;

right: 20px;

width:54px;

height:54px;

padding:9px;

}

}


/* =============================
   SMALL MOBILE
============================= */

@media(max-width:380px){

  .order-btn{

    bottom:16px;
    left:16px;

    width:50px;
    height:50px;

    padding:8px;
  }

}


/* =============================
   ACCESSIBILITY
============================= */

.order-btn:focus-visible{

  outline:2px solid #fff;

  outline-offset:4px;
}


/* Reduced motion */

@media(prefers-reduced-motion:reduce){

  .order-btn{

    animation:none;
  }

}
/* Show Class */
.order-btn.show-order-btn{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
/* ============================================
   FINAL SPACING / FLOATING ORDER BUTTON FIXES
============================================ */

.smkEmberStory,
.smkMenuLedger,
.smkGuestFire{
  padding-block:var(--section-space);
}

.smkPitFooter{
  padding-top:var(--section-space);
}

.order-btn.show-order-btn:hover{
  transform:translateY(-4px) scale(1.06);
}


.order-btn.show-order-btn:active{
  transform:scale(.96);
}
